summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2019-07-11 17:44:48 -0600
committerAlan Somers <asomers@gmail.com>2019-07-13 15:06:01 -0600
commit2373ac817f331991d12dd0d1bccb20bb69300f6e (patch)
tree1ad7f100d4a9ed097c46db107215b1dbbc81b8ff /src
parent43df789bda3aba17ad1a0405e506a376c94bd73c (diff)
downloadnix-2373ac817f331991d12dd0d1bccb20bb69300f6e.zip
Temporarily allow deprecated items
This fixes the tests on Rust 1.38.0. We'll fix them for real after release 0.15.0. Issue #1096
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 22577cfe..71485d2a 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]