From 3a0271c1132881e600ba5d10c41631fdb16965f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 00:00:26 -0500 Subject: [PATCH] chore: bump dashmap from 4.0.2 to 5.1.0 (#23372) * chore: bump dashmap from 4.0.2 to 5.1.0 Bumps [dashmap](https://github.com/xacrimon/dashmap) from 4.0.2 to 5.1.0. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/commits/v5.1.0) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 5 +++-- core/Cargo.toml | 2 +- ledger-tool/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 5 +++-- rpc/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d561715db..5160e0926 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1004,12 +1004,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "4.0.2" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +checksum = "c0834a35a3fce649144119e18da2a4d8ed12ef3862f47183fd46f625d072d96c" dependencies = [ "cfg-if 1.0.0", "num_cpus", + "parking_lot 0.12.0", "rayon", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index c143dfa12..371fd5e94 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -20,7 +20,7 @@ bincode = "1.3.3" bs58 = "0.4.0" chrono = { version = "0.4.11", features = ["serde"] } crossbeam-channel = "0.5" -dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] } +dashmap = { version = "5.1.0", features = ["rayon", "raw-api"] } etcd-client = { version = "0.8.3", features = ["tls"]} fs_extra = "1.2.0" histogram = "0.6.9" diff --git a/ledger-tool/Cargo.toml b/ledger-tool/Cargo.toml index 8afc62f12..0da30aa42 100644 --- a/ledger-tool/Cargo.toml +++ b/ledger-tool/Cargo.toml @@ -14,7 +14,7 @@ bs58 = "0.4.0" clap = "2.33.1" crossbeam-channel = "0.5" csv = "1.1.6" -dashmap = "4.0.2" +dashmap = "5.1.0" histogram = "*" itertools = "0.10.3" log = { version = "0.4.14" } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 937c0e9e2..442924f85 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -641,12 +641,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "4.0.2" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +checksum = "c0834a35a3fce649144119e18da2a4d8ed12ef3862f47183fd46f625d072d96c" dependencies = [ "cfg-if 1.0.0", "num_cpus", + "parking_lot", "rayon", ] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 3cb394514..e74f58b2e 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -14,7 +14,7 @@ base64 = "0.12.3" bincode = "1.3.3" bs58 = "0.4.0" crossbeam-channel = "0.5" -dashmap = "4.0.2" +dashmap = "5.1.0" itertools = "0.10.3" jsonrpc-core = "18.0.0" jsonrpc-core-client = { version = "18.0.0" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index bb97ec79d..2eedf3b09 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -17,7 +17,7 @@ bv = { version = "0.11.1", features = ["serde"] } bytemuck = "1.8.0" byteorder = "1.4.3" bzip2 = "0.4.3" -dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] } +dashmap = { version = "5.1.0", features = ["rayon", "raw-api"] } crossbeam-channel = "0.5" dir-diff = "0.3.2" flate2 = "1.0.22"