Cargo.toml 464 B

123456789101112131415161718
  1. [package]
  2. name = "num"
  3. version = "0.1.12"
  4. authors = ["The Rust Project Developers"]
  5. license = "MIT/Apache-2.0"
  6. homepage = "https://github.com/rust-lang/num"
  7. repository = "https://github.com/rust-lang/num"
  8. documentation = "http://doc.rust-lang.org/num"
  9. keywords = ["mathematics", "numerics"]
  10. description = """
  11. Simple numerics. This crate contains basic arbitrary-sized integer,
  12. rational, and complex types.
  13. """
  14. [dependencies]
  15. rustc-serialize = "0.2"
  16. rand = "0.1"