Cargo.toml 545 B

12345678910111213141516171819202122
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "Numeric traits for generic mathematics"
  4. documentation = "https://docs.rs/num-traits"
  5. homepage = "https://github.com/rust-num/num-traits"
  6. keywords = ["mathematics", "numerics"]
  7. categories = ["algorithms", "science", "no-std"]
  8. license = "MIT/Apache-2.0"
  9. repository = "https://github.com/rust-num/num-traits"
  10. name = "num-traits"
  11. version = "0.2.2"
  12. readme = "README.md"
  13. [package.metadata.docs.rs]
  14. all-features = true
  15. [dependencies]
  16. [features]
  17. default = ["std"]
  18. std = []
  19. i128 = []