diff --git a/Cargo.lock b/Cargo.lock index 2e38b21024..978fed8f5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1870,6 +1870,9 @@ name = "hashbrown" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" +dependencies = [ + "ahash", +] [[package]] name = "headers" @@ -5225,7 +5228,7 @@ dependencies = [ "either", "generic-array 0.14.5", "getrandom 0.1.16", - "hashbrown 0.11.2", + "hashbrown 0.12.1", "im", "lazy_static", "log", diff --git a/frozen-abi/Cargo.toml b/frozen-abi/Cargo.toml index 2b1524f233..0af4cff8cc 100644 --- a/frozen-abi/Cargo.toml +++ b/frozen-abi/Cargo.toml @@ -35,7 +35,7 @@ generic-array = { version = "0.14.5", default-features = false, features = [ "more_lengths" ] } getrandom = { version = "0.1", features = ["dummy"] } -hashbrown = { version = "0.11", features = ["raw"] } +hashbrown = { version = "0.12", features = ["raw"] } im = { version = "15.1.0", features = ["rayon", "serde"] } memmap2 = "0.5.3" once_cell = { version = "1.8", features = ["alloc", "default", "race", "std"] } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 72f4f57f38..65e7cfaaff 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -1634,6 +1634,9 @@ name = "hashbrown" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" +dependencies = [ + "ahash", +] [[package]] name = "headers" @@ -4793,7 +4796,7 @@ dependencies = [ "either", "generic-array 0.14.5", "getrandom 0.1.14", - "hashbrown 0.11.2", + "hashbrown 0.12.1", "im", "lazy_static", "log",