Skip to content

Commit

Permalink
no le it is
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 6, 2024
1 parent a312719 commit 3f9adf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/uv-production-flate2-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name = "uv-production-flate2-backend"
version = "0.1.0"
publish = false

[target.'cfg(not(any(target_arch = "s390x", target_arch = "powerpc64le")))'.dependencies]
[target.'cfg(not(any(target_arch = "s390x", target_arch = "powerpc64")))'.dependencies]
flate2 = { version = "1.0.28", default-features = false, features = ["zlib-ng"] }

[target.'cfg(any(target_arch = "s390x", target_arch = "powerpc64le"))'.dependencies]
[target.'cfg(any(target_arch = "s390x", target_arch = "powerpc64"))'.dependencies]
flate2 = { version = "1.0.28", default-features = false, features = ["rust_backend"] }
2 changes: 1 addition & 1 deletion crates/uv-production-flate2-backend/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! The sole purpose of this crate is to enable one of
//! `flate2/zlib-ng` (on most platforms) or `flate2/rust_backend`
//! (on s390x, powerpc64le, etc. — anywhere libz-ng doesn't build)
//! (on s390x, powerpc64, etc. — anywhere libz-ng doesn't build)
//!
//! See `Cargo.toml`

0 comments on commit 3f9adf7

Please sign in to comment.