From 27f5e5e9b39a72723a41b11a23cbda16c8355b1c Mon Sep 17 00:00:00 2001 From: Brandon W Maister Date: Sat, 23 Nov 2019 18:22:40 -0500 Subject: [PATCH] Temporarily globally allow deprecated The question mark will be fixed in a pending commit --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 928b515..84831db 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -386,6 +386,7 @@ #![cfg_attr(feature = "bench", feature(test))] // lib stability features as per RFC #507 #![deny(missing_docs)] #![deny(missing_debug_implementations)] +#![allow(deprecated)] #![cfg_attr(not(any(feature = "std", test)), no_std)]