2014-09-16 17:35:35 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
2016-03-01 10:47:10 +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"
|
|
|
|
name = "num"
|
|
|
|
repository = "https://github.com/rust-num/num"
|
|
|
|
version = "0.1.31"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bigint"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "shootout-pidigits"
|
2014-12-23 17:50:53 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2015-06-02 12:34:22 +00:00
|
|
|
|
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"
|
2016-02-15 23:19:23 +00:00
|
|
|
|
2016-02-17 17:51:28 +00:00
|
|
|
[dependencies.num-integer]
|
|
|
|
path = "./integer"
|
|
|
|
|
2016-03-04 11:32:44 +00:00
|
|
|
[dependencies.num-rational]
|
|
|
|
optional = true
|
|
|
|
path = "rational"
|
|
|
|
|
2016-03-01 10:47:10 +00:00
|
|
|
[dependencies.num-traits]
|
|
|
|
path = "./traits"
|
|
|
|
|
|
|
|
[dependencies.rand]
|
|
|
|
optional = true
|
|
|
|
version = "0.3.8"
|
|
|
|
|
|
|
|
[dependencies.rustc-serialize]
|
|
|
|
optional = true
|
|
|
|
version = "0.3.13"
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
optional = true
|
|
|
|
version = "^0.7.0"
|
|
|
|
|
2016-01-08 02:30:50 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
|
2016-03-01 10:47:10 +00:00
|
|
|
[dev-dependencies.rand]
|
|
|
|
version = "0.3.8"
|
2015-06-02 12:34:22 +00:00
|
|
|
|
2016-03-01 10:47:10 +00:00
|
|
|
[features]
|
2016-03-04 11:32:44 +00:00
|
|
|
bigint = ["num-bigint"]
|
2016-03-01 10:47:10 +00:00
|
|
|
complex = []
|
2016-01-08 02:30:50 +00:00
|
|
|
default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]
|
2016-03-04 11:32:44 +00:00
|
|
|
rational = ["num-rational"]
|