diff --git a/Cargo.lock b/Cargo.lock index 594f680e8..44517f9b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -512,9 +512,9 @@ checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177" [[package]] name = "hashbrown" -version = "0.9.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +checksum = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5" [[package]] name = "hermit-abi" diff --git a/interfaces/syscalls/Cargo.toml b/interfaces/syscalls/Cargo.toml index a2621cec0..d2fde6d7a 100644 --- a/interfaces/syscalls/Cargo.toml +++ b/interfaces/syscalls/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] futures = { version = "0.3.13", default-features = false, features = ["alloc"] } generic-array = { version = "0.14.4", default-features = false } -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } lazy_static = { version = "1.4.0", features = ["spin_no_std"] } nohash-hasher = { version = "0.2.0", default-features = false } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } diff --git a/kernel/core/Cargo.toml b/kernel/core/Cargo.toml index ee97bc06c..8e3e57f75 100644 --- a/kernel/core/Cargo.toml +++ b/kernel/core/Cargo.toml @@ -18,7 +18,7 @@ crossbeam-queue = { version = "0.3.1", default-features = false, features = ["al either = { version = "1.6.1", default-features = false } fnv = { version = "1.0.7", default-features = false } futures = { version = "0.3.13", default-features = false } -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } nohash-hasher = { version = "0.2.0", default-features = false } redshirt-core-proc-macros = { path = "../core-proc-macros" } redshirt-interface-interface = { path = "../../interfaces/interface", default-features = false } diff --git a/kernel/standalone/Cargo.toml b/kernel/standalone/Cargo.toml index c5d8ceb20..4cd85baf7 100644 --- a/kernel/standalone/Cargo.toml +++ b/kernel/standalone/Cargo.toml @@ -14,7 +14,7 @@ derive_more = "0.99.11" either = { version = "1.6.1", default-features = false } fnv = { version = "1.0.7", default-features = false } futures = { version = "0.3.13", default-features = false, features = ["alloc"] } -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } lazy_static = "1.4" libm = "0.2.1" linked_list_allocator = { version = "0.8.11", features = ["alloc_ref"] }