Skip to content

Commit

Permalink
Update dependencies (#11)
Browse files Browse the repository at this point in the history
* Update dependencies

* Fix line endings in Cargo.toml

* Add CHANGELOG

* Bump version
  • Loading branch information
yzsolt authored Nov 11, 2023
1 parent eaa52f9 commit 42258cb
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 25 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.0.1] - 2023-11-11
### Changed
- Updated dependencies

## [1.0.0] - 2023-03-05
### Added
- Initial release
50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[package]
name = "rosm_pbf_reader"
version = "1.0.0"
authors = ["Zsolt Bölöny <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A low-level Rust library for parsing OpenStreetMap data in PBF format"
repository = "https://github.com/rosm-project/rosm_pbf_reader"
keywords = ["osm", "openstreetmap", "osmpbf"]
categories = ["parser-implementations", "encoding"]

[dependencies]
flate2 = { version = "1.0.25", optional = true }
prost = "0.11.6"

[features]
default = ["flate2"]

[build-dependencies]
prost-build = "0.11.6"

[dev-dependencies]
env_logger = "0.10.0"
log = "0.4.17"
threadpool = "1.8.1"
[package]
name = "rosm_pbf_reader"
version = "1.0.1"
authors = ["Zsolt Bölöny <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A low-level Rust library for parsing OpenStreetMap data in PBF format"
repository = "https://github.com/rosm-project/rosm_pbf_reader"
keywords = ["osm", "openstreetmap", "osmpbf"]
categories = ["parser-implementations", "encoding"]

[dependencies]
flate2 = { version = "1.0.28", optional = true }
prost = "0.12.1"

[features]
default = ["flate2"]

[build-dependencies]
prost-build = "0.12.1"

[dev-dependencies]
env_logger = "0.10.1"
log = "0.4.20"
threadpool = "1.8.1"

0 comments on commit 42258cb

Please sign in to comment.