switch to using separate VecBool8/16/32/64
[vector-math.git] / Cargo.toml
index 3cf9665228c5329f13bce7ca7eabc823be897268..858dbd9fb34bdc8b700d562657ce010cf2109851 100644 (file)
@@ -8,6 +8,8 @@ license = "MIT OR Apache-2.0"
 [dependencies]
 half = { version = "1.7.1", optional = true }
 typed-arena = { version = "2.0.1", optional = true }
+core_simd = { version = "0.1.0", git = "https://github.com/rust-lang/stdsimd", optional = true }
+vector-math-proc-macro = { version = "=0.1.0", path = "vector-math-proc-macro" }
 
 [features]
 default = ["f16", "fma"]
@@ -15,3 +17,7 @@ f16 = ["half"]
 fma = ["std"]
 std = []
 ir = ["std", "typed-arena"]
+stdsimd = ["core_simd"]
+
+[workspace]
+members = [".", "vector-math-proc-macro"]