diff --git a/Cargo.toml b/Cargo.toml index ae178e8..0d7afbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libflate" -version = "2.0.0" +version = "2.1.0" authors = ["Takeru Ohta "] description = "A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)" homepage = "https://github.com/sile/libflate" @@ -18,7 +18,7 @@ coveralls = {repository = "sile/libflate"} adler32 = { version = "1", default-features = false } crc32fast = { version = "1.1.1", default-features = false } dary_heap = "0.3.5" -libflate_lz77 = { path = "libflate_lz77", version = "2.0.0", default-features = false } +libflate_lz77 = { path = "libflate_lz77", version = "2.1.0", default-features = false } core2 = { version = "0.4", default-features = false, features = ["alloc"] } [features] diff --git a/libflate_lz77/Cargo.toml b/libflate_lz77/Cargo.toml index a7095b3..7094b13 100644 --- a/libflate_lz77/Cargo.toml +++ b/libflate_lz77/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libflate_lz77" -version = "2.0.0" +version = "2.1.0" authors = ["Takeru Ohta "] edition = "2021" description = "LZ77 encoder for libflate crate"