Cargo.toml 613 B

123456789101112131415161718192021222324
  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.6"
  12. readme = "README.md"
  13. build = "build.rs"
  14. exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
  15. [package.metadata.docs.rs]
  16. features = ["std"]
  17. [dependencies]
  18. [features]
  19. default = ["std"]
  20. std = []
  21. i128 = []