Do not hardcode deny(warnings) in the source code

When a new version of the compiler introduces a new warning
it makes your perfectly fine older release require manual
patching in order to build again.
This commit is contained in:
Jordan Petridis 2019-09-13 03:05:38 +03:00
parent 1192642811
commit 945b40249c
No known key found for this signature in database
GPG Key ID: E8523968931763BE
3 changed files with 0 additions and 3 deletions

View File

@ -62,7 +62,6 @@
missing_copy_implementations
)]
#![allow(proc_macro_derive_resolution_fallback)]
// #![deny(warnings)]
//! FIXME: Docs

View File

@ -39,7 +39,6 @@
elided_lifetime_in_paths,
missing_copy_implementations
)]
// #![deny(warnings)]
#[macro_use]
extern crate failure_derive;

View File

@ -41,7 +41,6 @@
elided_lifetime_in_paths,
missing_copy_implementations
)]
// #![deny(warnings)]
#[macro_use]
extern crate failure;