mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 09:45:31 +00:00
Upgrade hashbrown to version 0.13
This commit is contained in:
parent
1f73d11a97
commit
9ace8f53b8
7 changed files with 21 additions and 12 deletions
21
Cargo.lock
generated
21
Cargo.lock
generated
|
|
@ -77,7 +77,7 @@ dependencies = [
|
|||
"duplicate",
|
||||
"git-testament",
|
||||
"glommio",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"hex",
|
||||
"hwloc",
|
||||
"indexmap",
|
||||
|
|
@ -136,7 +136,7 @@ dependencies = [
|
|||
"futures-lite",
|
||||
"futures-rustls",
|
||||
"glommio",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"log",
|
||||
"mimalloc",
|
||||
"quickcheck",
|
||||
|
|
@ -227,7 +227,7 @@ dependencies = [
|
|||
"constant_time_eq 0.2.4",
|
||||
"crossbeam-channel",
|
||||
"getrandom",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"hdrhistogram",
|
||||
"hex",
|
||||
"libc",
|
||||
|
|
@ -272,7 +272,7 @@ dependencies = [
|
|||
"aquatic_common",
|
||||
"aquatic_toml_config",
|
||||
"aquatic_udp_protocol",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"mimalloc",
|
||||
"mio",
|
||||
"quickcheck",
|
||||
|
|
@ -308,7 +308,7 @@ dependencies = [
|
|||
"futures-lite",
|
||||
"futures-rustls",
|
||||
"glommio",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"httparse",
|
||||
"log",
|
||||
"mimalloc",
|
||||
|
|
@ -355,7 +355,7 @@ version = "0.2.0"
|
|||
dependencies = [
|
||||
"anyhow",
|
||||
"criterion",
|
||||
"hashbrown 0.12.3",
|
||||
"hashbrown 0.13.1",
|
||||
"quickcheck",
|
||||
"quickcheck_macros",
|
||||
"serde",
|
||||
|
|
@ -1292,6 +1292,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
||||
dependencies = [
|
||||
"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",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ anyhow = "1"
|
|||
arc-swap = "1"
|
||||
duplicate = "0.4"
|
||||
git-testament = "0.2"
|
||||
hashbrown = "0.12"
|
||||
hashbrown = "0.13"
|
||||
hex = "0.4"
|
||||
indexmap = "1"
|
||||
indexmap-amortized = "1"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ aquatic_toml_config.workspace = true
|
|||
anyhow = "1"
|
||||
futures-lite = "1"
|
||||
futures-rustls = "0.22"
|
||||
hashbrown = "0.12"
|
||||
hashbrown = "0.13"
|
||||
glommio = "0.7"
|
||||
log = "0.4"
|
||||
mimalloc = { version = "0.1", default-features = false }
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ cfg-if = "1"
|
|||
constant_time_eq = "0.2"
|
||||
crossbeam-channel = "0.5"
|
||||
getrandom = "0.2"
|
||||
hashbrown = { version = "0.12", default-features = false }
|
||||
hashbrown = { version = "0.13", default-features = false }
|
||||
hdrhistogram = "7"
|
||||
hex = "0.4"
|
||||
libc = "0.2"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ aquatic_toml_config.workspace = true
|
|||
aquatic_udp_protocol.workspace = true
|
||||
|
||||
anyhow = "1"
|
||||
hashbrown = "0.12"
|
||||
hashbrown = "0.13"
|
||||
mimalloc = { version = "0.1", default-features = false }
|
||||
mio = { version = "0.8", features = ["net", "os-poll"] }
|
||||
rand_distr = "0.4"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ futures = "0.3"
|
|||
futures-lite = "1"
|
||||
futures-rustls = "0.22"
|
||||
glommio = "0.7"
|
||||
hashbrown = { version = "0.12", features = ["serde"] }
|
||||
hashbrown = { version = "0.13", features = ["serde"] }
|
||||
httparse = "1"
|
||||
log = "0.4"
|
||||
mimalloc = { version = "0.1", default-features = false }
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ harness = false
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
hashbrown = { version = "0.12", features = ["serde"] }
|
||||
hashbrown = { version = "0.13", features = ["serde"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
simd-json = { version = "0.6", features = ["allow-non-simd"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue