]> git.proxmox.com Git - rustc.git/blob - src/vendor/num-bigint/Cargo.toml
New upstream version 1.19.0+dfsg1
[rustc.git] / src / vendor / num-bigint / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 description = "Big integer implementation for Rust"
4 documentation = "http://rust-num.github.io/num"
5 homepage = "https://github.com/rust-num/num"
6 keywords = ["mathematics", "numerics"]
7 license = "MIT/Apache-2.0"
8 name = "num-bigint"
9 repository = "https://github.com/rust-num/num"
10 version = "0.1.37"
11
12 [dependencies]
13
14 [dependencies.num-integer]
15 path = "../integer"
16 version = "0.1.32"
17
18 [dependencies.num-traits]
19 path = "../traits"
20 version = "0.1.32"
21
22 [dependencies.rand]
23 optional = true
24 version = "0.3.14"
25
26 [dependencies.rustc-serialize]
27 optional = true
28 version = "0.3.19"
29
30 [dependencies.serde]
31 optional = true
32 version = ">= 0.7.0, < 0.9.0"
33
34 [features]
35 default = ["rand", "rustc-serialize"]