From ae43a24fae1350f316755c0fd3a7a251d9588734 Mon Sep 17 00:00:00 2001 From: Trevor Spiteri Date: Thu, 9 Aug 2018 20:29:59 +0200 Subject: [PATCH] version 0.0.1 --- Cargo.toml | 3 ++- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c6d1af8..0262064 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,13 +7,14 @@ [package] name = "fixed" -version = "0.0.0" +version = "0.0.1" authors = ["Trevor Spiteri "] description = "Fixed-point numbers" documentation = "https://docs.rs/fixed" repository = "https://gitlab.com/tspiteri/fixed" readme = "README.md" keywords = ["mathematics", "numerics"] +categories = ["algorithms", "data-structures", "science"] license = "MIT/Apache-2.0" [dependencies] diff --git a/src/lib.rs b/src/lib.rs index 5a1242b..fcb4e56 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ Coming soon (waiting on [const generics]). [const generics]: https://github.com/rust-lang/rust/issues/44580 */ #![warn(missing_docs)] -#![doc(html_root_url = "https://docs.rs/rug/0.0.0")] +#![doc(html_root_url = "https://docs.rs/rug/0.0.1")] #![doc(test(attr(deny(warnings))))] mod display;