2014-09-16 10:35:35 -07:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
2017-12-17 15:44:53 -08:00
|
|
|
description = "Big integer implementation for Rust"
|
|
|
|
documentation = "https://docs.rs/num-bigint"
|
|
|
|
homepage = "https://github.com/rust-num/num-bigint"
|
2017-07-10 17:12:20 +01:00
|
|
|
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"
|
2017-12-17 15:44:53 -08:00
|
|
|
name = "num-bigint"
|
|
|
|
repository = "https://github.com/rust-num/num-bigint"
|
2018-02-08 17:32:57 -08:00
|
|
|
version = "0.1.43"
|
2017-12-17 15:44:53 -08:00
|
|
|
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]
|
2015-06-02 14:34:22 +02:00
|
|
|
|
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
|
|
|
|
2017-12-17 15:44:53 -08: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
|
|
|
|
2017-12-17 15:44:53 -08:00
|
|
|
[dependencies.rand]
|
2016-03-04 12:32:44 +01:00
|
|
|
optional = true
|
2018-01-01 12:13:37 +01:00
|
|
|
version = ">= 0.3.14, < 0.5.0"
|
2016-03-04 12:32:44 +01:00
|
|
|
|
2017-12-17 15:44:53 -08:00
|
|
|
[dependencies.rustc-serialize]
|
|
|
|
optional = true
|
|
|
|
version = "0.3.19"
|
2016-03-01 11:47:10 +01:00
|
|
|
|
2017-12-17 15:44:53 -08:00
|
|
|
[dependencies.serde]
|
|
|
|
optional = true
|
|
|
|
version = ">= 0.7.0, < 0.9.0"
|
2016-01-07 16:30:50 -10:00
|
|
|
|
2016-03-01 11:47:10 +01:00
|
|
|
[dev-dependencies.rand]
|
2018-01-01 12:13:37 +01:00
|
|
|
version = ">= 0.3.14, < 0.5.0"
|
2015-06-02 14:34:22 +02:00
|
|
|
|
2016-03-01 11:47:10 +01:00
|
|
|
[features]
|
2017-12-17 15:44:53 -08:00
|
|
|
default = ["rand", "rustc-serialize"]
|