add ceil and floor
[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 vector-math-proc-macro = { version = "=0.1.0", path = "vector-math-proc-macro" }
13
14 [features]
15 default = ["fma"]
16 f16 = ["half"]
17 fma = ["std"]
18 std = []
19 ir = ["std", "typed-arena"]
20 stdsimd = ["core_simd", "std"] # for `f32::round` and similar
21 # enable slow tests
22 full_tests = []
23
24 [dev-dependencies]
25 rug = "1.12.0"
26 az = "1.1.1"
27
28 [workspace]
29 members = [".", "vector-math-proc-macro"]