36 lines
726 B
TOML
36 lines
726 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
description = "Big integer implementation for Rust"
|
|
documentation = "http://rust-num.github.io/num"
|
|
homepage = "https://github.com/rust-num/num"
|
|
keywords = ["mathematics", "numerics"]
|
|
license = "MIT/Apache-2.0"
|
|
name = "num-bigint"
|
|
repository = "https://github.com/rust-num/num"
|
|
version = "0.1.33"
|
|
|
|
[dependencies]
|
|
|
|
[dependencies.num-integer]
|
|
path = "../integer"
|
|
version = "0.1.32"
|
|
|
|
[dependencies.num-traits]
|
|
path = "../traits"
|
|
version = "0.1.32"
|
|
|
|
[dependencies.rand]
|
|
optional = true
|
|
version = "0.3.14"
|
|
|
|
[dependencies.rustc-serialize]
|
|
optional = true
|
|
version = "0.3.19"
|
|
|
|
[dependencies.serde]
|
|
optional = true
|
|
version = "0.7.0"
|
|
|
|
[features]
|
|
default = ["rand", "rustc-serialize"]
|