Files
uv/crates/uv-performance-flate2-backend/Cargo.toml
T
Zanie Blue 16b77e7fd4 Add a FreeBSD build to CI (#8269)
Playing with this because it's interesting and I learned about this cool
firecracker action.

Related #3370
2024-10-17 15:24:21 +00:00

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"] }