From b09e7cd417b3b453fd2fb31ebe26cfe9c2191e75 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 1 Apr 2021 09:01:56 +0100 Subject: [PATCH] fix local waker metadata --- .cargo/config.toml | 2 +- local-channel/Cargo.toml | 7 +++---- local-waker/CHANGES.md | 4 ++++ local-waker/Cargo.toml | 1 - 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 77788410..40fe3e57 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] +chk = "hack check --workspace --all-features --tests --examples" lint = "hack --clean-per-run clippy --workspace --tests --examples" -chk = "hack check --workspace --tests --examples" diff --git a/local-channel/Cargo.toml b/local-channel/Cargo.toml index a9d3691e..0ffd3597 100644 --- a/local-channel/Cargo.toml +++ b/local-channel/Cargo.toml @@ -1,16 +1,15 @@ [package] name = "local-channel" -version = "0.1.1" +version = "0.1.2" description = "A non-threadsafe multi-producer, single-consumer, futures-aware, FIFO queue" authors = [ "Nikolay Kim ", "Rob Ede ", ] -edition = "2018" -license = "MIT OR Apache-2.0" repository = "https://github.com/actix/actix-net.git" -documentation = "https://docs.rs/actix-server" keywords = ["channel", "local", "futures"] +license = "MIT OR Apache-2.0" +edition = "2018" [dependencies] futures-core = { version = "0.3.7", default-features = false } diff --git a/local-waker/CHANGES.md b/local-waker/CHANGES.md index edb5aa3e..5caf69ca 100644 --- a/local-waker/CHANGES.md +++ b/local-waker/CHANGES.md @@ -3,5 +3,9 @@ ## Unreleased - 2021-xx-xx +## 0.1.2 - 2021-04-01 +* Fix crate metadata. + + ## 0.1.1 - 2021-03-29 * Move `LocalWaker` to it's own crate. diff --git a/local-waker/Cargo.toml b/local-waker/Cargo.toml index df1f9ab8..af512966 100644 --- a/local-waker/Cargo.toml +++ b/local-waker/Cargo.toml @@ -8,7 +8,6 @@ authors = [ ] keywords = ["waker", "local", "futures", "no-std"] repository = "https://github.com/actix/actix-net.git" -documentation = "https://docs.rs/local-waker" categories = ["asynchronous", "no-std"] license = "MIT OR Apache-2.0" edition = "2018"