Cargo.toml 796 B

12345678910111213141516171819202122232425262728293031323334353637
  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. name = "num-rational"
  9. repository = "https://github.com/rust-num/num"
  10. version = "0.1.36"
  11. [dependencies]
  12. [dependencies.num-bigint]
  13. optional = true
  14. path = "../bigint"
  15. version = "0.1.32"
  16. [dependencies.num-integer]
  17. path = "../integer"
  18. version = "0.1.32"
  19. [dependencies.num-traits]
  20. path = "../traits"
  21. version = "0.1.32"
  22. [dependencies.rustc-serialize]
  23. optional = true
  24. version = "0.3.19"
  25. [dependencies.serde]
  26. optional = true
  27. version = ">= 0.7.0, < 0.9.0"
  28. [features]
  29. default = ["bigint", "rustc-serialize"]
  30. bigint = ["num-bigint"]