From ed6f452294fc296eee1f0e1896eaa7904ebfab94 Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Thu, 13 Jun 2024 06:28:59 -0400 Subject: [PATCH] fix(field): reenable alloc for tests (#1601) --- field/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/field/src/lib.rs b/field/src/lib.rs index e21f0424..c713db88 100644 --- a/field/src/lib.rs +++ b/field/src/lib.rs @@ -6,7 +6,7 @@ #![feature(specialization)] #![cfg_attr(target_arch = "x86_64", feature(stdarch_x86_avx512))] #![cfg_attr(not(test), no_std)] -#![cfg(not(test))] + extern crate alloc; pub(crate) mod arch;