diff --git a/Cargo.lock b/Cargo.lock index 82c7e3184a..35a971b71a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6,6 +6,17 @@ version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" +[[package]] +name = "ahash" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f200cbb1e856866d9eade941cf3aa0c5d7dd36f74311c4273b494f4ef036957" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + [[package]] name = "autocfg" version = "1.0.1" @@ -125,7 +136,16 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" dependencies = [ - "ahash", + "ahash 0.4.7", +] + +[[package]] +name = "hashbrown" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3de7a9a685bb301f5cb29587f13833270c59e7d2c6f457a66372996afad4504" +dependencies = [ + "ahash 0.7.2", "rayon", ] @@ -145,7 +165,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.9.1", ] [[package]] @@ -308,6 +328,12 @@ dependencies = [ "pyo3", ] +[[package]] +name = "once_cell" +version = "1.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" + [[package]] name = "parking_lot" version = "0.11.1" @@ -391,7 +417,7 @@ checksum = "4837b8e8e18a102c23f79d1e9a110b597ea3b684c95e874eb1ad88f8683109c3" dependencies = [ "cfg-if 1.0.0", "ctor", - "hashbrown", + "hashbrown 0.9.1", "indoc", "inventory", "libc", @@ -523,10 +549,10 @@ dependencies = [ [[package]] name = "retworkx" -version = "0.8.0" +version = "0.9.0" dependencies = [ "fixedbitset", - "hashbrown", + "hashbrown 0.11.1", "ndarray", "numpy", "petgraph", @@ -571,6 +597,12 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + [[package]] name = "wasi" version = "0.10.2+wasi-snapshot-preview1" diff --git a/Cargo.toml b/Cargo.toml index 14bb6880fa..c0fc50d550 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ version = "0.13.0" features = ["extension-module", "hashbrown"] [dependencies.hashbrown] -version = "0.9" +version = "0.11" features = ["rayon"] [dependencies.ndarray]