From 682718ba4d115ec190a9403e907b784c278b994b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 13:34:57 +0000 Subject: [PATCH] chore(deps): update zstd-safe requirement from 6 to 7 Updates the requirements on [zstd-safe](https://github.com/gyscos/zstd-rs) to permit the latest version. - [Release notes](https://github.com/gyscos/zstd-rs/releases) - [Commits](https://github.com/gyscos/zstd-rs/compare/zstd-safe-6.0.3...zstd-safe-7.0.0) --- updated-dependencies: - dependency-name: zstd-safe dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1ff76..b7d25ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), ## Unreleased +- Update `zstd` dependency to `0.13`. + ## 0.4.3 - Implement `Default` for `brotli::EncoderParams`. diff --git a/Cargo.toml b/Cargo.toml index 7871a9e..5236a59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,12 +37,12 @@ bzip2 = { version = "0.4.4", optional = true } flate2 = { version = "1.0.13", optional = true } futures-core = { version = "0.3", default-features = false } futures-io = { version = "0.3", default-features = false, features = ["std"], optional = true } -libzstd = { package = "zstd", version = "0.12", optional = true, default-features = false } +libzstd = { package = "zstd", version = "0.13", optional = true, default-features = false } memchr = "2" pin-project-lite = "0.2" tokio = { version = "1.24.2", optional = true, default-features = false } xz2 = { version = "0.1.6", optional = true } -zstd-safe = { version = "6", optional = true, default-features = false } +zstd-safe = { version = "7", optional = true, default-features = false } deflate64 = { version = "0.1.5", optional = true } [dev-dependencies]