num-traits/bigint/Cargo.toml

40 lines
852 B
TOML
Raw Normal View History

2016-03-01 10:47:10 +00:00
[package]
2016-03-11 09:22:26 +00:00
authors = ["The Rust Project Developers"]
2016-04-10 08:31:11 +00:00
description = "Big integer implementation for Rust"
2016-03-11 09:22:26 +00:00
documentation = "http://rust-num.github.io/num"
homepage = "https://github.com/rust-num/num"
keywords = ["mathematics", "numerics", "bignum"]
categories = [ "algorithms", "data-structures", "science" ]
2016-03-11 09:22:26 +00:00
license = "MIT/Apache-2.0"
2016-03-01 10:47:10 +00:00
name = "num-bigint"
2016-04-11 18:43:07 +00:00
repository = "https://github.com/rust-num/num"
2017-06-09 18:02:16 +00:00
version = "0.1.39"
2016-03-01 10:47:10 +00:00
[dependencies]
[dependencies.num-integer]
path = "../integer"
2016-04-14 07:26:54 +00:00
version = "0.1.32"
2016-03-01 10:47:10 +00:00
[dependencies.num-traits]
path = "../traits"
2016-04-14 07:26:54 +00:00
version = "0.1.32"
2016-03-01 10:47:10 +00:00
[dependencies.rand]
optional = true
version = "0.3.14"
2016-04-11 18:43:07 +00:00
[dependencies.rustc-serialize]
optional = true
version = "0.3.19"
2016-03-01 10:47:10 +00:00
[dependencies.serde]
optional = true
2016-08-15 22:47:32 +00:00
version = ">= 0.7.0, < 0.9.0"
2016-03-04 11:32:44 +00:00
[dev-dependencies.rand]
version = "0.3.14"
2016-03-04 11:32:44 +00:00
[features]
2016-04-11 18:43:07 +00:00
default = ["rand", "rustc-serialize"]