diff --git a/Cargo.lock b/Cargo.lock index 1dc4b80dc133c..22384090b5913 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2184,13 +2184,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.2.0" +version = "5.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8858831f7781322e539ea39e72449c46b059638250c14344fec8d0aa6e539c" +checksum = "391b56fbd302e585b7a9494fb70e40949567b1cf9003a8e4a6041a1687c26573" dependencies = [ "cfg-if", - "num_cpus", - "parking_lot", + "hashbrown", + "lock_api", ] [[package]] diff --git a/lib/file-source/Cargo.toml b/lib/file-source/Cargo.toml index c488113780b62..7cb224847cd9f 100644 --- a/lib/file-source/Cargo.toml +++ b/lib/file-source/Cargo.toml @@ -31,7 +31,7 @@ default-features = false features = ["clock", "serde"] [dependencies.dashmap] -version = "5.2" +version = "5.3" default-features = false features = [] diff --git a/lib/tracing-limit/Cargo.toml b/lib/tracing-limit/Cargo.toml index cbed9cb599d8d..e018e13ec46ef 100644 --- a/lib/tracing-limit/Cargo.toml +++ b/lib/tracing-limit/Cargo.toml @@ -9,7 +9,7 @@ license = "MPL-2.0" [dependencies] tracing-core = { version = "0.1", default-features = false } tracing-subscriber = { version = "0.3", default-features = false, features = ["registry", "std"] } -dashmap = { version = "5.2.0", default-features = false } +dashmap = { version = "5.3.3", default-features = false } [dev-dependencies] criterion = "0.4"