From 13093a962ac4ea1a623c08f4ac726842cd422980 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 20 Aug 2019 11:58:21 -0700 Subject: [PATCH] v0.3.0 --- Cargo.toml | 7 ++----- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bde3c55..08597d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,14 @@ [package] name = "want" -version = "0.2.0" # remember to update html_root_url +version = "0.3.0" # remember to update html_root_url description = "Detect when another Future wants a result." -keywords = ["futures", "channel"] +keywords = ["futures", "channel", "async"] authors = ["Sean McArthur "] license = "MIT" repository = "https://github.com/seanmonstar/want" -homepage = "https://github.com/seanmonstar/want" documentation = "https://docs.rs/want" edition = "2018" -publish = false - [dependencies] log = "0.4" try-lock = "0.2" diff --git a/src/lib.rs b/src/lib.rs index 7f7c198..7d83698 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/want/0.2.0")] +#![doc(html_root_url = "https://docs.rs/want/0.3.0")] #![deny(warnings)] #![deny(missing_docs)] #![deny(missing_debug_implementations)]