X-Git-Url: https://git.libre-soc.org/?p=vector-math.git;a=blobdiff_plain;f=Cargo.toml;h=858dbd9fb34bdc8b700d562657ce010cf2109851;hp=3cf9665228c5329f13bce7ca7eabc823be897268;hb=734beaf5e96afe7abd0bee1913f4057519f604de;hpb=7975aa9639f3a5a702b130a7cf992ffe71c86e2a diff --git a/Cargo.toml b/Cargo.toml index 3cf9665..858dbd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]