Update dashmap

This commit is contained in:
asonix 2024-07-09 16:26:00 -05:00
parent d918ef1495
commit f1792c8eb3
2 changed files with 17 additions and 3 deletions

18
Cargo.lock generated
View file

@ -399,7 +399,7 @@ dependencies = [
"color-eyre", "color-eyre",
"config", "config",
"console-subscriber", "console-subscriber",
"dashmap", "dashmap 6.0.1",
"dotenv", "dotenv",
"futures-core", "futures-core",
"http-signature-normalization-actix", "http-signature-normalization-actix",
@ -1151,6 +1151,20 @@ dependencies = [
"parking_lot_core 0.9.10", "parking_lot_core 0.9.10",
] ]
[[package]]
name = "dashmap"
version = "6.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28"
dependencies = [
"cfg-if",
"crossbeam-utils",
"hashbrown 0.14.5",
"lock_api",
"once_cell",
"parking_lot_core 0.9.10",
]
[[package]] [[package]]
name = "data-encoding" name = "data-encoding"
version = "2.6.0" version = "2.6.0"
@ -2003,7 +2017,7 @@ dependencies = [
"const-str", "const-str",
"cssparser", "cssparser",
"cssparser-color", "cssparser-color",
"dashmap", "dashmap 5.5.3",
"data-encoding", "data-encoding",
"getrandom", "getrandom",
"itertools 0.10.5", "itertools 0.10.5",

View file

@ -36,7 +36,7 @@ clap = { version = "4.0.0", features = ["derive"] }
color-eyre = "0.6.2" color-eyre = "0.6.2"
config = { version = "0.14.0", default-features = false, features = ["toml", "json", "yaml"] } config = { version = "0.14.0", default-features = false, features = ["toml", "json", "yaml"] }
console-subscriber = { version = "0.2", optional = true } console-subscriber = { version = "0.2", optional = true }
dashmap = "5.1.0" dashmap = "6.0.1"
dotenv = "0.15.0" dotenv = "0.15.0"
futures-core = "0.3.30" futures-core = "0.3.30"
lru = "0.12.0" lru = "0.12.0"