Update to hashbrown v0.15

This commit is contained in:
Joakim Frostegård 2025-01-12 22:10:29 +01:00
parent 86ff9cd577
commit ea06ffd513
6 changed files with 22 additions and 11 deletions

23
Cargo.lock generated
View file

@ -159,7 +159,7 @@ dependencies = [
"arc-swap", "arc-swap",
"duplicate", "duplicate",
"git-testament", "git-testament",
"hashbrown 0.14.5", "hashbrown 0.15.2",
"hex", "hex",
"hwloc", "hwloc",
"indexmap 2.7.0", "indexmap 2.7.0",
@ -227,7 +227,7 @@ dependencies = [
"futures-lite", "futures-lite",
"futures-rustls", "futures-rustls",
"glommio", "glommio",
"hashbrown 0.14.5", "hashbrown 0.15.2",
"log", "log",
"mimalloc", "mimalloc",
"quickcheck", "quickcheck",
@ -306,7 +306,7 @@ dependencies = [
"crossbeam-channel", "crossbeam-channel",
"crossbeam-utils", "crossbeam-utils",
"getrandom", "getrandom",
"hashbrown 0.14.5", "hashbrown 0.15.2",
"hdrhistogram", "hdrhistogram",
"hex", "hex",
"io-uring", "io-uring",
@ -377,7 +377,7 @@ dependencies = [
"futures-lite", "futures-lite",
"futures-rustls", "futures-rustls",
"glommio", "glommio",
"hashbrown 0.14.5", "hashbrown 0.15.2",
"httparse", "httparse",
"indexmap 2.7.0", "indexmap 2.7.0",
"log", "log",
@ -428,7 +428,7 @@ version = "0.9.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"criterion 0.5.1", "criterion 0.5.1",
"hashbrown 0.14.5", "hashbrown 0.15.2",
"quickcheck", "quickcheck",
"quickcheck_macros", "quickcheck_macros",
"serde", "serde",
@ -1172,6 +1172,12 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foldhash"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
[[package]] [[package]]
name = "form_urlencoded" name = "form_urlencoded"
version = "1.2.1" version = "1.2.1"
@ -1447,7 +1453,6 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [ dependencies = [
"ahash 0.8.11", "ahash 0.8.11",
"allocator-api2", "allocator-api2",
"serde",
] ]
[[package]] [[package]]
@ -1455,6 +1460,12 @@ name = "hashbrown"
version = "0.15.2" version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
"serde",
]
[[package]] [[package]]
name = "hdrhistogram" name = "hdrhistogram"

View file

@ -26,7 +26,7 @@ anyhow = "1"
arc-swap = "1" arc-swap = "1"
duplicate = "1" duplicate = "1"
git-testament = "0.2" git-testament = "0.2"
hashbrown = "0.14" hashbrown = "0.15"
hex = "0.4" hex = "0.4"
indexmap = "2" indexmap = "2"
libc = "0.2" libc = "0.2"

View file

@ -23,7 +23,7 @@ anyhow = "1"
futures = "0.3" futures = "0.3"
futures-lite = "1" futures-lite = "1"
futures-rustls = "0.26" futures-rustls = "0.26"
hashbrown = "0.14" hashbrown = "0.15"
glommio = "0.9" glommio = "0.9"
log = "0.4" log = "0.4"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }

View file

@ -42,7 +42,7 @@ constant_time_eq = "0.3"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
crossbeam-utils = "0.8" crossbeam-utils = "0.8"
getrandom = "0.2" getrandom = "0.2"
hashbrown = { version = "0.14", default-features = false } hashbrown = { version = "0.15", default-features = false }
hdrhistogram = "7" hdrhistogram = "7"
hex = "0.4" hex = "0.4"
libc = "0.2" libc = "0.2"

View file

@ -40,7 +40,7 @@ futures = "0.3"
futures-lite = "1" futures-lite = "1"
futures-rustls = "0.26" futures-rustls = "0.26"
glommio = "0.9" glommio = "0.9"
hashbrown = { version = "0.14", features = ["serde"] } hashbrown = { version = "0.15", features = ["serde"] }
httparse = "1" httparse = "1"
indexmap = "2" indexmap = "2"
log = "0.4" log = "0.4"

View file

@ -26,7 +26,7 @@ harness = false
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
hashbrown = { version = "0.14", features = ["serde"] } hashbrown = { version = "0.15", features = ["serde"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
simd-json = "0.13" simd-json = "0.13"