From a5d38e8fc629b4d3e74825024cc9b14aa84af02a Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 23 Aug 2024 15:01:32 +0200 Subject: [PATCH] increase minimal versions of `libz-ng-sys` and `libz-sys` to their latest releases. That way, those compiling with `-Zminimal-versions` have higher chances of it to work. See https://github.com/Byron/gitoxide/pull/1541 for reference. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 69d4e2de..541b8160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ and raw deflate streams. exclude = [".*"] [dependencies] -libz-sys = { version = "1.1.8", optional = true, default-features = false } -libz-ng-sys = { version = "1.1.8", optional = true } +libz-sys = { version = "1.1.20", optional = true, default-features = false } +libz-ng-sys = { version = "1.1.16", optional = true } libz-rs-sys = { version = "0.2.1", optional = true, default-features = false, features = ["std", "rust-allocator"] } cloudflare-zlib-sys = { version = "0.3.0", optional = true } miniz_oxide = { version = "0.8.0", optional = true, default-features = false, features = ["with-alloc"] }