summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-08-11 04:28:52 +0900
committerGitHub <noreply@github.com>2019-08-11 04:28:52 +0900
commit6a125082e48c6e2334d64e4ebc5b6a988cf27b3f (patch)
tree55fe77fbd5656a1f61e9f686d80894afc78336d6 /tokio-macros
parentd9f9c5658f135d2c5aca19ef435266170187c924 (diff)
chore: apply unreachable_pub and missing_debug_implementations to all crates (#1424)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/src/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 1d14f5ea..7f1144f9 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -1,5 +1,10 @@
#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0-alpha.1")]
-#![warn(missing_debug_implementations, unreachable_pub, rust_2018_idioms)]
+#![warn(
+ missing_debug_implementations,
+ missing_docs,
+ rust_2018_idioms,
+ unreachable_pub
+)]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
//! Macros for use with Tokio