1[package]
2authors = ["The Rust Project Developers"]
3description = "Numeric traits for generic mathematics"
4documentation = "https://docs.rs/num-traits"
5homepage = "https://github.com/rust-num/num-traits"
6keywords = ["mathematics", "numerics"]
7categories = ["algorithms", "science", "no-std"]
8license = "MIT OR Apache-2.0"
9repository = "https://github.com/rust-num/num-traits"
10name = "num-traits"
11version = "0.2.14"
12readme = "README.md"
13build = "build.rs"
14exclude = ["/bors.toml", "/ci/*", "/.github/*"]
15
16[package.metadata.docs.rs]
17features = ["std"]
18
19[dependencies]
20libm = { version = "0.2.0", optional = true }
21
22[features]
23default = ["std"]
24std = []
25i128 = []
26
27[build-dependencies]
28autocfg = "1"
29