summaryrefslogtreecommitdiffstats
path: root/tokio-test/src
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-test/src
parentd9f9c5658f135d2c5aca19ef435266170187c924 (diff)
chore: apply unreachable_pub and missing_debug_implementations to all crates (#1424)
Diffstat (limited to 'tokio-test/src')
-rw-r--r--tokio-test/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio-test/src/lib.rs b/tokio-test/src/lib.rs
index 4d8539bd..6e6a82ad 100644
--- a/tokio-test/src/lib.rs
+++ b/tokio-test/src/lib.rs
@@ -1,9 +1,9 @@
#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.1")]
#![warn(
- missing_docs,
missing_debug_implementations,
- unreachable_pub,
- rust_2018_idioms
+ missing_docs,
+ rust_2018_idioms,
+ unreachable_pub
)]
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]