start adding stdsimd support
[vector-math.git] / Cargo.toml
1 [package]
2 name = "vector-math"
3 version = "0.1.0"
4 authors = ["Jacob Lifshay <programmerjake@gmail.com>"]
5 edition = "2018"
6 license = "MIT OR Apache-2.0"
7
8 [dependencies]
9 half = { version = "1.7.1", optional = true }
10 typed-arena = { version = "2.0.1", optional = true }
11 core_simd = { version = "0.1.0", git = "https://github.com/rust-lang/stdsimd", optional = true }
12
13 [features]
14 default = ["f16", "fma"]
15 f16 = ["half"]
16 fma = ["std"]
17 std = []
18 ir = ["std", "typed-arena"]
19 stdsimd = ["core_simd"]