From 89781143d5e187ea8f123f240ba3721b8207ac26 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 6 Dec 2023 14:18:03 +0100 Subject: [PATCH] We don't need softaes if we are targeting aarch64+aes --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d4d7828..bd66587 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/jedisct1/rust-aegis" categories = ["no-std", "cryptography"] readme = "README.md" -[target."cfg(not(any(all(target_arch = \"x86_64\", target_feature = \"aes\"),all(target_arch = \"x86\", target_feature = \"aes\"))))".dependencies.softaes] +[target."cfg(not(any(all(target_arch = \"aarch64\", target_feature = \"aes\"),all(target_arch = \"x86_64\", target_feature = \"aes\"),all(target_arch = \"x86\", target_feature = \"aes\"))))".dependencies.softaes] version = "0.1" [target.'cfg(not(pure_rust))'.build-dependencies]