From 8316c812c6f65cafeecf423c7cf272460e56ac8d Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Sun, 29 May 2022 01:27:15 +0000 Subject: [PATCH] upgrade dashmap --- Cargo.lock | 5 +++-- web3-proxy/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63b02be6..15d40a9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -871,13 +871,14 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.3.3" +version = "5.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391b56fbd302e585b7a9494fb70e40949567b1cf9003a8e4a6041a1687c26573" +checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f" dependencies = [ "cfg-if", "hashbrown 0.12.1", "lock_api", + "parking_lot_core 0.9.3", ] [[package]] diff --git a/web3-proxy/Cargo.toml b/web3-proxy/Cargo.toml index e65fd981..0bf59ab0 100644 --- a/web3-proxy/Cargo.toml +++ b/web3-proxy/Cargo.toml @@ -11,7 +11,7 @@ arc-swap = "1.5.0" argh = "0.1.7" axum = { version = "0.5.6", features = ["serde_json", "tokio-tungstenite"] } counter = "0.5.5" -dashmap = "5.3.3" +dashmap = "5.3.4" derive_more = "0.99.17" ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] } fdlimit = "0.2.1"