Cargo.toml 968 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. [dev-dependencies]
  19. # Some tests of non-rand functionality still use rand because the tests
  20. # themselves are randomized.
  21. rand = { version = "0.3.8" }
  22. [features]
  23. complex = []
  24. rational = []
  25. bigint = []
  26. default = ["bigint", "complex", "rand", "rational", "rustc-serialize"]
  27. [[bench]]
  28. name = "bigint"
  29. [[bench]]
  30. name = "shootout-pidigits"
  31. harness = false