Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ readme = "readme.md"
license = "MIT"

[dependencies]
osmpbfreader = "0.17.0"
osmpbfreader = "0.19.0"
ahash = "0.8"
csv = "1.3.0"
clap = { version = "4.5", features = ["derive"] }
serde = "1.0"
serde = { version = "1.0", features = ["derive"] }
geo-types = "0.7"

[lib]
Expand Down
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ pub use crate::osm4routing::categorize::{
pub use crate::osm4routing::models::*;
pub use crate::osm4routing::reader::{read, Reader};
pub use crate::osm4routing::writers;

// Reexpose crates that are part of the API
// It helps consumer being sure they always use the correct version of types
pub use ahash;
pub use osmpbfreader;