summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2018-05-12 10:32:23 -0400
committerAndrew Gallant <jamslam@gmail.com>2018-05-12 10:32:23 -0400
commitd4380629c3fe4666c27c9413dfbd8da5cb0e359e (patch)
tree5cfd78a1072dcec70304267a24c3ef4ea768106e
parentb0ba64c333b138d34fc302f918bc9fcd653b1073 (diff)
churn: continue to use AsciiExt
We can remove its usage once we require Rust 1.23 or newer.
-rw-r--r--src/config.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index cf50f29..f1222b5 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,3 +1,4 @@
+#[allow(deprecated, unused_imports)]
use std::ascii::AsciiExt;
use std::borrow::ToOwned;
use std::env;