diff options
| author | Ralf Jung <post@ralfj.de> | 2019-04-14 10:16:23 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-04-14 10:16:23 +0200 |
| commit | 8ef7ca130271369400719c712369c33a30d6528b (patch) | |
| tree | 0a92a6c9786e984c73b1526c94e945b978065fe4 /src/libstd | |
| parent | cdf1d368e2376a94fc433fedc63171ed9e050289 (diff) | |
| download | rust-8ef7ca130271369400719c712369c33a30d6528b.tar.gz rust-8ef7ca130271369400719c712369c33a30d6528b.zip | |
make lint levels more consistent
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index ee6ba3f438f..62bc1991cc9 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -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)] |
