diff --git a/Cargo.lock b/Cargo.lock index f56bd6254..72c430f4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1048,12 +1048,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "4.0.2" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +checksum = "b799062aaf67eb976af3bdca031ee6f846d2f0a5710ddbb0d2efee33f3cc4760" dependencies = [ "cfg-if 1.0.0", "num_cpus", + "parking_lot 0.11.2", "rayon", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index fe8c30c6d..8438ec6ba 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.0.0", features = ["rayon", "raw-api"] } etcd-client = { version = "0.8.1", features = ["tls"]} fs_extra = "1.2.0" histogram = "0.6.9" diff --git a/ledger-tool/Cargo.toml b/ledger-tool/Cargo.toml index 1bdb98eaa..e350862cd 100644 --- a/ledger-tool/Cargo.toml +++ b/ledger-tool/Cargo.toml @@ -14,7 +14,7 @@ bs58 = "0.4.0" bytecount = "0.6.2" clap = "2.33.1" csv = "1.1.6" -dashmap = "4.0.2" +dashmap = "5.0.0" histogram = "*" itertools = "0.10.3" log = { version = "0.4.14" } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 87db4a0d8..793c726ea 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -638,12 +638,13 @@ dependencies = [ [[package]] name = "dashmap" -version = "4.0.2" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" +checksum = "b799062aaf67eb976af3bdca031ee6f846d2f0a5710ddbb0d2efee33f3cc4760" dependencies = [ "cfg-if 1.0.0", "num_cpus", + "parking_lot", "rayon", ] diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index d2c6d0356..577caf1c8 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.0.0" itertools = "0.10.3" jsonrpc-core = "18.0.0" jsonrpc-core-client = { version = "18.0.0", features = ["ipc", "ws"] } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 6325e6689..ffb1eb249 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -16,7 +16,7 @@ blake3 = "1.2.0" bv = { version = "0.11.1", features = ["serde"] } byteorder = "1.4.3" bzip2 = "0.4.3" -dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] } +dashmap = { version = "5.0.0", features = ["rayon", "raw-api"] } crossbeam-channel = "0.5" dir-diff = "0.3.2" flate2 = "1.0.22"