Blame 0001-Allow-deprecated-item-std-ascii-AsciiExt.patch

7a922e9
From d67c1e92a27e72c9aa4795f2fef1e83274c01083 Mon Sep 17 00:00:00 2001
7a922e9
From: Nico Madysa <nico.madysa@tu-dresden.de>
7a922e9
Date: Thu, 21 Feb 2019 23:19:23 +0100
7a922e9
Subject: [PATCH 1/2] Allow deprecated item std::ascii::AsciiExt.
ffc57db
7a922e9
Not allowing it breaks compatibility with nightly Rust 1.33.0. Removing
7a922e9
the statement breaks compatibility with stable Rust 1.3.0.
7a922e9
7a922e9
(cherry picked from commit 29b30b3bef2f3af06997e8d96b05d63509a49980)
ffc57db
---
ffc57db
 src/lib.rs | 1 +
ffc57db
 1 file changed, 1 insertion(+)
ffc57db
ffc57db
diff --git a/src/lib.rs b/src/lib.rs
7a922e9
index 43a709c..481f2aa 100644
ffc57db
--- a/src/lib.rs
ffc57db
+++ b/src/lib.rs
ffc57db
@@ -21,6 +21,7 @@
ffc57db
 #[cfg(feature = "heap_size")]
ffc57db
 extern crate heapsize;
ffc57db
 
7a922e9
+#[allow(unused, deprecated)]
ffc57db
 use std::ascii::AsciiExt;
ffc57db
 #[cfg(__unicase__iter_cmp)]
ffc57db
 use std::cmp::Ordering;
ffc57db
-- 
7a922e9
2.24.0
ffc57db