From 6c05b2d6db86b3955cc025bc8968f6b23cd8452c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garci=CC=81a?= Date: Fri, 6 Oct 2023 15:02:18 +0200 Subject: [PATCH] Enable AES optimization in ARMv8 --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 000000000..d7945d088 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[target.'cfg(target_arch="aarch64")'] +rustflags = ["--cfg", "aes_armv8"]