diff --git a/Cargo.lock b/Cargo.lock index 36b79a054..de4db1774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,17 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + [[package]] name = "ahash" version = "0.8.3" @@ -125,14 +136,17 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.6", +] [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" dependencies = [ - "ahash", + "ahash 0.8.3", "allocator-api2", "rayon", ] @@ -160,7 +174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "rayon", ] @@ -425,7 +439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38" dependencies = [ "cfg-if", - "hashbrown 0.14.0", + "hashbrown 0.12.3", "indexmap 2.0.0", "indoc", "libc", @@ -595,9 +609,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" name = "rustworkx" version = "0.14.0" dependencies = [ - "ahash", + "ahash 0.8.3", "fixedbitset", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "indexmap 2.0.0", "ndarray", "ndarray-stats", @@ -621,9 +635,9 @@ dependencies = [ name = "rustworkx-core" version = "0.14.0" dependencies = [ - "ahash", + "ahash 0.8.3", "fixedbitset", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "indexmap 2.0.0", "num-traits", "petgraph",