Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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", "bignum"]
  7. categories = [ "algorithms", "data-structures", "science" ]
  8. license = "MIT/Apache-2.0"
  9. repository = "https://github.com/rust-num/num"
  10. name = "num"
  11. version = "0.1.41"
  12. [badges]
  13. travis-ci = { repository = "rust-num/num" }
  14. [[bench]]
  15. name = "bigint"
  16. [[bench]]
  17. harness = false
  18. name = "shootout-pidigits"
  19. [dependencies]
  20. [dependencies.num-bigint]
  21. optional = true
  22. path = "bigint"
  23. version = "0.1.41"
  24. [dependencies.num-complex]
  25. optional = true
  26. path = "complex"
  27. version = "0.1.41"
  28. [dependencies.num-integer]
  29. path = "./integer"
  30. version = "0.1.35"
  31. [dependencies.num-iter]
  32. optional = false
  33. path = "iter"
  34. version = "0.1.34"
  35. [dependencies.num-rational]
  36. optional = true
  37. path = "rational"
  38. version = "0.1.40"
  39. [dependencies.num-traits]
  40. path = "./traits"
  41. version = "0.1.41"
  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", "rational", "rustc-serialize"]
  50. serde = [
  51. "num-bigint/serde",
  52. "num-complex/serde",
  53. "num-rational/serde"
  54. ]
  55. rustc-serialize = [
  56. "num-bigint/rustc-serialize",
  57. "num-complex/rustc-serialize",
  58. "num-rational/rustc-serialize"
  59. ]