num-bigint-dig/Cargo.toml

52 lines
1.0 KiB
TOML
Raw Normal View History

2014-09-16 10:35:35 -07:00
[package]
authors = ["The Rust Project Developers"]
description = "Big integer implementation for Rust"
documentation = "https://docs.rs/num-bigint"
homepage = "https://github.com/rust-num/num-bigint"
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"
name = "num-bigint"
repository = "https://github.com/rust-num/num-bigint"
2018-02-08 17:32:57 -08:00
version = "0.1.43"
readme = "README.md"
2014-12-23 09:50:53 -08:00
2017-12-18 17:29:34 -08:00
[[bench]]
name = "bigint"
2018-02-07 21:56:28 -08:00
[[bench]]
name = "gcd"
2017-12-18 17:29:34 -08:00
[[bench]]
harness = false
name = "shootout-pidigits"
2014-12-23 09:50:53 -08:00
[dependencies]
2016-02-17 18:51:28 +01:00
[dependencies.num-integer]
2018-02-07 22:42:51 -08:00
version = "0.1.36"
default-features = false
2016-02-17 18:51:28 +01:00
[dependencies.num-traits]
2018-02-07 22:42:51 -08:00
version = "0.2.0"
default-features = false
features = ["std"]
2016-03-11 01:05:40 +01:00
[dependencies.rand]
2016-03-04 12:32:44 +01:00
optional = true
version = ">= 0.3.14, < 0.5.0"
2016-03-04 12:32:44 +01:00
[dependencies.rustc-serialize]
optional = true
version = "0.3.19"
2016-03-01 11:47:10 +01:00
[dependencies.serde]
optional = true
version = ">= 0.7.0, < 0.9.0"
2016-03-01 11:47:10 +01:00
[dev-dependencies.rand]
version = ">= 0.3.14, < 0.5.0"
2016-03-01 11:47:10 +01:00
[features]
default = ["rand", "rustc-serialize"]