From e982f6679e9d1526d856efa462e728774b52cf34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 13:23:57 +0000 Subject: [PATCH] chore(deps): Bump dashmap from 6.0.0 to 6.0.1 (#20728) Bumps [dashmap](https://github.com/xacrimon/dashmap) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v6.0.0...v6.0.1) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- lib/tracing-limit/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5868daa2027d2..4da906183dce1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2680,9 +2680,9 @@ dependencies = [ [[package]] name = "dashmap" -version = "6.0.0" +version = "6.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23fadfd577acfd4485fb258011b0fd080882ea83359b6fd41304900b94ccf487" +checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28" dependencies = [ "cfg-if", "crossbeam-utils", @@ -3340,7 +3340,7 @@ dependencies = [ "chrono", "crc", "criterion", - "dashmap 6.0.0", + "dashmap 6.0.1", "flate2", "futures 0.3.30", "glob", @@ -9942,7 +9942,7 @@ name = "tracing-limit" version = "0.1.0" dependencies = [ "criterion", - "dashmap 6.0.0", + "dashmap 6.0.1", "mock_instant", "tracing 0.1.40", "tracing-core 0.1.32", diff --git a/lib/tracing-limit/Cargo.toml b/lib/tracing-limit/Cargo.toml index 4c96254938124..dc5dedd7b7269 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 = "6.0.0", default-features = false } +dashmap = { version = "6.0.1", default-features = false } [dev-dependencies] criterion = "0.5"