From 6d073d26172e6ed77930b9271d75ed4e19a3df99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Aug 2026 06:13:10 +0000 Subject: [PATCH] build(deps): bump bincode from 1.3.3 to 3.0.0 in /runtime Bumps [bincode](https://github.com/bincode-org/bincode) from 1.3.3 to 3.0.0. - [Commits](https://github.com/bincode-org/bincode/commits) --- updated-dependencies: - dependency-name: bincode dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- runtime/Cargo.lock | 12 +++++++++--- runtime/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/runtime/Cargo.lock b/runtime/Cargo.lock index 9db7cde..4e4032c 100644 --- a/runtime/Cargo.lock +++ b/runtime/Cargo.lock @@ -50,6 +50,12 @@ dependencies = [ "serde", ] +[[package]] +name = "bincode" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6a120d2e16b3e1b4a24bd70f23b12d3e16b81f113364a26935f8db7245452d" + [[package]] name = "bitflags" version = "2.13.0" @@ -383,7 +389,7 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" name = "penumbra-fhe-runtime" version = "0.0.0" dependencies = [ - "bincode", + "bincode 3.0.0", "serde", "serde_json", "tfhe", @@ -601,7 +607,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f341a7a6fe90bf813ecb2b098f04c0e5bca82436ddd1b256e6f1ec68be58da52" dependencies = [ "aligned-vec", - "bincode", + "bincode 1.3.3", "blake3", "bytemuck", "dyn-stack", @@ -666,7 +672,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09fc6480b20057adbb99ec2cd510561f181863e57303a32bc2eca5c3ea163097" dependencies = [ - "bincode", + "bincode 1.3.3", "serde", "tfhe-versionable", ] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 39ecf13..07c3b12 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -26,7 +26,7 @@ serde_json = "1" # own integer-API docs use bincode; the tfhe-native `safe_serialization` is unavailable here # (the integer-API types don't implement its `Named` trait). Keeping keys/ciphertext in a # compact binary format (not the human-readable IR JSON) — server keys are large. -bincode = "1" +bincode = "3" [dev-dependencies] # (placeholder for future test-only deps)