num-traits/bigint/Cargo.toml

30 lines
701 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"]
description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
documentation = "http://rust-num.github.io/num"
homepage = "https://github.com/rust-num/num"
keywords = ["mathematics", "numerics"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-num/num"
2016-03-01 10:47:10 +00:00
name = "num-bigint"
version = "0.1.0"
[dependencies]
[dependencies.num-integer]
path = "../integer"
[dependencies.num-traits]
path = "../traits"
[dependencies.rand]
optional = true
version = "0.3.14"
[dependencies.serde]
optional = true
version = "0.7.0"
2016-03-04 11:32:44 +00:00
[features]
default = ["rand"]