X-Git-Url: https://git.libre-soc.org/?p=vector-math.git;a=blobdiff_plain;f=Cargo.toml;h=56ad7be042db2b4c55b8674c5331b15fd177ce2d;hp=d83abb80cfca0f04b88fd26385efe25086c5e0a7;hb=60f7e09b17d800a3e405a91cac7be7db05cacdd6;hpb=ad217eb300ff1d610689c9ebe5b06e94b659a508 diff --git a/Cargo.toml b/Cargo.toml index d83abb8..56ad7be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,9 @@ license = "MIT OR Apache-2.0" 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" } + +[build-dependencies] +vector-math-build-helpers = { version = "=0.1.0", path = "vector-math-build-helpers" } [features] default = ["fma"] @@ -17,8 +19,13 @@ f16 = ["half"] fma = ["std"] std = [] ir = ["std", "typed-arena"] -stdsimd = ["core_simd"] +stdsimd = ["core_simd", "std"] # for `f32::round` and similar +# enable slow tests full_tests = [] +[dev-dependencies] +rug = "1.12.0" +az = "1.1.1" + [workspace] -members = [".", "vector-math-proc-macro"] +members = [".", "vector-math-build-helpers"]