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 nix-rust#1096
  • Loading branch information
asomers committed Jul 11, 2019
1 parent 6466989 commit e76d5a0
Showing 1 changed file with 2 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

0 comments on commit e76d5a0

Please sign in to comment.