From 7fa80f7786cc78d50b1fc6b5b86fbfb230416e1e Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sat, 21 Nov 2015 16:39:00 -0800 Subject: [PATCH] Update intros to better reflect the breadth of num Closes #132. --- Cargo.toml | 4 ++-- README.md | 8 ++++++-- src/lib.rs | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0cfde4b..0e2d2e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,8 @@ repository = "https://github.com/rust-num/num" documentation = "http://rust-num.github.io/num" keywords = ["mathematics", "numerics"] description = """ -Simple numerics. This crate contains basic arbitrary-sized integer, -rational, and complex types. +A collection of numeric types and traits for Rust, including bigint, +complex, rational, range iterators, generic integers, and more! """ [dependencies] diff --git a/README.md b/README.md index 516709d..e615cce 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # 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) @@ -10,7 +14,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -num = "*" +num = "0.1" ``` and this to your crate root: diff --git a/src/lib.rs b/src/lib.rs index fbdf8c1..ea90782 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,9 +8,11 @@ // option. This file may not be copied, modified, or distributed // 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 //!