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/Cargo.toml | 11 ++++++----- tokio/src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'tokio') diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index ad56ef02..ae83328e 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio" # - Cargo.toml # - README.md # - Update CHANGELOG.md. -# - Create "v0.3.x" git tag. -version = "0.3.5" +# - Create "v1.0.x" git tag. +version = "1.0.0" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md" -documentation = "https://docs.rs/tokio/0.3.5/tokio/" +documentation = "https://docs.rs/tokio/1.0.0/tokio/" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" description = """ @@ -22,6 +22,7 @@ backed applications. """ categories = ["asynchronous", "network-programming"] keywords = ["io", "async", "non-blocking", "futures"] +publish = false [features] # Include nothing by default @@ -88,7 +89,7 @@ test-util = [] time = [] [dependencies] -tokio-macros = { version = "0.3.0", path = "../tokio-macros", optional = true } +tokio-macros = { version = "1.0.0", path = "../tokio-macros", optional = true } pin-project-lite = "0.2.0" @@ -117,7 +118,7 @@ default-features = false optional = true [dev-dependencies] -tokio-test = { version = "0.3.0", path = "../tokio-test" } +tokio-test = { version = "0.4.0", path = "../tokio-test" } futures = { version = "0.3.0", features = ["async-await"] } proptest = "0.10.0" tempfile = "3.1.0" diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs index 1d510ae8..a48af757 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio/0.3.5")] +#![doc(html_root_url = "https://docs.rs/tokio/1.0.0")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant, -- cgit v1.2.3