diff --git a/decode/src/main.rs b/decode/src/main.rs index c144e58..8b0de67 100644 --- a/decode/src/main.rs +++ b/decode/src/main.rs @@ -1,5 +1,3 @@ -#![deny(warnings)] - #[macro_use] extern crate clap; extern crate csv; diff --git a/framed/src/lib.rs b/framed/src/lib.rs index 8c149ef..65d500c 100644 --- a/framed/src/lib.rs +++ b/framed/src/lib.rs @@ -82,8 +82,6 @@ //! and `decode_*` variants that require this are only available with //! the `use_std` Cargo feature. -#![deny(warnings)] -#![deny(missing_docs)] #![cfg_attr(not(feature = "use_std"), no_std)] #![cfg_attr(feature = "use_nightly", feature(const_fn))] diff --git a/test_type/src/lib.rs b/test_type/src/lib.rs index 4f6c3e3..e8546f9 100644 --- a/test_type/src/lib.rs +++ b/test_type/src/lib.rs @@ -1,5 +1,3 @@ -#![deny(warnings)] - extern crate serde; #[macro_use] extern crate serde_derive; diff --git a/test_type/src/main.rs b/test_type/src/main.rs index 94108e3..5037bcf 100644 --- a/test_type/src/main.rs +++ b/test_type/src/main.rs @@ -1,5 +1,3 @@ -#![deny(warnings)] - extern crate framed; extern crate framed_test_type as lib;