diff --git a/src/lib.rs b/src/lib.rs index 22577cfe63..71485d2af1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,6 +14,8 @@ #![deny(unstable_features)] #![deny(missing_copy_implementations)] #![deny(missing_debug_implementations)] +// XXX Allow deprecated items until release 0.16.0. See issue #1096. +#![allow(deprecated)] // External crates #[macro_use] diff --git a/test/test.rs b/test/test.rs index 4c7e5b1e95..6a71d261b5 100644 --- a/test/test.rs +++ b/test/test.rs @@ -1,3 +1,5 @@ +// XXX Allow deprecated items until release 0.16.0. See issue #1096. +#![allow(deprecated)] extern crate bytes; #[cfg(any(target_os = "android", target_os = "linux"))] extern crate caps;