From 5e374216e92be77e5e951cddf5cda76fd06a697d Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 1 Mar 2023 22:35:00 +0100 Subject: [PATCH] Update the zstd dependency version --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9566efb7..59adaf29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4910,18 +4910,18 @@ checksum = "c110ba09c9b3a43edd4803d570df0da2414fed6e822e22b976a4e3ef50860701" [[package]] name = "zstd" -version = "0.11.2+zstd.1.5.2" +version = "0.12.3+zstd.1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" +checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" dependencies = [ "zstd-safe", ] [[package]] name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +version = "6.0.4+zstd.1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543" dependencies = [ "libc", "zstd-sys", diff --git a/Cargo.toml b/Cargo.toml index cbe09a3f..26f308e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,7 +112,7 @@ rtrb = { version = "0.2.2", optional = true } vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/drop-box-from-raw", optional = true } # Used for the `zstd` feature -zstd = { version = "0.11.2", optional = true } +zstd = { version = "0.12.3", optional = true } [dev-dependencies] approx = "0.5.1"