This is an automated email from the ASF dual-hosted git repository.
Kriskras99 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
The following commit(s) were added to refs/heads/main by this push:
new e6858e8 chore(deps): Bump zstd from 0.13.3 to 0.14.0 (#676)
e6858e8 is described below
commit e6858e8fd8db58579e7eb901d80fd7bb852000f6
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 14 07:51:54 2026 +0200
chore(deps): Bump zstd from 0.13.3 to 0.14.0 (#676)
Bumps [zstd](https://github.com/gyscos/zstd-rs) from 0.13.3 to 0.14.0.
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/compare/v0.13.3...v0.14.0)
---
updated-dependencies:
- dependency-name: zstd
dependency-version: 0.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 12 ++++++------
avro/Cargo.toml | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 9f9d897..13b2e23 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1593,27 +1593,27 @@ checksum =
"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
[[package]]
name = "zstd"
-version = "0.13.3"
+version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
+checksum = "bf06bd8162af0734b344780deb55b42a2429ae430870d13fcc12f238e880fe6e"
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
-version = "7.2.4"
+version = "8.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
+checksum = "ae42c0555055784c70058d19ba8e275528e8a99a706684868ace5da4e716a4ab"
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
-version = "2.0.16+zstd.1.5.7"
+version = "2.1.0+zstd.1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
+checksum = "0ef0a8027ec3ee71300ab3bcbcd0393f434aa72b91ca6d635a39941deae8eea0"
dependencies = [
"cc",
"pkg-config",
diff --git a/avro/Cargo.toml b/avro/Cargo.toml
index 7817d01..312a2c5 100644
--- a/avro/Cargo.toml
+++ b/avro/Cargo.toml
@@ -67,7 +67,7 @@ strum = { default-features = false, version = "0.28.0",
features = ["derive"] }
thiserror = { default-features = false, version = "2.0.18" }
uuid = { workspace = true }
liblzma = { default-features = false, version = "0.4.6", optional = true }
-zstd = { default-features = false, version = "0.13.3", optional = true }
+zstd = { default-features = false, version = "0.14.0", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]