summaryrefslogtreecommitdiffstats
path: root/tokio
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
parent9706ca92a8deb69d6e29265f21424042fea966c5 (diff)
chore: prepare for Tokio 1.0 work (#3238)
Diffstat (limited to 'tokio')
-rw-r--r--tokio/Cargo.toml11
-rw-r--r--tokio/src/lib.rs2
2 files changed, 7 insertions, 6 deletions
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 <team@tokio.rs>"]
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,