From 93477cbfb6272b2f275766fcd285bbebcbbd6168 Mon Sep 17 00:00:00 2001 From: arduano Date: Thu, 26 Mar 2026 09:13:40 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=8E=20release:=20bump=20to=203.0.1=20a?= =?UTF-8?q?nd=20re-expose=20engines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8cda02c..b817238 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simdeez" -version = "3.0.0" +version = "3.0.1" authors = ["Jack Mott ", "Arduano"] description = "SIMD library to abstract over different instruction sets and widths" license = "Apache-2.0/MIT" diff --git a/src/lib.rs b/src/lib.rs index 2061e9d..5cfca42 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -192,7 +192,7 @@ mod libm_ext; pub mod math; pub use math::{SimdMathF32, SimdMathF64}; -mod engines; +pub mod engines; pub use engines::scalar;