1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Index: zlib-rs/Cargo.toml
===================================================================
--- zlib-rs.orig/Cargo.toml
+++ zlib-rs/Cargo.toml
@@ -28,10 +28,6 @@ license = "Zlib"
repository = "https://github.com/trifectatechfoundation/zlib-rs"
[features]
-ZLIB_DEBUG = []
-__internal-fuzz = ["arbitrary"]
-__internal-fuzz-disable-checksum = []
-__internal-test = ["quickcheck"]
c-allocator = []
default = [
"std",
@@ -44,17 +40,6 @@ std = ["rust-allocator"]
name = "zlib_rs"
path = "src/lib.rs"
-[dependencies.arbitrary]
-version = "1.0"
-features = ["derive"]
-optional = true
-
-[dependencies.quickcheck]
-version = "1.0.3"
-features = []
-optional = true
-default-features = false
-
[dev-dependencies.crc32fast]
version = "1.3.2"
|