Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.32"
  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. [dev-dependencies]
  34. [dev-dependencies.rand]
  35. version = "0.3.8"
  36. [features]
  37. bigint = ["num-bigint"]
  38. complex = ["num-complex"]
  39. rational = ["num-rational"]
  40. default = ["bigint", "complex", "rational", "rustc-serialize"]
  41. serde = [
  42. "num-bigint/serde",
  43. "num-complex/serde",
  44. "num-rational/serde"
  45. ]
  46. rustc-serialize = [
  47. "num-bigint/rustc-serialize",
  48. "num-complex/rustc-serialize",
  49. "num-rational/rustc-serialize"
  50. ]