16b77e7fd4
Playing with this because it's interesting and I learned about this cool firecracker action. Related #3370
14 lines
494 B
TOML
14 lines
494 B
TOML
[package]
|
|
name = "uv-performance-flate2-backend"
|
|
version = "0.1.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[target.'cfg(not(any(target_arch = "s390x", target_arch = "powerpc64", target_os = "freebsd")))'.dependencies]
|
|
flate2 = { version = "1.0.28", default-features = false, features = ["zlib-ng"] }
|
|
|
|
[target.'cfg(any(target_arch = "s390x", target_arch = "powerpc64", target_os = "freebsd"))'.dependencies]
|
|
flate2 = { version = "1.0.28", default-features = false, features = ["rust_backend"] }
|