summaryrefslogtreecommitdiffstats
path: root/tokio-test
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-test
parent9706ca92a8deb69d6e29265f21424042fea966c5 (diff)
chore: prepare for Tokio 1.0 work (#3238)
Diffstat (limited to 'tokio-test')
-rw-r--r--tokio-test/Cargo.toml11
-rw-r--r--tokio-test/src/lib.rs2
2 files changed, 7 insertions, 6 deletions
diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml
index 3f8e22f0..79553c87 100644
--- a/tokio-test/Cargo.toml
+++ b/tokio-test/Cargo.toml
@@ -6,27 +6,28 @@ name = "tokio-test"
# - Update doc url
# - Cargo.toml
# - Update CHANGELOG.md.
-# - Create "v0.3.x" git tag.
-version = "0.3.0"
+# - Create "tokio-test-0.4.x" git tag.
+version = "0.4.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-test/0.3.0/tokio_test"
+documentation = "https://docs.rs/tokio-test/0.4.0/tokio_test"
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
+publish = false
[dependencies]
-tokio = { version = "0.3.0", path = "../tokio", features = ["rt", "stream", "sync", "time", "test-util"] }
+tokio = { version = "1.0.0", path = "../tokio", features = ["rt", "stream", "sync", "time", "test-util"] }
bytes = "0.6.0"
futures-core = "0.3.0"
[dev-dependencies]
-tokio = { version = "0.3.0", path = "../tokio", features = ["full"] }
+tokio = { version = "1.0.0", path = "../tokio", features = ["full"] }
futures-util = "0.3.0"
[package.metadata.docs.rs]
diff --git a/tokio-test/src/lib.rs b/tokio-test/src/lib.rs
index a20d0acd..47e2b03c 100644
--- a/tokio-test/src/lib.rs
+++ b/tokio-test/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-test/0.3.0")]
+#![doc(html_root_url = "https://docs.rs/tokio-test/0.4.0")]
#![warn(
missing_debug_implementations,
missing_docs,