Skip to content

Commit

Permalink
Temporarily allow deprecated items
Browse files Browse the repository at this point in the history
This fixes the tests on Rust 1.38.0.  We'll fix them for real after
release 0.15.0.

Issue #1096
  • Loading branch information
asomers committed Jul 13, 2019
1 parent 43df789 commit 2373ac8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 2 additions & 0 deletions test/test.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 2373ac8

Please sign in to comment.