blob: 8d88bf4449332602c1c4b4847920d581d0c9bcaa [file] [log] [blame]
Joel Galensona92be9e2020-08-05 11:56:59 -07001[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"]
Haibo Huangfa1e1282020-10-29 19:19:23 -07008license = "MIT OR Apache-2.0"
Joel Galensona92be9e2020-08-05 11:56:59 -07009repository = "https://github.com/rust-num/num-traits"
10name = "num-traits"
Haibo Huangfa1e1282020-10-29 19:19:23 -070011version = "0.2.14"
Joel Galensona92be9e2020-08-05 11:56:59 -070012readme = "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"