num-traits/Cargo.toml

70 lines
1.4 KiB
TOML
Raw Normal View History

2014-09-16 17:35:35 +00:00
[package]
authors = ["The Rust Project Developers"]
2016-04-11 10:30:16 +00:00
description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
2015-11-13 02:40:13 +00:00
documentation = "http://rust-num.github.io/num"
2016-03-01 10:47:10 +00:00
homepage = "https://github.com/rust-num/num"
2014-11-21 05:02:57 +00:00
keywords = ["mathematics", "numerics"]
2016-03-01 10:47:10 +00:00
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-num/num"
2016-03-11 09:22:26 +00:00
name = "num"
2017-06-09 18:03:50 +00:00
version = "0.1.39"
2016-03-01 10:47:10 +00:00
[[bench]]
name = "bigint"
[[bench]]
harness = false
name = "shootout-pidigits"
2014-12-23 17:50:53 +00:00
[dependencies]
2016-03-01 10:47:10 +00:00
[dependencies.num-bigint]
2016-03-04 11:32:44 +00:00
optional = true
2016-03-01 10:47:10 +00:00
path = "bigint"
2017-06-09 18:03:50 +00:00
version = "0.1.39"
2016-02-15 23:19:23 +00:00
2016-03-10 23:55:53 +00:00
[dependencies.num-complex]
2016-03-11 00:05:40 +00:00
optional = true
2016-03-10 23:55:53 +00:00
path = "complex"
2017-06-09 06:53:47 +00:00
version = "0.1.38"
2016-03-10 23:55:53 +00:00
2016-02-17 17:51:28 +00:00
[dependencies.num-integer]
path = "./integer"
2017-06-09 06:53:47 +00:00
version = "0.1.34"
2016-02-17 17:51:28 +00:00
2016-03-11 00:05:40 +00:00
[dependencies.num-iter]
optional = false
path = "iter"
2017-02-26 22:18:33 +00:00
version = "0.1.33"
2016-03-11 00:05:40 +00:00
2016-03-04 11:32:44 +00:00
[dependencies.num-rational]
optional = true
path = "rational"
2017-06-09 18:03:50 +00:00
version = "0.1.38"
2016-03-04 11:32:44 +00:00
2016-03-01 10:47:10 +00:00
[dependencies.num-traits]
path = "./traits"
2017-06-09 18:03:50 +00:00
version = "0.1.39"
2016-03-01 10:47:10 +00:00
[dev-dependencies]
2016-03-01 10:47:10 +00:00
[dev-dependencies.rand]
version = "0.3.8"
2016-03-01 10:47:10 +00:00
[features]
2016-03-04 11:32:44 +00:00
bigint = ["num-bigint"]
2016-03-11 00:05:40 +00:00
complex = ["num-complex"]
2016-03-04 11:32:44 +00:00
rational = ["num-rational"]
2016-04-11 18:43:07 +00:00
default = ["bigint", "complex", "rational", "rustc-serialize"]
serde = [
"num-bigint/serde",
"num-complex/serde",
"num-rational/serde"
]
rustc-serialize = [
"num-bigint/rustc-serialize",
"num-complex/rustc-serialize",
"num-rational/rustc-serialize"
]