From 473ddaa277f51917aeb2fe743b1582685828d6dd Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 9 Dec 2020 09:42:05 -0800 Subject: chore: prepare for Tokio 1.0 work (#3238) --- tokio-util/Cargo.toml | 11 ++++++----- tokio-util/src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'tokio-util') diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 5252063b..f06bc0ba 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -6,8 +6,8 @@ name = "tokio-util" # - Update doc url # - Cargo.toml # - Update CHANGELOG.md. -# - Create "v0.2.x" git tag. -version = "0.5.1" +# - Create "tokio-util-0.6.x" git tag. +version = "0.6.0" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" @@ -18,6 +18,7 @@ description = """ Additional utilities for working with Tokio. """ categories = ["asynchronous"] +publish = false [features] # No features on by default @@ -34,7 +35,7 @@ io = [] rt = ["tokio/rt"] [dependencies] -tokio = { version = "0.3.4", path = "../tokio" } +tokio = { version = "1.0.0", path = "../tokio" } bytes = "0.6.0" futures-core = "0.3.0" @@ -45,8 +46,8 @@ pin-project-lite = "0.2.0" slab = { version = "0.4.1", optional = true } # Backs `DelayQueue` [dev-dependencies] -tokio = { version = "0.3.0", path = "../tokio", features = ["full"] } -tokio-test = { version = "0.3.0", path = "../tokio-test" } +tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } +tokio-test = { version = "0.4.0", path = "../tokio-test" } futures = "0.3.0" futures-test = "0.3.5" diff --git a/tokio-util/src/lib.rs b/tokio-util/src/lib.rs index aba7cfb3..4ae9a13d 100644 --- a/tokio-util/src/lib.rs +++ b/tokio-util/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-util/0.5.1")] +#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.0")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations, -- cgit v1.2.3