num 0.1.9

Simple numerics. This crate contains basic arbitrary-sized integer, rational, and complex types.
# num

Arbitrary sized numeric types for Rust.

[Documentation](http://doc.rust-lang.org/num)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]
num = "*"
```

and this to your crate root:

```rust
extern crate num;
```