version 0.0.1

This commit is contained in:
Trevor Spiteri 2018-08-09 20:29:59 +02:00
parent e9c96a6ee6
commit ae43a24fae
2 changed files with 3 additions and 2 deletions

View File

@ -7,13 +7,14 @@
[package]
name = "fixed"
version = "0.0.0"
version = "0.0.1"
authors = ["Trevor Spiteri <tspiteri@ieee.org>"]
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]

View File

@ -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;