Cargo.toml 732 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "num"
  3. version = "0.1.27"
  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. Simple numerics. This crate contains basic arbitrary-sized integer,
  12. rational, and complex types.
  13. """
  14. [dependencies]
  15. rustc-serialize = { version = "0.3.13", optional = true }
  16. rand = { version = "0.3.8", optional = true }
  17. [features]
  18. complex = []
  19. rational = []
  20. bigint = ["rustc-serialize", "rand"]
  21. default = ["complex", "rational", "bigint"]
  22. [[bench]]
  23. name = "bigint"
  24. [[bench]]
  25. name = "shootout-pidigits"
  26. harness = false