From 4bcd63e5ab60ddbe42c57f8fbdcd173956938905 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Tue, 23 Sep 2014 16:27:05 -0400 Subject: [PATCH] Add a README for num --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..256f223 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# num + +Arbitrary sized numeric types for Rust. + +## Usage + +Add this to your `Cargo.toml`: + +```toml +[dependencies.num] + +git = "https://github.com/rust-lang/num" +``` + +and this to your crate root: + +```rust +extern crate num; +```