Cargo.toml 780 B

1234567891011121314151617181920212223242526272829303132
  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 OR Apache-2.0"
  9. repository = "https://github.com/rust-num/num-traits"
  10. name = "num-traits"
  11. version = "0.2.15"
  12. readme = "README.md"
  13. build = "build.rs"
  14. exclude = ["/bors.toml", "/ci/*", "/.github/*"]
  15. edition = "2018"
  16. rust-version = "1.31"
  17. [package.metadata.docs.rs]
  18. features = ["std"]
  19. [dependencies]
  20. libm = { version = "0.2.0", optional = true }
  21. [features]
  22. default = ["std"]
  23. std = []
  24. # vestigial features, now always in effect
  25. i128 = []
  26. [build-dependencies]
  27. autocfg = "1"