From 27ababf5bdb1a62ca35fc97ff4d8c2c0bf7b5a0c Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 4 Jan 2018 10:49:13 -0800 Subject: [PATCH] Remove `AsciiExt` import (#104) Since the methods on this trait were moved to direct implementations on the implementing types, this produces an unused import warning with the latest (1.23) Rust standard library. As we set `deny(warnings)`, this breaks the build. Signed-off-by: Eliza Weisman --- proxy/src/fully_qualified_authority.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/src/fully_qualified_authority.rs b/proxy/src/fully_qualified_authority.rs index e4383e5f0..dfd47ef33 100644 --- a/proxy/src/fully_qualified_authority.rs +++ b/proxy/src/fully_qualified_authority.rs @@ -1,6 +1,5 @@ use bytes::BytesMut; -use std::ascii::AsciiExt; use std::net::IpAddr; use std::str::FromStr;