Cargo.toml 856 B

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