Update intros to better reflect the breadth of num

Closes #132.
This commit is contained in:
Josh Stone 2015-11-21 16:39:00 -08:00
parent 4003fd265b
commit 7fa80f7786
3 changed files with 12 additions and 6 deletions

View File

@ -9,8 +9,8 @@ repository = "https://github.com/rust-num/num"
documentation = "http://rust-num.github.io/num" documentation = "http://rust-num.github.io/num"
keywords = ["mathematics", "numerics"] keywords = ["mathematics", "numerics"]
description = """ description = """
Simple numerics. This crate contains basic arbitrary-sized integer, A collection of numeric types and traits for Rust, including bigint,
rational, and complex types. complex, rational, range iterators, generic integers, and more!
""" """
[dependencies] [dependencies]

View File

@ -1,6 +1,10 @@
# num # num
Arbitrary sized numeric types for Rust. 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.
[Documentation](http://rust-num.github.io/num) [Documentation](http://rust-num.github.io/num)
@ -10,7 +14,7 @@ Add this to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
num = "*" num = "0.1"
``` ```
and this to your crate root: and this to your crate root:

View File

@ -8,9 +8,11 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
//! Simple numerics. //! A collection of numeric types and traits for Rust.
//! //!
//! This crate contains arbitrary-sized integer, rational, and complex types. //! 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.
//! //!
//! ## Example //! ## Example
//! //!