From 57f437ebde817c403f3c88071f9af8018d6c82cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Sat, 27 May 2023 22:59:32 +0200 Subject: [PATCH] Update Zopfli to v0.7.4 v0.7.3 was superseeded shortly after v0.7.3 was released to address a last minute change to the new API it introduced. OxiPNG is not affected by this, but I think it's good practice to update Zopfli anyway. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 831068d2..6dc42816 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -636,9 +636,9 @@ dependencies = [ [[package]] name = "zopfli" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d23feb17659a96f728aa359297bbd2800ddd59720e1b50aa1196b7fb4027fdb2" +checksum = "4e0650ae6a051326d798eb099b632f1afb0d323d25ee4ec82ffb0779512084d5" dependencies = [ "crc32fast", "log", diff --git a/Cargo.toml b/Cargo.toml index b13d09cd..cf3ab8dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ name = "zopfli" required-features = ["zopfli"] [dependencies] -zopfli = { version = "0.7.3", optional = true, default-features = false, features = ["std", "zlib"] } +zopfli = { version = "0.7.4", optional = true, default-features = false, features = ["std", "zlib"] } rgb = "0.8.36" indexmap = "1.9.3" libdeflater = "0.11.0"