summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-12-09 09:42:05 -0800
committerGitHub <noreply@github.com>2020-12-09 09:42:05 -0800
commit473ddaa277f51917aeb2fe743b1582685828d6dd (patch)
tree7af80d4c2bfffff4b6f04db875779e2f49f31280 /tokio-util
parent9706ca92a8deb69d6e29265f21424042fea966c5 (diff)
chore: prepare for Tokio 1.0 work (#3238)
Diffstat (limited to 'tokio-util')
-rw-r--r--tokio-util/Cargo.toml11
-rw-r--r--tokio-util/src/lib.rs2
2 files changed, 7 insertions, 6 deletions
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 <team@tokio.rs>"]
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,