Upgrade hashbrown

This commit is contained in:
Joakim Frostegård 2021-08-15 22:29:09 +02:00
parent d0e716f80b
commit 32541c5c15
12 changed files with 30 additions and 31 deletions

39
Cargo.lock generated
View file

@ -23,9 +23,14 @@ checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"
[[package]]
name = "ahash"
version = "0.4.7"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
checksum = "43bb833f0bf979d8475d38fbf09ed3b8a55e1885fe93ad3f93239fc6a4f17b98"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
@ -81,7 +86,7 @@ dependencies = [
"aquatic_http_protocol",
"crossbeam-channel",
"either",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"histogram",
"indexmap",
"itoa",
@ -107,7 +112,7 @@ dependencies = [
"anyhow",
"aquatic_cli_helpers",
"aquatic_http_protocol",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"mimalloc",
"mio",
"quickcheck",
@ -124,7 +129,7 @@ dependencies = [
"anyhow",
"bendy",
"criterion",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"hex",
"httparse",
"itoa",
@ -148,7 +153,7 @@ dependencies = [
"aquatic_common",
"aquatic_udp_protocol",
"crossbeam-channel",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"histogram",
"indexmap",
"log",
@ -187,7 +192,7 @@ dependencies = [
"aquatic_cli_helpers",
"aquatic_udp_protocol",
"crossbeam-channel",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"mimalloc",
"mio",
"parking_lot",
@ -218,7 +223,7 @@ dependencies = [
"aquatic_ws_protocol",
"crossbeam-channel",
"either",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"histogram",
"indexmap",
"log",
@ -242,7 +247,7 @@ dependencies = [
"anyhow",
"aquatic_cli_helpers",
"aquatic_ws_protocol",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"mimalloc",
"mio",
"quickcheck",
@ -261,7 +266,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"criterion",
"hashbrown 0.9.1",
"hashbrown 0.11.2",
"quickcheck",
"quickcheck_macros",
"serde",
@ -706,21 +711,15 @@ dependencies = [
"autocfg",
]
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
dependencies = [
"ahash 0.4.7",
"serde",
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
"ahash 0.7.4",
"serde",
]
[[package]]
name = "hermit-abi"