summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2019-08-08 15:48:53 -0400
committerCarl Lerche <me@carllerche.com>2019-08-08 12:48:53 -0700
commit50e5d401df9931eafabee554bb1a370958fc57d2 (patch)
tree46ee622b3167f98f7cb0dc850e3f2de5e9f7ce87 /tokio-macros
parent2e69f2a7fddfe3d9940ace8ed5610cca83b75369 (diff)
chore: prepare for v0.2.0-alpha.1 release (#1410)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/Cargo.toml14
-rw-r--r--tokio-macros/src/lib.rs1
2 files changed, 11 insertions, 4 deletions
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index f929caa6..337649e4 100644
--- a/tokio-macros/Cargo.toml
+++ b/tokio-macros/Cargo.toml
@@ -5,13 +5,19 @@ name = "tokio-macros"
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
-# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.2.0"
+version = "0.2.0-alpha.1"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
-publish = false
+license = "MIT"
+repository = "https://github.com/tokio-rs/tokio"
+homepage = "https://tokio.rs"
+documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.1/tokio_macros"
+description = """
+Tokio's proc macros.
+"""
+categories = ["asynchronous"]
[lib]
proc-macro = true
@@ -24,4 +30,4 @@ quote = "0.6.11"
syn = { version = "0.15.27", features = ["full", "extra-traits", "visit-mut"] }
[dev-dependencies]
-tokio = { version = "0.2.0", path = "../tokio", default-features = false, features = ["rt-full"] }
+tokio = { version = "=0.2.0-alpha.1", path = "../tokio", default-features = false, features = ["rt-full"] }
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 2d24dd9a..b7279b1e 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -1,3 +1,4 @@
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0-alpha.1")]
#![deny(missing_debug_implementations, unreachable_pub, rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]