mirror of https://github.com/linkerd/linkerd2.git
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
709de5a7b0
commit
67d4b56253
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue