summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
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,