12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- [package]
- 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", "bignum"]
- categories = [ "algorithms", "data-structures", "science" ]
- license = "MIT/Apache-2.0"
- repository = "https://github.com/rust-num/num"
- name = "num"
- version = "0.1.41"
- [badges]
- travis-ci = { repository = "rust-num/num" }
- [[bench]]
- name = "bigint"
- [[bench]]
- harness = false
- name = "shootout-pidigits"
- [dependencies]
- [dependencies.num-bigint]
- optional = true
- path = "bigint"
- version = "0.1.41"
- [dependencies.num-complex]
- optional = true
- path = "complex"
- version = "0.1.41"
- [dependencies.num-integer]
- path = "./integer"
- version = "0.1.35"
- [dependencies.num-iter]
- optional = false
- path = "iter"
- version = "0.1.34"
- [dependencies.num-rational]
- optional = true
- path = "rational"
- version = "0.1.40"
- [dependencies.num-traits]
- path = "./traits"
- version = "0.1.41"
- [dev-dependencies]
- [dev-dependencies.rand]
- version = "0.3.8"
- [features]
- bigint = ["num-bigint"]
- complex = ["num-complex"]
- rational = ["num-rational"]
- default = ["bigint", "complex", "rational", "rustc-serialize"]
- serde = [
- "num-bigint/serde",
- "num-complex/serde",
- "num-rational/serde"
- ]
- rustc-serialize = [
- "num-bigint/rustc-serialize",
- "num-complex/rustc-serialize",
- "num-rational/rustc-serialize"
- ]
|