diff options
author | 2020-07-10 01:12:39 +0900 | |
---|---|---|
committer | 2020-07-09 09:12:39 -0700 | |
commit | 7daa7fe05364f347539a35d182dc964b9e8e2ecc (patch) | |
tree | 8ca10e186869423ffae04576d82cc4fde520663f /src | |
parent | 972f538b7ed5d01928f00deae14327a004225f8e (diff) | |
download | bytes-7daa7fe05364f347539a35d182dc964b9e8e2ecc.tar.gz bytes-7daa7fe05364f347539a35d182dc964b9e8e2ecc.tar.zst bytes-7daa7fe05364f347539a35d182dc964b9e8e2ecc.zip |
Change default lint level to warning and deny warnings in CI (#397)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,9 +1,4 @@ -#![deny( - warnings, - missing_docs, - missing_debug_implementations, - rust_2018_idioms -)] +#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables)) |