From 1f47e6c1d2d1bf7b673d0878a789a0b8e1f35e91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 01:59:42 +0000 Subject: [PATCH] deps: Bump the rust-dependencies group with 3 updates Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [lz4_flex](https://github.com/pseitz/lz4_flex) and [generic-array](https://github.com/fizyk20/generic-array) to permit the latest version. Updates `thiserror` to 2.0.17 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.17) Updates `lz4_flex` to 0.12.0 - [Release notes](https://github.com/pseitz/lz4_flex/releases) - [Changelog](https://github.com/PSeitz/lz4_flex/blob/main/CHANGELOG.md) - [Commits](https://github.com/pseitz/lz4_flex/compare/0.11...0.12.0) Updates `generic-array` to 1.3.5 - [Release notes](https://github.com/fizyk20/generic-array/releases) - [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md) - [Commits](https://github.com/fizyk20/generic-array/commits) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.17 dependency-type: direct:production dependency-group: rust-dependencies - dependency-name: lz4_flex dependency-version: 0.12.0 dependency-type: direct:production dependency-group: rust-dependencies - dependency-name: generic-array dependency-version: 1.3.5 dependency-type: direct:production dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 353aae8..051b217 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ crate-type = ["cdylib", "rlib", "staticlib"] [dependencies] # Error handling -thiserror = "1.0" +thiserror = "2.0" # Core serialization serde = { version = "1.0", features = ["derive"] } @@ -30,7 +30,7 @@ serde_bytes = "0.11" rmp-serde = { version = "1.3", optional = true } # High-performance LZ4 compression (optional) -lz4_flex = { version = "0.11", features = ["frame", "std"], optional = true } +lz4_flex = { version = "0.12", features = ["frame", "std"], optional = true } # Fast non-cryptographic hashing for data integrity (optional) # xxHash3-64: ~36 GB/s, sufficient for corruption detection (security via AES-GCM auth tag) @@ -44,7 +44,7 @@ zeroize = { version = "1.8", features = ["derive"], optional = true } hkdf = { version = "0.12", optional = true } sha2 = { version = "0.10", optional = true } hmac = { version = "0.12", optional = true } -generic-array = { version = "0.14", optional = true } +generic-array = { version = "1.3", optional = true } # Byte utilities bytes = "1.5"