start adding stdsimd support
[vector-math.git] / Cargo.toml
index 3cf9665228c5329f13bce7ca7eabc823be897268..5f82460a1e0c49ffa8d95b64b8d795ac0eec75e5 100644 (file)
@@ -8,6 +8,7 @@ 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 }
 
 [features]
 default = ["f16", "fma"]
@@ -15,3 +16,4 @@ f16 = ["half"]
 fma = ["std"]
 std = []
 ir = ["std", "typed-arena"]
+stdsimd = ["core_simd"]