From 83c53610e3893980badbe1d8d4826e2d648f5d4e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 12:45:56 +0000 Subject: [PATCH] Update dashmap requirement from 5.4 to 6.0 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.4.0...v6.0.0) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/spectator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/spectator/Cargo.toml b/crates/spectator/Cargo.toml index c252e4ded..c9057c460 100644 --- a/crates/spectator/Cargo.toml +++ b/crates/spectator/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1.0" argmin = { version = "0.10.0", path = "../argmin", default-features = false, features = ["serde1"] } bytes = "1.4.0" clap = { version = "4.1.7", features = ["derive"] } -dashmap = { version = "5.4", features = ["serde"], optional = true } +dashmap = { version = "6.0", features = ["serde"], optional = true } eframe = { version = "0.26", features = ["ron", "persistence"], optional = true } egui_dock = { version = "0.11", optional = true } egui_extras = { version = "0.26", optional = true }