11[package ]
22edition = " 2021"
33name = " bzip2"
4- version = " 0.5.2 "
4+ version = " 0.6.0 "
55license = " MIT OR Apache-2.0"
66readme = " README.md"
77keywords = [" bzip" , " encoding" ]
@@ -13,7 +13,7 @@ Bindings to libbzip2 for bzip2 compression and decompression exposed as
1313Reader/Writer streams.
1414"""
1515categories = [" compression" , " api-bindings" ]
16- rust-version = " 1.65 .0" # MSRV
16+ rust-version = " 1.82 .0" # MSRV
1717publish = true
1818
1919[workspace ]
@@ -22,10 +22,10 @@ publish = true
2222bzip2-sys = { version = " 0.1.13" , path = " bzip2-sys" , optional = true }
2323
2424[dependencies .libbz2-rs-sys ]
25- version = " 0.1.3 "
25+ version = " 0.2.1 "
2626# Don't enable the stdio feature for better portability.
2727default-features = false
28- features = [" rust-allocator" , " semver-prefix " ]
28+ features = [" rust-allocator" ]
2929optional = true
3030
3131[dev-dependencies ]
@@ -34,11 +34,9 @@ partial-io = { version = "0.5.4", features = ["quickcheck1"] }
3434quickcheck = " 1.0"
3535
3636[features ]
37- default = [" dep:bzip2-sys" ]
38- # Use the pure rust `libbz2-rs-sys` instead of the C FFI bindings of `bzip2-sys`
39- # The rust bzip2 implementation is always statically linked.
40- libbz2-rs-sys = [" dep:libbz2-rs-sys" , " bzip2-sys?/__disabled" ]
37+ default = [" dep:libbz2-rs-sys" ]
38+ # Use the C bzip2 implementation. This will try to find the bzip2 dynamic library on your system, or build it from source.
39+ bzip2-sys = [" dep:bzip2-sys" ]
4140# Always build `libbz2` from C source, and statically link it.
4241# This flag is only meaningful when `bzip2-sys` is used,
43- # and has no effect when `libbz2-rs-sys` is used as the bzip2 implementation.
4442static = [" bzip2-sys?/static" ]
0 commit comments