num-bigint-dig/Cargo.toml

74 lines
1.5 KiB
TOML
Raw Normal View History

2014-09-16 10:35:35 -07:00
[package]
authors = ["The Rust Project Developers"]
2016-04-11 12:30:16 +02: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"
keywords = ["mathematics", "numerics", "bignum"]
2017-07-11 06:47:15 +01:00
categories = [ "algorithms", "data-structures", "science" ]
2016-03-01 11:47:10 +01:00
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-num/num"
2016-03-11 10:22:26 +01:00
name = "num"
version = "0.1.41"
2016-03-01 11:47:10 +01:00
2017-07-25 00:17:17 +02:00
[badges]
travis-ci = { repository = "rust-num/num" }
2016-03-01 11:47:10 +01:00
[[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"
version = "0.1.41"
2016-02-16 00:19:23 +01:00
2016-03-11 00:55:53 +01:00
[dependencies.num-complex]
2016-03-11 01:05:40 +01:00
optional = true
2016-03-11 00:55:53 +01:00
path = "complex"
version = "0.1.41"
2016-03-11 00:55:53 +01:00
2016-02-17 18:51:28 +01:00
[dependencies.num-integer]
path = "./integer"
2017-07-14 17:42:00 -07:00
version = "0.1.35"
2016-02-17 18:51:28 +01:00
2016-03-11 01:05:40 +01:00
[dependencies.num-iter]
optional = false
path = "iter"
2017-07-14 17:42:00 -07:00
version = "0.1.34"
2016-03-11 01:05:40 +01:00
2016-03-04 12:32:44 +01:00
[dependencies.num-rational]
optional = true
path = "rational"
version = "0.1.40"
2016-03-04 12:32:44 +01:00
2016-03-01 11:47:10 +01:00
[dependencies.num-traits]
path = "./traits"
version = "0.1.41"
2016-03-01 11:47:10 +01:00
[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-11 01:05:40 +01:00
complex = ["num-complex"]
2016-03-04 12:32:44 +01:00
rational = ["num-rational"]
2016-04-11 20:43:07 +02: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"
]