Cargo.toml 497 B

1234567891011121314151617181920
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "External iterators for generic mathematics"
  4. documentation = "http://rust-num.github.io/num"
  5. homepage = "https://github.com/rust-num/num"
  6. keywords = ["mathematics", "numerics"]
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/rust-num/num"
  9. name = "num-iter"
  10. version = "0.1.0"
  11. [dependencies]
  12. [dependencies.num-integer]
  13. optional = false
  14. path = "../integer"
  15. [dependencies.num-traits]
  16. optional = false
  17. path = "../traits"