|  | 8 anos atrás | |
|---|---|---|
| benches | 9 anos atrás | |
| bigint | 8 anos atrás | |
| ci | 8 anos atrás | |
| complex | 8 anos atrás | |
| derive | 8 anos atrás | |
| doc | 10 anos atrás | |
| integer | 8 anos atrás | |
| iter | 8 anos atrás | |
| macros | 8 anos atrás | |
| rational | 8 anos atrás | |
| src | 8 anos atrás | |
| traits | 8 anos atrás | |
| .gitignore | 10 anos atrás | |
| .travis.yml | 8 anos atrás | |
| Cargo.toml | 8 anos atrás | |
| LICENSE-APACHE | 11 anos atrás | |
| LICENSE-MIT | 11 anos atrás | |
| README.md | 8 anos atrás | |
| bors.toml | 8 anos atrás | 
A collection of numeric types and traits for Rust.
This includes new types for big integers, rationals, and complex numbers,
new traits for generic programming on numeric properties like Integer,
and generic range iterators.
Add this to your Cargo.toml:
[dependencies]
num = "0.1"
and this to your crate root:
extern crate num;
Most of the num crates are tested for rustc 1.8 and greater.
The exceptions are num-derive which requires at least rustc 1.15,
and the deprecated num-macros which requires nightly rustc.