num-bigint-dig/Cargo.toml

61 lines
1.2 KiB
TOML
Raw Normal View History

2014-09-16 10:35:35 -07:00
[package]
authors = ["The Rust Project Developers"]
2016-03-01 11:47:10 +01:00
description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
2015-11-12 18:40:13 -08:00
documentation = "http://rust-num.github.io/num"
2016-03-01 11:47:10 +01:00
homepage = "https://github.com/rust-num/num"
2014-11-21 16:02:57 +11:00
keywords = ["mathematics", "numerics"]
2016-03-01 11:47:10 +01: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 09:50:53 -08:00
[dependencies]
2016-03-01 11:47:10 +01:00
[dependencies.num-bigint]
2016-03-04 12:32:44 +01:00
optional = true
2016-03-01 11:47:10 +01:00
path = "bigint"
2016-02-16 00:19:23 +01:00
2016-03-11 00:55:53 +01:00
[dependencies.num-complex]
optional = false
path = "complex"
2016-02-17 18:51:28 +01:00
[dependencies.num-integer]
path = "./integer"
2016-03-04 12:32:44 +01:00
[dependencies.num-rational]
optional = true
path = "rational"
2016-03-01 11:47:10 +01: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"
[dev-dependencies]
2016-03-01 11:47:10 +01:00
[dev-dependencies.rand]
version = "0.3.8"
2016-03-01 11:47:10 +01:00
[features]
2016-03-04 12:32:44 +01:00
bigint = ["num-bigint"]
2016-03-01 11:47:10 +01:00
complex = []
default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]
2016-03-04 12:32:44 +01:00
rational = ["num-rational"]