diff --git a/Cargo.lock b/Cargo.lock index 5db29d5..8dde409 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,6 +321,12 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "errno" version = "0.3.2" @@ -344,8 +350,9 @@ dependencies = [ [[package]] name = "fast_paths" -version = "0.3.0-SNAPSHOT" -source = "git+https://github.com/easbar/fast_paths#6d236d1be5f341071c65ee36c540279986cf7231" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c81c255f345762d8303062464a32cc862c2e1eb1b55fa9f90df74b59eea9c8da" dependencies = [ "log", "priority-queue", @@ -498,6 +505,16 @@ dependencies = [ "hashbrown 0.12.3", ] +[[package]] +name = "indexmap" +version = "2.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +dependencies = [ + "equivalent", + "hashbrown 0.14.3", +] + [[package]] name = "indicatif" version = "0.17.8" @@ -735,12 +752,13 @@ checksum = "f32154ba0af3a075eefa1eda8bb414ee928f62303a54ea85b8d6638ff1a6ee9e" [[package]] name = "priority-queue" -version = "1.3.2" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" +checksum = "509354d8a769e8d0b567d6821b84495c60213162761a732d68ce87c964bd347f" dependencies = [ "autocfg", - "indexmap", + "equivalent", + "indexmap 2.2.6", ] [[package]] @@ -785,7 +803,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d39b14605eaa1f6a340aec7f320b34064feb26c93aec35d6a9a2272a8ddfa49" dependencies = [ "anyhow", - "indexmap", + "indexmap 1.9.3", "log", "protobuf", "protobuf-support", diff --git a/od2net/Cargo.toml b/od2net/Cargo.toml index 4bc8908..acaf4c5 100644 --- a/od2net/Cargo.toml +++ b/od2net/Cargo.toml @@ -10,7 +10,7 @@ clap = { version = "4.5.1", features = ["derive"] } console = "0.15.8" csv = "1.3.0" elevation = { git = "https://github.com/dabreegster/elevation" } -fast_paths = { git = "https://github.com/easbar/fast_paths" } +fast_paths = "1.0.0" fs-err = "2.11.0" geo = "0.28.0" geojson = { git = "https://github.com/georust/geojson" } diff --git a/wasm-od2net/Cargo.toml b/wasm-od2net/Cargo.toml index 6ddc705..808c3ae 100644 --- a/wasm-od2net/Cargo.toml +++ b/wasm-od2net/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib", "rlib"] bincode = "1.3.1" console_error_panic_hook = "0.1.6" console_log = "1.0.0" -fast_paths = { git = "https://github.com/easbar/fast_paths" } +fast_paths = "1.0.0" fs-err = "2.9.0" geojson = { git = "https://github.com/georust/geojson" } instant = { version = "0.1.12", features = ["wasm-bindgen"] }