add ilogb
[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
12 [features]
13 default = ["f16", "fma"]
14 f16 = ["half"]
15 fma = ["std"]
16 std = []
17 ir = ["std", "typed-arena"]