Cargo.toml 640 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "Rational numbers implementation for Rust"
  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-rational"
  10. version = "0.1.0"
  11. [dependencies]
  12. [dependencies.num-bigint]
  13. optional = true
  14. path = "../bigint"
  15. [dependencies.num-integer]
  16. path = "../integer"
  17. [dependencies.num-traits]
  18. path = "../traits"
  19. [dependencies.serde]
  20. optional = true
  21. version = "0.7.0"
  22. [features]
  23. default = ["bigint"]
  24. bigint = ["num-bigint"]