Go to file
Alex Crichton e4135528e8 Merge pull request #46 from jbcrail/fix-deprecated-int
Replace deprecated int references with i32/isize.
2015-01-12 11:02:34 -06:00
benches Replace deprecated int references with i32/isize. 2015-01-11 23:51:02 -05:00
src s/bigusize/biguint/ 2015-01-09 13:54:32 -08:00
.gitignore Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
.travis.yml Update travis config 2015-01-01 22:09:50 -08:00
Cargo.toml Bump to 0.1.8 2015-01-09 14:02:01 -08: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 Update documentation links 2014-12-23 09:54:56 -08:00

README.md

num

Arbitrary sized numeric types for Rust.

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
num = "*"

and this to your crate root:

extern crate num;