Skip to content

Commit 94b36b0

Browse files
committed
upgrade zlib-rs to version 0.5.0
1 parent a79bfe4 commit 94b36b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "flate2"
33
authors = ["Alex Crichton <[email protected]>", "Josh Triplett <[email protected]>"]
4-
version = "1.1.0"
4+
version = "1.1.1"
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -22,7 +22,7 @@ exclude = [".*"]
2222
libz-sys = { version = "1.1.20", optional = true, default-features = false }
2323
libz-ng-sys = { version = "1.1.16", optional = true }
2424
# this matches the default features, but we don't want to depend on the default features staying the same
25-
libz-rs-sys = { version = "0.4.2", optional = true, default-features = false, features = ["std", "rust-allocator"] }
25+
libz-rs-sys = { version = "0.5.0", optional = true, default-features = false, features = ["std", "rust-allocator"] }
2626
cloudflare-zlib-sys = { version = "0.3.5", optional = true }
2727
miniz_oxide = { version = "0.8.5", optional = true, default-features = false, features = ["with-alloc"] }
2828
crc32fast = "1.2.0"

src/ffi/c.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ mod c_backend {
467467
#[cfg(feature = "zlib-ng")]
468468
const ZLIB_VERSION: &'static str = "2.1.0.devel\0";
469469
#[cfg(all(not(feature = "zlib-ng"), feature = "zlib-rs"))]
470-
const ZLIB_VERSION: &'static str = "1.3.0-zlib-rs-0.4.2\0";
470+
const ZLIB_VERSION: &'static str = "1.3.0-zlib-rs-0.5.0\0";
471471
#[cfg(not(any(feature = "zlib-ng", feature = "zlib-rs")))]
472472
const ZLIB_VERSION: &'static str = "1.2.8\0";
473473

0 commit comments

Comments
 (0)