From cfeb8c03e8995d61cf4678e4a9c7b8d14ad28e0f Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Tue, 10 Sep 2024 08:51:23 +1200 Subject: [PATCH] Update dependencies --- Cargo.lock | 5 +++-- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b786cd1..76fd99a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,11 +355,12 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.3" +version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ "cfg-if", + "crossbeam-utils", "hashbrown", "lock_api", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index fe270b9..04ed7bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] base64 = "0.22" -dashmap = "5.5" +dashmap = "6" env_logger = "0.11" futures = "0.3" hex = "0.4" @@ -23,7 +23,7 @@ log = "0.4" pocket-types = { git = "https://github.com/mikedilger/pocket", branch = "master" } pocket-db = { git = "https://github.com/mikedilger/pocket", branch = "master" } parking_lot = "0.12" -rustls-pki-types= "1.3" +rustls-pki-types= "1.8" rustls-pemfile = "2.1" secp256k1 = { version = "0.29", features = [ "hashes", "global-context", "rand-std" ] } serde = { version = "1.0", features = ["derive"] }