From 64c16b0e2c63301deeebff6c934c8557eab82878 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Dec 2021 06:55:46 +0000 Subject: [PATCH] Bump dashmap from 4.0.2 to 5.0.0 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 4.0.2 to 5.0.0. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/commits/v5.0.0) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++++---- commons/api-limiter/Cargo.toml | 2 +- rpc/server/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0349b72b0a..f116be92dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,7 +307,7 @@ name = "api-limiter" version = "1.9.1" dependencies = [ "anyhow", - "dashmap", + "dashmap 5.0.0", "governor", ] @@ -2033,6 +2033,17 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "dashmap" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b799062aaf67eb976af3bdca031ee6f846d2f0a5710ddbb0d2efee33f3cc4760" +dependencies = [ + "cfg-if 1.0.0", + "num_cpus", + "parking_lot 0.11.2", +] + [[package]] name = "data-encoding" version = "2.3.2" @@ -3184,7 +3195,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06c5d2f987ee8f6dff3fa1a352058dc59b990e447e4c7846aa7d804971314f7b" dependencies = [ - "dashmap", + "dashmap 4.0.2", "futures 0.3.17", "futures-timer", "no-std-compat", @@ -3812,7 +3823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28dd2533247278c752288772dabf321a22ed85213e4543d3ad51e5d1288098c8" dependencies = [ "ahash 0.3.8", - "dashmap", + "dashmap 4.0.2", "hashbrown 0.9.1", "once_cell", "parking_lot 0.11.2", @@ -9732,7 +9743,7 @@ dependencies = [ "api-limiter", "bcs", "bcs-ext", - "dashmap", + "dashmap 5.0.0", "futures 0.3.17", "futures-channel", "governor", diff --git a/commons/api-limiter/Cargo.toml b/commons/api-limiter/Cargo.toml index b10c06d099..a4d33d8d17 100644 --- a/commons/api-limiter/Cargo.toml +++ b/commons/api-limiter/Cargo.toml @@ -11,5 +11,5 @@ edition = "2021" anyhow = "~1" governor = {version="~0.3", features=["dashmap"]} -dashmap = "~4.0" +dashmap = "~5.0" diff --git a/rpc/server/Cargo.toml b/rpc/server/Cargo.toml index 619bcc8675..7c459e6810 100644 --- a/rpc/server/Cargo.toml +++ b/rpc/server/Cargo.toml @@ -12,7 +12,7 @@ parking_lot = "0.11" futures-channel = "0.3" anyhow = "1.0.41" thiserror = "1.0" -dashmap = "4.0" +dashmap = "5.0" hex = { version = "0.4.3", default-features = false } serde = { version = "1.0.130", features = ["derive"] } serde_json = { version="1.0", features = ["arbitrary_precision"]}