Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. [package]
  2. authors = ["The Rust Project Developers"]
  3. description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
  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. repository = "https://github.com/rust-num/num"
  9. name = "num"
  10. version = "0.1.31"
  11. [[bench]]
  12. name = "bigint"
  13. [[bench]]
  14. harness = false
  15. name = "shootout-pidigits"
  16. [dependencies]
  17. [dependencies.num-bigint]
  18. optional = true
  19. path = "bigint"
  20. [dependencies.num-complex]
  21. optional = true
  22. path = "complex"
  23. [dependencies.num-integer]
  24. path = "./integer"
  25. [dependencies.num-iter]
  26. optional = false
  27. path = "iter"
  28. [dependencies.num-rational]
  29. optional = true
  30. path = "rational"
  31. [dependencies.num-traits]
  32. path = "./traits"
  33. [dependencies.rand]
  34. optional = true
  35. version = "0.3.8"
  36. [dependencies.rustc-serialize]
  37. optional = true
  38. version = "0.3.13"
  39. [dependencies.serde]
  40. optional = true
  41. version = "^0.7.0"
  42. [dev-dependencies]
  43. [dev-dependencies.rand]
  44. version = "0.3.8"
  45. [features]
  46. bigint = ["num-bigint"]
  47. complex = ["num-complex"]
  48. rational = ["num-rational"]
  49. default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]