diff --git a/Cargo.toml b/Cargo.toml index f2d6333..2c8ead0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/src/lib.rs b/src/lib.rs index 1e3a2a5..1472af1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;