From 017da601e618f5b72ba375a8f67454f9d7254356 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 12:28:05 +0000 Subject: [PATCH] Update bincode requirement from 1 to 2 Updates the requirements on [bincode](https://github.com/bincode-org/bincode) to permit the latest version. - [Release notes](https://github.com/bincode-org/bincode/releases) - [Commits](https://github.com/bincode-org/bincode/compare/v1.0.0...v2.0.0) --- updated-dependencies: - dependency-name: bincode dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/toyconsul/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/toyconsul/Cargo.toml b/examples/toyconsul/Cargo.toml index 096b9b8..245b407 100644 --- a/examples/toyconsul/Cargo.toml +++ b/examples/toyconsul/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" publish = false [dependencies] -bincode = "1" +bincode = "2" clap = { version = "4", features = ["derive"] } crossbeam-skiplist = "0.1" serf = { workspace = true, features = ["default", "tokio", "tcp", "serde"] }