From 6b24e217bdb89c05d2d61d47499bb52d2b059df9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:34:17 +0000 Subject: [PATCH] Bump bincode from 1.3.3 to 2.0.1 Bumps [bincode](https://github.com/bincode-org/bincode) from 1.3.3 to 2.0.1. - [Release notes](https://github.com/bincode-org/bincode/releases) - [Commits](https://github.com/bincode-org/bincode/compare/v1.3.3...v2.0.1) --- updated-dependencies: - dependency-name: bincode dependency-version: 2.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++------------ crates/migration/Cargo.toml | 2 +- crates/nlp/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c9dd32f..d32daf5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -651,15 +651,6 @@ version = "1.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - [[package]] name = "bincode" version = "2.0.1" @@ -1269,7 +1260,7 @@ dependencies = [ "ahash", "arc-swap", "base64 0.22.1", - "bincode 2.0.1", + "bincode", "biscuit", "calcard", "chrono", @@ -4477,7 +4468,7 @@ name = "migration" version = "0.12.5" dependencies = [ "base64 0.22.1", - "bincode 1.3.3", + "bincode", "calcard", "common", "compact_str", @@ -4715,7 +4706,7 @@ name = "nlp" version = "0.12.5" dependencies = [ "ahash", - "bincode 1.3.3", + "bincode", "farmhash", "hashify", "jieba-rs", diff --git a/crates/migration/Cargo.toml b/crates/migration/Cargo.toml index 1c2ecda1..91af0d61 100644 --- a/crates/migration/Cargo.toml +++ b/crates/migration/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0", features = ["derive"]} serde_json = "1.0" rkyv = { version = "0.8.10", features = ["little_endian"] } compact_str = "0.9.0" -bincode = "1.3.3" +bincode = "2.0.1" lz4_flex = { version = "0.11", default-features = false } base64 = "0.22" diff --git a/crates/nlp/Cargo.toml b/crates/nlp/Cargo.toml index ac9c67b0..142a2c17 100644 --- a/crates/nlp/Cargo.toml +++ b/crates/nlp/Cargo.toml @@ -27,4 +27,4 @@ test_mode = [] [dev-dependencies] tokio = { version = "1.45", features = ["full"] } -bincode = "1.3.3" +bincode = "2.0.1"