add sin_pi_f16, cos_pi_f16, and sin_cos_pi_f16
[vector-math.git] / Cargo.toml
index 02c3dcd85f54fd19301f1a3af660f249b39c3f3b..d83abb80cfca0f04b88fd26385efe25086c5e0a7 100644 (file)
@@ -7,7 +7,18 @@ 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"]
+default = ["fma"]
 f16 = ["half"]
+fma = ["std"]
+std = []
+ir = ["std", "typed-arena"]
+stdsimd = ["core_simd"]
+full_tests = []
+
+[workspace]
+members = [".", "vector-math-proc-macro"]