Cargo.toml 612 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "Complex 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-complex"
  9. repository = "https://github.com/rust-num/num"
  10. version = "0.1.0"
  11. [dependencies]
  12. [dependencies.num-traits]
  13. optional = false
  14. path = "../traits"
  15. [dependencies.rustc-serialize]
  16. optional = true
  17. version = "0.3.19"
  18. [dependencies.serde]
  19. optional = true
  20. version = "^0.7.0"
  21. [features]
  22. default = ["rustc-serialize"]
  23. unstable = []