2014-09-16 17:35:35 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
2017-12-19 01:35:41 +00:00
|
|
|
description = "Numeric traits for generic mathematics"
|
|
|
|
documentation = "https://docs.rs/num-traits"
|
|
|
|
homepage = "https://github.com/rust-num/num-traits"
|
|
|
|
keywords = ["mathematics", "numerics"]
|
2018-05-09 00:27:33 +00:00
|
|
|
categories = ["algorithms", "science", "no-std"]
|
2016-03-01 10:47:10 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-12-19 01:35:41 +00:00
|
|
|
repository = "https://github.com/rust-num/num-traits"
|
|
|
|
name = "num-traits"
|
2018-09-13 22:45:58 +00:00
|
|
|
version = "0.2.6"
|
2017-12-19 01:35:41 +00:00
|
|
|
readme = "README.md"
|
2018-05-11 22:50:48 +00:00
|
|
|
build = "build.rs"
|
2018-10-31 10:24:01 +00:00
|
|
|
exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
|
2014-12-23 17:50:53 +00:00
|
|
|
|
2018-05-09 00:27:44 +00:00
|
|
|
[package.metadata.docs.rs]
|
2018-05-11 22:50:48 +00:00
|
|
|
features = ["std"]
|
2018-05-09 00:27:44 +00:00
|
|
|
|
2014-12-23 17:50:53 +00:00
|
|
|
[dependencies]
|
2018-01-31 23:42:55 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["std"]
|
|
|
|
std = []
|
2018-04-09 09:11:21 +00:00
|
|
|
i128 = []
|
2019-05-10 23:42:23 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
autocfg = "0.1.2"
|