From 109a0850f9af88454774136caafc98602834f033 Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Fri, 9 Apr 2021 22:00:59 -0400 Subject: [PATCH] fixed imports --- src/fs.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/fs.rs b/src/fs.rs index d704929..f9568b1 100644 --- a/src/fs.rs +++ b/src/fs.rs @@ -1,8 +1,10 @@ +use std::collections::HashMap; +use std::path::{Path, PathBuf}; +use std::pin::Pin; +use std::sync::atomic::{AtomicU8, Ordering}; +use std::sync::Arc; use std::task::{Context, Poll}; -use std::{collections::HashMap, path::PathBuf}; -use std::{path::Path, sync::atomic::Ordering}; -use std::{pin::Pin, sync::atomic::AtomicU8}; -use std::{sync::Arc, time::Duration}; +use std::time::Duration; use bytes::{Bytes, BytesMut}; use futures::{Future, Stream, StreamExt};