From 9d38665f0ca452dc4242d72e80307aee7658c481 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 09:45:08 +0000 Subject: [PATCH] Update dashmap requirement from 5.5 to 6.1 Updates the requirements on [dashmap](https://github.com/xacrimon/dashmap) to permit the latest version. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.5.0...v6.1.0) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- tokio-fs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da50379..0e8a55b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "1.0" async-lock = "3.3" futures-lite = "2.3" bytes = "1.6" -dashmap = "5.5" +dashmap = "6.1" [workspace] resolver = "2" diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index b12fd4e..87f2400 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -18,5 +18,5 @@ maintenance = { status = "actively-developed" } dmds = "0.4" tokio = { version = "1.37", features = ["fs", "io-util", "time", "rt"] } futures = { version = "0.3", features = ["executor"] } -dashmap = "5.5" +dashmap = "6.1" bytes = "1.6"