From f7c05f740a1d223f39faa57060f6ac5374e424a2 Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Sun, 22 Nov 2020 15:25:59 -0700 Subject: [PATCH] Publicly export simda as 'simd', since it is a library for 'SIMD algebra for Rust' --- amethyst_core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/amethyst_core/src/lib.rs b/amethyst_core/src/lib.rs index e8ba64d3c0..e938df4869 100644 --- a/amethyst_core/src/lib.rs +++ b/amethyst_core/src/lib.rs @@ -21,6 +21,7 @@ pub use approx; pub use nalgebra as math; pub use num_traits as num; pub use shrev; +pub use simba as simd; /// legion ECS reexported with some convenience types. pub mod ecs {