Bump hashbrown to v0.15

This commit is contained in:
Paolo Barbolini 2024-12-20 16:07:36 +01:00 committed by Austin Bonander
parent 9f6ea96e03
commit 7d148bd96b
2 changed files with 4 additions and 2 deletions

4
Cargo.lock generated
View file

@ -1659,6 +1659,8 @@ version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
]
@ -3555,7 +3557,7 @@ dependencies = [
"futures-intrusive",
"futures-io",
"futures-util",
"hashbrown 0.14.5",
"hashbrown 0.15.2",
"hashlink",
"indexmap 2.2.5",
"ipnetwork",

View file

@ -81,7 +81,7 @@ bstr = { version = "1.0", default-features = false, features = ["std"], optional
hashlink = "0.10.0"
indexmap = "2.0"
event-listener = "5.2.0"
hashbrown = "0.14.5"
hashbrown = "0.15.0"
[dev-dependencies]
sqlx = { workspace = true, features = ["postgres", "sqlite", "mysql", "migrate", "macros", "time", "uuid"] }