From: Jacob Lifshay Date: Mon, 10 May 2021 06:27:07 +0000 (-0700) Subject: fix build errors with stdsimd X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4ba47f5de35c375d3d126b2bda7626c087e337e;p=vector-math.git fix build errors with stdsimd --- 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 = []