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 <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2018-01-04 10:49:13 -08:00 committed by GitHub
parent f1a4e98053
commit 27ababf5bd
1 changed files with 0 additions and 1 deletions

View File

@ -1,6 +1,5 @@
use bytes::BytesMut;
use std::ascii::AsciiExt;
use std::net::IpAddr;
use std::str::FromStr;