summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-08-10 00:07:57 +0900
committerGitHub <noreply@github.com>2019-08-10 00:07:57 +0900
commit73102760cfe1632b6b8073dfa5a506c0e69e4b5e (patch)
tree3feb237f1c3efd796b92e623dec28181acdbf691 /tokio-macros
parent18833a8e6709c3489ea8f401f1a9d9a28ae20226 (diff)
chore: change default lint level to warning and deny warnings in CI (#1416)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index ccb6ae7d..991558f7 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -1,6 +1,5 @@
#![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))]
+#![warn(missing_debug_implementations, unreachable_pub, rust_2018_idioms)]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
//! Macros for use with Tokio