From 4345d464a30be81839a75416f4a6f347b2c7495e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 15:28:08 +0000 Subject: [PATCH] chore(deps): bump dashmap from 5.2.0 to 5.3.3 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 5.2.0 to 5.3.3. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.2.0...v5.3.3) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- lib/file-source/Cargo.toml | 2 +- lib/tracing-limit/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) 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"