Skip to content

Commit ac4d950

Browse files
authored
Merge pull request #490 from folkertdev/update-zlib-rs-0.5.1
upgrade zlib-rs to version `0.5.1`
2 parents 76cc0cc + e38e16f commit ac4d950

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
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.1"
4+
version = "1.1.2"
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.5.0", optional = true, default-features = false, features = ["std", "rust-allocator"] }
25+
libz-rs-sys = { version = "0.5.1", 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ mod c_backend {
468468
#[cfg(feature = "zlib-ng")]
469469
const ZLIB_VERSION: &str = "2.1.0.devel\0";
470470
#[cfg(all(not(feature = "zlib-ng"), feature = "zlib-rs"))]
471-
const ZLIB_VERSION: &str = "1.3.0-zlib-rs-0.5.0\0";
471+
const ZLIB_VERSION: &str = "1.3.0-zlib-rs-0.5.1\0";
472472
#[cfg(not(any(feature = "zlib-ng", feature = "zlib-rs")))]
473473
const ZLIB_VERSION: &str = "1.2.8\0";
474474

0 commit comments

Comments
 (0)