]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys/unix/os_str.rs
Auto merge of #58423 - nox:relax-bounds-buf-reader, r=dtolnay
[rust.git] / src / libstd / sys / unix / os_str.rs
index 9d5e084feb2d6bbff22b028b5c9dd8db8e0a5785..79b43458d00f3cad06079838d2c0ab3b3c3ef06a 100644 (file)
@@ -1,14 +1,15 @@
 /// The underlying OsString/OsStr implementation on Unix systems: just
 /// a `Vec<u8>`/`[u8]`.
 
-use borrow::Cow;
-use fmt;
-use str;
-use mem;
-use rc::Rc;
-use sync::Arc;
-use sys_common::{AsInner, IntoInner};
-use sys_common::bytestring::debug_fmt_bytestring;
+use crate::borrow::Cow;
+use crate::fmt;
+use crate::str;
+use crate::mem;
+use crate::rc::Rc;
+use crate::sync::Arc;
+use crate::sys_common::{AsInner, IntoInner};
+use crate::sys_common::bytestring::debug_fmt_bytestring;
+
 use core::str::lossy::Utf8Lossy;
 
 #[derive(Clone, Hash)]