Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "num"
  3. version = "0.1.31"
  4. authors = ["The Rust Project Developers"]
  5. license = "MIT/Apache-2.0"
  6. homepage = "https://github.com/rust-num/num"
  7. repository = "https://github.com/rust-num/num"
  8. documentation = "http://rust-num.github.io/num"
  9. keywords = ["mathematics", "numerics"]
  10. description = """
  11. A collection of numeric types and traits for Rust, including bigint,
  12. complex, rational, range iterators, generic integers, and more!
  13. """
  14. [dependencies]
  15. rand = { version = "0.3.8", optional = true }
  16. rustc-serialize = { version = "0.3.13", optional = true }
  17. serde = { version = "^0.7.0", optional = true }
  18. [dependencies.num-traits]
  19. path = "./traits"
  20. [dependencies.num-integer]
  21. path = "./integer"
  22. [dev-dependencies]
  23. # Some tests of non-rand functionality still use rand because the tests
  24. # themselves are randomized.
  25. rand = { version = "0.3.8" }
  26. [features]
  27. complex = []
  28. rational = []
  29. bigint = []
  30. default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]
  31. [[bench]]
  32. name = "bigint"
  33. [[bench]]
  34. name = "shootout-pidigits"
  35. harness = false