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:
parent
f1a4e98053
commit
27ababf5bd
|
@ -1,6 +1,5 @@
|
|||
use bytes::BytesMut;
|
||||
|
||||
use std::ascii::AsciiExt;
|
||||
use std::net::IpAddr;
|
||||
use std::str::FromStr;
|
||||
|
||||
|
|
Loading…
Reference in New Issue