Cargo.toml 726 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "Big integer 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-bigint"
  9. repository = "https://github.com/rust-num/num"
  10. version = "0.1.32"
  11. [dependencies]
  12. [dependencies.num-integer]
  13. path = "../integer"
  14. version = "0.1.32"
  15. [dependencies.num-traits]
  16. path = "../traits"
  17. version = "0.1.32"
  18. [dependencies.rand]
  19. optional = true
  20. version = "0.3.14"
  21. [dependencies.rustc-serialize]
  22. optional = true
  23. version = "0.3.19"
  24. [dependencies.serde]
  25. optional = true
  26. version = "0.7.0"
  27. [features]
  28. default = ["rand", "rustc-serialize"]