Cargo.toml 852 B

123456789101112131415161718192021222324252627282930313233343536373839
  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", "bignum"]
  7. categories = [ "algorithms", "data-structures", "science" ]
  8. license = "MIT/Apache-2.0"
  9. name = "num-bigint"
  10. repository = "https://github.com/rust-num/num"
  11. version = "0.1.41"
  12. [dependencies]
  13. [dependencies.num-integer]
  14. path = "../integer"
  15. version = "0.1.32"
  16. [dependencies.num-traits]
  17. path = "../traits"
  18. version = "0.1.32"
  19. [dependencies.rand]
  20. optional = true
  21. version = "0.3.14"
  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. [dev-dependencies.rand]
  29. version = "0.3.14"
  30. [features]
  31. default = ["rand", "rustc-serialize"]