Cargo.toml 920 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "num"
  3. version = "0.1.29"
  4. authors = ["The Rust Project Developers"]
  5. license = "MIT/Apache-2.0"
  6. homepage = "https://github.com/rust-num/num"
  7. repository = "https://github.com/rust-num/num"
  8. documentation = "http://rust-num.github.io/num"
  9. keywords = ["mathematics", "numerics"]
  10. description = """
  11. A collection of numeric types and traits for Rust, including bigint,
  12. complex, rational, range iterators, generic integers, and more!
  13. """
  14. [dependencies]
  15. rustc-serialize = { version = "0.3.13", optional = true }
  16. rand = { version = "0.3.8", optional = true }
  17. [dev-dependencies]
  18. # Some tests of non-rand functionality still use rand because the tests
  19. # themselves are randomized.
  20. rand = { version = "0.3.8" }
  21. [features]
  22. complex = []
  23. rational = []
  24. bigint = []
  25. default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]
  26. [[bench]]
  27. name = "bigint"
  28. [[bench]]
  29. name = "shootout-pidigits"
  30. harness = false