summaryrefslogtreecommitdiffstats
path: root/tokio-macros
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-macros
parent9706ca92a8deb69d6e29265f21424042fea966c5 (diff)
chore: prepare for Tokio 1.0 work (#3238)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/Cargo.toml7
-rw-r--r--tokio-macros/src/lib.rs2
2 files changed, 5 insertions, 4 deletions
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 5a594e7a..f7ed01eb 100644
--- a/tokio-macros/Cargo.toml
+++ b/tokio-macros/Cargo.toml
@@ -6,8 +6,8 @@ name = "tokio-macros"
# - Update doc url
# - Cargo.toml
# - Update CHANGELOG.md.
-# - Create "v0.3.x" git tag.
-version = "0.3.1"
+# - Create "tokio-macros-1.0.x" git tag.
+version = "1.0.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
@@ -18,6 +18,7 @@ description = """
Tokio's proc macros.
"""
categories = ["asynchronous"]
+publish = false
[lib]
proc-macro = true
@@ -30,7 +31,7 @@ quote = "1"
syn = { version = "1.0.3", features = ["full"] }
[dev-dependencies]
-tokio = { version = "0.3.0", path = "../tokio", features = ["full"] }
+tokio = { version = "1.0.0", path = "../tokio", features = ["full"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 0acfbca5..df847dec 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-macros/0.3.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/1.0.0")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,