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]