From c4ba47f5de35c375d3d126b2bda7626c087e337e Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Sun, 9 May 2021 23:27:07 -0700 Subject: [PATCH 1/1] fix build errors with stdsimd --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e1b82f3..bd3fbff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,11 @@ f16 = ["half"] fma = ["std"] std = [] ir = ["std", "typed-arena"] -stdsimd = ["core_simd"] +stdsimd = [ + "core_simd", + # for `f32::round` and similar + "std", +] # enable slow tests full_tests = [] -- 2.30.2