03db5c9d1b
This commit brings in a load of unstable and/or deprecated traits from the `std::num` module. These traits provide for some degree of generic programming over numeric types. They are not stable in `std` mostly because we want more time to iterate on their design. Moving them to the `num` crate allows existing code to keep using this functionality as we do so. Closes #74 |
||
---|---|---|
benches | ||
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md |
README.md
num
Arbitrary sized numeric types for Rust.
Usage
Add this to your Cargo.toml
:
[dependencies]
num = "*"
and this to your crate root:
extern crate num;