Go to file
root 4c123a9e71 Make rustc-serialize, bignum, rational, complex into opt-out features
Making bignum optional allows skipping the rustc-serialize and rand
dependencies too, and it makes a big difference in num's build time.

With default (all) features, clean build time including dependencies: 27
seconds.

With no default features, clean build time including dependencies (none):
5 seconds.
2015-06-02 23:48:06 +02:00
benches Don't print to stdout on `cargo bench` 2015-05-26 07:21:12 -07:00
num-macros Bump to 0.1.25 2015-05-26 07:35:37 -07:00
src Make rustc-serialize, bignum, rational, complex into opt-out features 2015-06-02 23:48:06 +02:00
.gitignore Update num-macros to Rust master 2015-05-14 10:19:47 -07:00
.travis.yml Make rustc-serialize, bignum, rational, complex into opt-out features 2015-06-02 23:48:06 +02:00
Cargo.toml Make rustc-serialize, bignum, rational, complex into opt-out features 2015-06-02 23:48:06 +02: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;