Cargo.toml 577 B

1234567891011121314151617181920212223
  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. categories = [ "algorithms", "science" ]
  8. license = "MIT/Apache-2.0"
  9. repository = "https://github.com/rust-num/num"
  10. name = "num-iter"
  11. version = "0.1.34"
  12. [dependencies]
  13. [dependencies.num-integer]
  14. optional = false
  15. path = "../integer"
  16. version = "0.1.32"
  17. [dependencies.num-traits]
  18. optional = false
  19. path = "../traits"
  20. version = "0.1.32"