From ceb131fbe756dcd714374fb93ae43308392aabca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 11:53:06 +0000 Subject: [PATCH] chore(deps)(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 | 17 ++--------------- crates/node/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8eb317ea..4efd3394 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -438,7 +438,7 @@ dependencies = [ "chacha20poly1305", "chrono", "clap", - "dashmap 5.5.3", + "dashmap", "getrandom 0.2.16", "hex", "hmac", @@ -1008,19 +1008,6 @@ dependencies = [ "syn", ] -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", -] - [[package]] name = "dashmap" version = "6.1.0" @@ -1147,7 +1134,7 @@ version = "0.1.0" dependencies = [ "anyhow", "bitquan-rpc", - "dashmap 6.1.0", + "dashmap", "lazy_static", "regex", "reqwest", diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml index 9091ce76..b12f3c09 100644 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -50,7 +50,7 @@ zeroize.workspace = true tokio = { version = "1.49", features = ["full"] } reqwest = { version = "0.12", features = ["json"] } uuid = { version = "1.6", features = ["v4", "serde"] } -dashmap = "5.5" +dashmap = "6.1" lru = "0.16" rusqlite = { version = "0.30", features = ["bundled"] } warp = { version = "0.4", features = ["server"] }