Cargo.toml 449 B

123456789101112131415
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "Integer traits and functions"
  4. documentation = "http://rust-num.github.io/num"
  5. homepage = "https://github.com/rust-num/num"
  6. keywords = ["mathematics", "numerics"]
  7. categories = [ "algorithms", "science" ]
  8. license = "MIT/Apache-2.0"
  9. repository = "https://github.com/rust-num/num"
  10. name = "num-integer"
  11. version = "0.1.35"
  12. [dependencies.num-traits]
  13. path = "../traits"
  14. version = "0.1.32"