From a5924d293c7b5a9858a6cba97e59993febdec0e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Aug 2023 04:38:17 +0000 Subject: [PATCH] chore(deps): Bump dashmap from 5.4.0 to 5.5.3 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 5.4.0 to 5.5.3. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.4.0...v.5.5.3) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 +++++++++--------- lib/file-source/Cargo.toml | 2 +- lib/tracing-limit/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce9e6d92c79c3..ff198f6f013dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2566,12 +2566,12 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.4.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", - "hashbrown 0.12.3", + "hashbrown 0.14.0", "lock_api", "once_cell", "parking_lot_core", @@ -4667,9 +4667,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ "autocfg", "scopeguard", @@ -5749,15 +5749,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.4" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", + "redox_syscall 0.3.5", "smallvec", - "windows-sys 0.42.0", + "windows-targets 0.48.0", ] [[package]] diff --git a/lib/file-source/Cargo.toml b/lib/file-source/Cargo.toml index a9203b9f21acb..92f24b954eff0 100644 --- a/lib/file-source/Cargo.toml +++ b/lib/file-source/Cargo.toml @@ -34,7 +34,7 @@ default-features = false features = ["clock", "serde"] [dependencies.dashmap] -version = "5.2" +version = "5.5" default-features = false features = [] diff --git a/lib/tracing-limit/Cargo.toml b/lib/tracing-limit/Cargo.toml index 48c0bf0762a98..1b7edb8b5f6f3 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.5.3", default-features = false } [dev-dependencies] criterion = "0.5"