From 935688e06a5438cdd626f2e3456f89b83a2585a1 Mon Sep 17 00:00:00 2001 From: bdbai Date: Wed, 1 May 2024 17:01:55 +0800 Subject: [PATCH] Enable avx2 for publish --- .cargo/publish.config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/publish.config.toml b/.cargo/publish.config.toml index e851271..d2d6958 100644 --- a/.cargo/publish.config.toml +++ b/.cargo/publish.config.toml @@ -3,7 +3,7 @@ [target.'cfg(target_arch = "x86_64")'] rustflags = [ "-C", - "target-feature=+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+avx,+aes,+pclmulqdq", + "target-feature=+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+avx,+avx2,+aes,+pclmulqdq", ] [target.'cfg(target_arch = "x86")']