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 709de5a7b0
commit 67d4b56253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

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