Cargo.toml 546 B

123456789101112131415161718192021
  1. [package]
  2. name = "num"
  3. version = "0.1.24"
  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.3.13"
  16. rand = "0.3.8"
  17. [dev-dependencies]
  18. num-macros = { path = "num-macros", version = "0.1.22" }