Remove unused import of std::ops
This commit is contained in:
parent
5f49eb8b24
commit
e2a1f08e43
@ -65,7 +65,7 @@
|
||||
#![cfg_attr(feature = "alloc", feature(alloc))]
|
||||
#![cfg_attr(feature = "collections", feature(collections))]
|
||||
#![cfg_attr(feature = "cargo-clippy", allow(linkedlist, type_complexity, doc_markdown))]
|
||||
#![deny(missing_docs)]
|
||||
#![deny(missing_docs, unused_imports)]
|
||||
|
||||
#[cfg(feature = "collections")]
|
||||
extern crate collections;
|
||||
|
@ -14,11 +14,7 @@ use collections::borrow::ToOwned;
|
||||
#[cfg(feature = "std")]
|
||||
use core::hash::{Hash, BuildHasher};
|
||||
#[cfg(feature = "std")]
|
||||
use std::net;
|
||||
#[cfg(any(feature = "std", feature = "unstable"))]
|
||||
use core::ops;
|
||||
#[cfg(feature = "std")]
|
||||
use std::path;
|
||||
use std::{net, ops, path};
|
||||
#[cfg(feature = "std")]
|
||||
use std::ffi::{CString, CStr, OsString, OsStr};
|
||||
#[cfg(feature = "std")]
|
||||
|
Loading…
Reference in New Issue
Block a user