diff options
author | Wilfred Hughes <me@wilfred.me.uk> | 2023-07-09 19:54:09 -0700 |
---|---|---|
committer | Wilfred Hughes <me@wilfred.me.uk> | 2023-07-09 19:54:09 -0700 |
commit | 5f2d970ad2125c7ee22d53ef46e1303dacd850af (patch) | |
tree | 1b5044d7e8f907fc73c32940c4bdea5e771f96b1 | |
parent | 202265a03bd5103695205b968f27bea9a8201e32 (diff) |
Choose the last hashbrown version that supports our MSRV
-rw-r--r-- | Cargo.lock | 13 | ||||
-rw-r--r-- | Cargo.toml | 3 |
2 files changed, 5 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index ad8138335b..6cdf69768b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,12 +23,6 @@ dependencies = [ ] [[package]] -name = "allocator-api2" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9" - -[[package]] name = "assert_cmd" version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -249,7 +243,7 @@ dependencies = [ "const_format", "crossterm", "glob", - "hashbrown 0.14.0", + "hashbrown 0.13.2", "itertools", "lazy_static", "libc", @@ -335,12 +329,11 @@ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ "ahash", - "allocator-api2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 9153323577..c4832566f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,8 @@ unicode-width = "0.1.9" crossterm = { version = "0.25.0", features = [] } glob = "0.3.1" strum = { version = "0.24", features = ["derive"] } -hashbrown = "0.14.0" +# hashbrown 0.14 requires rust 1.64 +hashbrown = "0.13.2" [dev-dependencies] # This is the last version of assert_cmd that supports rustc 1.57. |