From 47a22e789d142c94c6dcd3a233e5de1bc2ecb9a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 03:52:51 +0000 Subject: [PATCH] build(deps): bump dashmap from 5.5.3 to 6.1.0 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 5.5.3 to 6.1.0. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v.5.5.3...v6.1.0) --- updated-dependencies: - dependency-name: dashmap dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index af26dfe..450d5d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -532,11 +532,12 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.3" +version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ "cfg-if", + "crossbeam-utils", "hashbrown 0.14.5", "lock_api", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index fc2fa94..c61d22e 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"] }