Upgrade hashbrown to version 0.13

This commit is contained in:
Joakim Frostegård 2022-11-12 14:37:53 +01:00
parent 1f73d11a97
commit 9ace8f53b8
7 changed files with 21 additions and 12 deletions

21
Cargo.lock generated
View file

@ -77,7 +77,7 @@ dependencies = [
"duplicate", "duplicate",
"git-testament", "git-testament",
"glommio", "glommio",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"hex", "hex",
"hwloc", "hwloc",
"indexmap", "indexmap",
@ -136,7 +136,7 @@ dependencies = [
"futures-lite", "futures-lite",
"futures-rustls", "futures-rustls",
"glommio", "glommio",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"log", "log",
"mimalloc", "mimalloc",
"quickcheck", "quickcheck",
@ -227,7 +227,7 @@ dependencies = [
"constant_time_eq 0.2.4", "constant_time_eq 0.2.4",
"crossbeam-channel", "crossbeam-channel",
"getrandom", "getrandom",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"hdrhistogram", "hdrhistogram",
"hex", "hex",
"libc", "libc",
@ -272,7 +272,7 @@ dependencies = [
"aquatic_common", "aquatic_common",
"aquatic_toml_config", "aquatic_toml_config",
"aquatic_udp_protocol", "aquatic_udp_protocol",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"mimalloc", "mimalloc",
"mio", "mio",
"quickcheck", "quickcheck",
@ -308,7 +308,7 @@ dependencies = [
"futures-lite", "futures-lite",
"futures-rustls", "futures-rustls",
"glommio", "glommio",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"httparse", "httparse",
"log", "log",
"mimalloc", "mimalloc",
@ -355,7 +355,7 @@ version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"criterion", "criterion",
"hashbrown 0.12.3", "hashbrown 0.13.1",
"quickcheck", "quickcheck",
"quickcheck_macros", "quickcheck_macros",
"serde", "serde",
@ -1292,6 +1292,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [ dependencies = [
"ahash 0.7.6", "ahash 0.7.6",
]
[[package]]
name = "hashbrown"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
dependencies = [
"ahash 0.8.2",
"serde", "serde",
] ]

View file

@ -23,7 +23,7 @@ anyhow = "1"
arc-swap = "1" arc-swap = "1"
duplicate = "0.4" duplicate = "0.4"
git-testament = "0.2" git-testament = "0.2"
hashbrown = "0.12" hashbrown = "0.13"
hex = "0.4" hex = "0.4"
indexmap = "1" indexmap = "1"
indexmap-amortized = "1" indexmap-amortized = "1"

View file

@ -21,7 +21,7 @@ aquatic_toml_config.workspace = true
anyhow = "1" anyhow = "1"
futures-lite = "1" futures-lite = "1"
futures-rustls = "0.22" futures-rustls = "0.22"
hashbrown = "0.12" hashbrown = "0.13"
glommio = "0.7" glommio = "0.7"
log = "0.4" log = "0.4"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }

View file

@ -30,7 +30,7 @@ cfg-if = "1"
constant_time_eq = "0.2" constant_time_eq = "0.2"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
getrandom = "0.2" getrandom = "0.2"
hashbrown = { version = "0.12", default-features = false } hashbrown = { version = "0.13", default-features = false }
hdrhistogram = "7" hdrhistogram = "7"
hex = "0.4" hex = "0.4"
libc = "0.2" libc = "0.2"

View file

@ -22,7 +22,7 @@ aquatic_toml_config.workspace = true
aquatic_udp_protocol.workspace = true aquatic_udp_protocol.workspace = true
anyhow = "1" anyhow = "1"
hashbrown = "0.12" hashbrown = "0.13"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
mio = { version = "0.8", features = ["net", "os-poll"] } mio = { version = "0.8", features = ["net", "os-poll"] }
rand_distr = "0.4" rand_distr = "0.4"

View file

@ -29,7 +29,7 @@ futures = "0.3"
futures-lite = "1" futures-lite = "1"
futures-rustls = "0.22" futures-rustls = "0.22"
glommio = "0.7" glommio = "0.7"
hashbrown = { version = "0.12", features = ["serde"] } hashbrown = { version = "0.13", features = ["serde"] }
httparse = "1" httparse = "1"
log = "0.4" log = "0.4"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }

View file

@ -21,7 +21,7 @@ harness = false
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
hashbrown = { version = "0.12", features = ["serde"] } hashbrown = { version = "0.13", features = ["serde"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
simd-json = { version = "0.6", features = ["allow-non-simd"] } simd-json = { version = "0.6", features = ["allow-non-simd"] }