@@ -18,7 +18,6 @@ Library to support the reading and writing of zip files.
18
18
"""
19
19
edition = " 2021"
20
20
exclude = [" tests/**" , " examples/**" , " .github/**" , " fuzz_read/**" , " fuzz_write/**" ]
21
- build = " src/build.rs"
22
21
23
22
[package .metadata .docs .rs ]
24
23
all-features = true
@@ -51,7 +50,6 @@ zopfli = { version = "0.8", optional = true }
51
50
deflate64 = { version = " 0.1.9" , optional = true }
52
51
lzma-rs = { version = " 0.3" , default-features = false , optional = true }
53
52
xz2 = { version = " 0.1.7" , optional = true }
54
- proc-macro2 = { version = " >=1.0.60" , optional = true } # Override transitive dep on 1.0.59 due to https://github.com/rust-lang/rust/issues/113152
55
53
56
54
[target .'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))' .dependencies ]
57
55
crossbeam-utils = " 0.8.21"
@@ -75,8 +73,6 @@ _deflate-any = []
75
73
_all-features = [] # Detect when --all-features is used
76
74
deflate = [" deflate-zopfli" , " deflate-flate2" ]
77
75
deflate-flate2 = [" _deflate-any" , " flate2/rust_backend" ]
78
- # DEPRECATED: previously enabled `flate2/miniz_oxide` which is equivalent to `flate2/rust_backend`
79
- deflate-miniz = [" deflate" , " deflate-flate2" ]
80
76
deflate-zlib = [" flate2/zlib" , " deflate-flate2" ]
81
77
deflate-zlib-ng = [" flate2/zlib-ng" , " deflate-flate2" ]
82
78
deflate-zopfli = [" zopfli" , " _deflate-any" ]
0 commit comments