Merge pull request #58 from zip-rs/oldpr429
feat: Switch to pure-Rust versions of bzip and zstd in order to pass static compiles
This commit is contained in:
commit
f44ec4e513
1 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ time = { version = "0.3.36", default-features = false }
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = { version = "0.8.4", optional = true }
|
aes = { version = "0.8.4", optional = true }
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
bzip2 = { version = "0.4.4", optional = true }
|
bzip2-rs = { version = "0.1.2", optional = true }
|
||||||
chrono = { version = "0.4.38", optional = true }
|
chrono = { version = "0.4.38", optional = true }
|
||||||
constant_time_eq = { version = "0.3.0", optional = true }
|
constant_time_eq = { version = "0.3.0", optional = true }
|
||||||
crc32fast = "1.4.0"
|
crc32fast = "1.4.0"
|
||||||
|
@ -38,7 +38,7 @@ time = { workspace = true, optional = true, features = [
|
||||||
zstd = { version = "0.13.1", optional = true, default-features = false }
|
zstd = { version = "0.13.1", optional = true, default-features = false }
|
||||||
zopfli = { version = "0.8.0", optional = true }
|
zopfli = { version = "0.8.0", optional = true }
|
||||||
deflate64 = { version = "0.1.8", optional = true }
|
deflate64 = { version = "0.1.8", optional = true }
|
||||||
lzma-rs = { version = "0.3.0", optional = true }
|
lzma-rs = { version = "0.3.0", default-features = false, optional = true }
|
||||||
|
|
||||||
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
||||||
crossbeam-utils = "0.8.19"
|
crossbeam-utils = "0.8.19"
|
||||||
|
@ -68,7 +68,7 @@ lzma = ["lzma-rs/stream"]
|
||||||
unreserved = []
|
unreserved = []
|
||||||
default = [
|
default = [
|
||||||
"aes-crypto",
|
"aes-crypto",
|
||||||
"bzip2",
|
"bzip2-rs",
|
||||||
"deflate",
|
"deflate",
|
||||||
"deflate64",
|
"deflate64",
|
||||||
"deflate-zlib-ng",
|
"deflate-zlib-ng",
|
||||||
|
|
Loading…
Add table
Reference in a new issue