Skip to content

Commit

Permalink
aes: remove use of aarch64_target_feature
Browse files Browse the repository at this point in the history
It's been stabilized: rust-lang/rust#90620

Because of that, it's breaking the build on recent nightlies:

https://github.com/RustCrypto/block-ciphers/runs/7968517726?check_suite_focus=true#step:7:103

> error: the feature `aarch64_target_feature` has been stable since
> 1.61.0 and no longer requires an attribute to enable    aes: remove use of `aarch64_target_feature`

It's been stabilized: rust-lang/rust#90620

Because of that, it's breaking the build on recent nightlies:

https://github.com/RustCrypto/block-ciphers/runs/7968517726?check_suite_focus=true#step:7:103

> error: the feature `aarch64_target_feature` has been stable since
> 1.61.0 and no longer requires an attribute to enable
  • Loading branch information
tarcieri committed Aug 25, 2022
1 parent 04c5d46 commit a2dd64f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 7 additions & 2 deletions aes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,22 @@ categories = ["cryptography", "no-std"]
[dependencies]
cfg-if = "1"
cipher = "0.4.2"
zeroize = { version = "1.5.6", optional = true, default_features = false }

[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]
cpufeatures = "0.2"

[target.'cfg(not(all(aes_armv8, target_arch = "aarch64")))'.dependencies]
zeroize = { version = "1.5.6", optional = true, default_features = false }

[target.'cfg(all(aes_armv8, target_arch = "aarch64"))'.dependencies]
zeroize = { version = "1.5.6", optional = true, default_features = false, features = ["aarch64"] }

[dev-dependencies]
cipher = { version = "0.4.2", features = ["dev"] }
hex-literal = "0.3"

[features]
hazmat = [] # Expose cryptographically hazardous APIs
hazmat = [] # Expose cryptographically hazardous APIs

[package.metadata.docs.rs]
all-features = true
Expand Down
6 changes: 2 additions & 4 deletions aes/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,10 @@
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, rust_2018_idioms)]
#![cfg_attr(
all(aes_armv8, target_arch = "aarch64"),
feature(stdsimd, aarch64_target_feature)
)]
#![cfg_attr(all(aes_armv8, target_arch = "aarch64"), feature(stdsimd))]

#[cfg(feature = "hazmat")]
#[cfg_attr(docsrs, doc(cfg(feature = "hazmat")))]
pub mod hazmat;

mod soft;
Expand Down

0 comments on commit a2dd64f

Please sign in to comment.