Cargo.toml 688 B

123456789101112131415161718192021222324252627282930313233
  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. [dependencies.num-traits]
  15. path = "../traits"
  16. [dependencies.rand]
  17. optional = true
  18. version = "0.3.14"
  19. [dependencies.rustc-serialize]
  20. optional = true
  21. version = "0.3.19"
  22. [dependencies.serde]
  23. optional = true
  24. version = "0.7.0"
  25. [features]
  26. default = ["rand", "rustc-serialize"]