Go to file
Alex Crichton c0df55e470 Merge pull request #30 from gifnksm/master
Add numeric functions and traits that provide numeric traits for generic mathematics.
2014-11-17 10:25:35 -06:00
benches std::from_str::FromStr -> std::str::FromStr 2014-11-17 22:38:12 +09:00
src std::from_str::FromStr -> std::str::FromStr 2014-11-17 22:38:12 +09:00
.gitignore Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
.travis.yml Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
Cargo.toml Remove `plugin = true` from cargo manifest 2014-09-16 11:21:07 -07:00
LICENSE-APACHE Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
LICENSE-MIT Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
README.md Add a README for num 2014-09-23 16:27:05 -04:00

README.md

num

Arbitrary sized numeric types for Rust.

Usage

Add this to your Cargo.toml:

[dependencies.num]

git = "https://github.com/rust-lang/num"

and this to your crate root:

extern crate num;