From 24c9b64555aaa1b2d5138856803f61869e674a15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 03:37:08 +0000 Subject: [PATCH] build(deps): bump dashmap from 5.5.3 to 6.2.1 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 5.5.3 to 6.2.1. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v.5.5.3...v6.2.1) --- updated-dependencies: - dependency-name: dashmap dependency-version: 6.2.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++++----- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec8d476..4c8e410 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -337,9 +337,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -546,11 +546,12 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.3" +version = "6.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c" dependencies = [ "cfg-if", + "crossbeam-utils", "hashbrown 0.14.5", "lock_api", "once_cell", @@ -1761,7 +1762,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index adc92ba..789327e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ reqwest = { version = "0.12", default-features = false, features = ["json","stre # Rate limiting / Redis redis = { version = "0.32", features = ["tokio-comp","aio","connection-manager"] } -dashmap = "5" +dashmap = "6" # Database (added for persistence phase groundwork) sqlx = { version = "0.8", features = ["runtime-tokio-rustls","postgres","uuid","chrono","macros"] }