make lint levels more consistent

This commit is contained in:
Ralf Jung 2019-04-14 10:16:23 +02:00
parent cdf1d368e2
commit 8ef7ca1302
2 changed files with 7 additions and 6 deletions

View file

@ -58,13 +58,13 @@
#![no_std]
#![needs_allocator]
#![deny(rust_2018_idioms)]
#![allow(explicit_outlives_requirements)]
#![warn(deprecated_in_future)]
#![warn(missing_debug_implementations)]
#![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings
#![deny(rust_2018_idioms)]
#![allow(explicit_outlives_requirements)]
#![cfg_attr(not(test), feature(generator_trait))]
#![cfg_attr(test, feature(test))]

View file

@ -205,9 +205,10 @@
// Don't link to std. We are std.
#![no_std]
#![deny(missing_docs)]
#![deny(intra_doc_link_resolution_failure)]
#![deny(missing_debug_implementations)]
//#![warn(deprecated_in_future)] // FIXME: std still has quite a few uses of `mem::uninitialized`
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
#![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings
#![deny(rust_2018_idioms)]
#![allow(explicit_outlives_requirements)]