From e57ea49e8947256421f34eb4ac5845eb43aa39c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2026 16:42:46 +0000 Subject: [PATCH] chore(deps)(deps): update bincode requirement from 1 to 3 Updates the requirements on [bincode](https://github.com/bincode-org/bincode) to permit the latest version. - [Commits](https://github.com/bincode-org/bincode/commits) --- updated-dependencies: - dependency-name: bincode dependency-version: 3.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/octo-adapter-udp/Cargo.toml | 2 +- crates/quota-router-core/Cargo.toml | 2 +- crates/quota-router-integration-tests/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/octo-adapter-udp/Cargo.toml b/crates/octo-adapter-udp/Cargo.toml index 6aab2cc5..6d9a13e9 100644 --- a/crates/octo-adapter-udp/Cargo.toml +++ b/crates/octo-adapter-udp/Cargo.toml @@ -9,7 +9,7 @@ octo-network = { path = "../octo-network" } async-trait = "0.1" tokio = { version = "1", features = ["net", "io-util", "sync", "time", "macros"] } blake3 = "1.5" -bincode = "1" +bincode = "3" serde = { version = "1", features = ["derive"] } tracing = "0.1" thiserror = "1" diff --git a/crates/quota-router-core/Cargo.toml b/crates/quota-router-core/Cargo.toml index 03dc95f3..b92c602d 100644 --- a/crates/quota-router-core/Cargo.toml +++ b/crates/quota-router-core/Cargo.toml @@ -60,7 +60,7 @@ hmac-sha256 = "1.1" # `digest 0.11` (hmac 0.13). See PR #57 for context. # For bincode serialization (mesh envelope wire format) -bincode = "1" +bincode = "3" # Mesh network layer dependencies (QuotaRouterNode, gossip, forward, handler) octo-transport = { path = "../../octo-transport" } diff --git a/crates/quota-router-integration-tests/Cargo.toml b/crates/quota-router-integration-tests/Cargo.toml index 22589faa..591ae1bc 100644 --- a/crates/quota-router-integration-tests/Cargo.toml +++ b/crates/quota-router-integration-tests/Cargo.toml @@ -12,7 +12,7 @@ octo-network = { path = "../octo-network" } octo-adapter-tcp = { path = "../octo-adapter-tcp" } tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync"] } async-trait = "0.1" -bincode = "1" +bincode = "3" blake3 = "1.5" rand = "0.8"