From 7dc1b25ee7fc59a188312d31b1fa00c3110ae63e Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sat, 30 Mar 2019 16:34:55 +0200 Subject: [PATCH] don't error on warnings Nice and all when you keep up with development, but can cause random errors by the addition of new errors to the compiler. --- podcasts-data/src/lib.rs | 2 +- podcasts-downloader/src/lib.rs | 2 +- podcasts-gtk/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/podcasts-data/src/lib.rs b/podcasts-data/src/lib.rs index 92be4d8..fc85259 100644 --- a/podcasts-data/src/lib.rs +++ b/podcasts-data/src/lib.rs @@ -62,7 +62,7 @@ missing_copy_implementations )] #![allow(proc_macro_derive_resolution_fallback)] -#![deny(warnings)] +// #![deny(warnings)] //! FIXME: Docs diff --git a/podcasts-downloader/src/lib.rs b/podcasts-downloader/src/lib.rs index b6d73ea..76b7d65 100644 --- a/podcasts-downloader/src/lib.rs +++ b/podcasts-downloader/src/lib.rs @@ -39,7 +39,7 @@ elided_lifetime_in_paths, missing_copy_implementations )] -#![deny(warnings)] +// #![deny(warnings)] extern crate failure; #[macro_use] diff --git a/podcasts-gtk/src/main.rs b/podcasts-gtk/src/main.rs index 0a720dd..ba36171 100644 --- a/podcasts-gtk/src/main.rs +++ b/podcasts-gtk/src/main.rs @@ -41,7 +41,7 @@ elided_lifetime_in_paths, missing_copy_implementations )] -#![deny(warnings)] +// #![deny(warnings)] extern crate gdk; extern crate gdk_pixbuf;