Skip to content

Commit cbe3af9

Browse files
committed
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
1 parent ca6a657 commit cbe3af9

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aes/src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,7 @@
120120
)]
121121
#![cfg_attr(docsrs, feature(doc_cfg))]
122122
#![warn(missing_docs, rust_2018_idioms)]
123-
#![cfg_attr(
124-
all(aes_armv8, target_arch = "aarch64"),
125-
feature(stdsimd, aarch64_target_feature)
126-
)]
123+
#![cfg_attr(all(aes_armv8, target_arch = "aarch64"), feature(stdsimd))]
127124

128125
#[cfg(feature = "hazmat")]
129126
pub mod hazmat;

0 commit comments

Comments
 (0)