From c0b21b85e014875a6aa81cdc0b128a203c700145 Mon Sep 17 00:00:00 2001 From: "dobby-yivi-agent[bot]" <275734547+dobby-yivi-agent[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 22:24:23 +0000 Subject: [PATCH] chore: bump bincode-next 3.0.0-rc.13 to 3.0.0-rc.14 Patch bump in pg-core and pg-pkg. MSRV stays at 1.91.1 so the Docker toolchain pin in Dockerfile is unchanged. The pg-core wire-compat regression test pg_core::bincode_compat::tests::legacy_config_matches_v1_default_bytes still passes, confirming on-disk IBS key format is byte-identical. --- Cargo.lock | 4 ++-- pg-core/Cargo.toml | 2 +- pg-pkg/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 879340d..bcd6155 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,9 +416,9 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "bincode-next" -version = "3.0.0-rc.13" +version = "3.0.0-rc.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f23e7ee604dc1e468bc8c3003464a69e3e538ad6560051fe691978a69cfba970" +checksum = "e4979ec1902cb712ca61a681f05e8a54f1fd42b82234c732dce7cfd1f4fac62a" dependencies = [ "pastey", "rapidhash", diff --git a/pg-core/Cargo.toml b/pg-core/Cargo.toml index 6a23b48..469e7f7 100644 --- a/pg-core/Cargo.toml +++ b/pg-core/Cargo.toml @@ -23,7 +23,7 @@ serde_json = "1.0" subtle = "2.3" tiny-keccak = { version = "2.0", features = ["sha3"] } base64ct = "1.5" -bincode-next = { version = "3.0.0-rc.13", default-features = false, features = ["alloc", "serde"] } +bincode-next = { version = "3.0.0-rc.14", default-features = false, features = ["alloc", "serde"] } # For both stream features and the web implementation. futures = { version = "0.3.27", optional = true } diff --git a/pg-pkg/Cargo.toml b/pg-pkg/Cargo.toml index 6af835a..8dbdb6d 100644 --- a/pg-pkg/Cargo.toml +++ b/pg-pkg/Cargo.toml @@ -37,7 +37,7 @@ hex = "0.4" jsonwebtoken = { version = "10", features = ["use_pem", "rust_crypto"] } sha2 = "0.11" prometheus = { version = "0.14", default-features = false } -bincode-next = { version = "3.0.0-rc.13", default-features = false, features = ["std", "serde"] } +bincode-next = { version = "3.0.0-rc.14", default-features = false, features = ["std", "serde"] } tokio = "1.47.1" [dependencies.clap]