You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-brotli/brotli-fix-metadata.diff

44 lines
1020 B

--- brotli-3.3.3/Cargo.toml 1970-01-01T00:00:01+00:00
+++ brotli-3.3.3/Cargo.toml 2022-01-26T22:42:36.376000+00:00
@@ -22,17 +22,11 @@
keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
license = "BSD-3-Clause/MIT"
repository = "https://github.com/dropbox/rust-brotli"
+exclude = ["/ci/", "/research/", "/.travis.yml", "/appveyor.yml", "uncorrode.py"]
[profile.release]
lto = true
incremental = false
-[[bin]]
-name = "brotli"
-doc = false
-
-[[bin]]
-name = "catbrotli"
-doc = false
[dependencies.alloc-no-stdlib]
version = "2.0"
@@ -44,12 +38,8 @@
version = "~2.3"
default-features = false
-[dependencies.packed_simd_2]
-version = "0.3"
-optional = true
-
[dependencies.sha2]
-version = "~0.8"
+version = "~0.9"
optional = true
[features]
@@ -60,7 +50,6 @@
ffi-api = []
pass-through-ffi-panics = []
seccomp = ["brotli-decompressor/seccomp"]
-simd = ["packed_simd_2/into_bits"]
std = ["alloc-stdlib", "brotli-decompressor/std"]
validation = ["sha2"]
vector_scratch_space = []