Skip to content

Commit

Permalink
chore: Make rustfmt happy
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <github@xuanwo.io>
  • Loading branch information
Xuanwo committed Aug 2, 2024
1 parent dbdb3d8 commit 86de089
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion monoio-compat/src/box_future.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{future::Future, io};

use monoio::BufResult;
use reusable_box_future::{ReusableLocalBoxFuture, ReusableBoxFuture};
use reusable_box_future::{ReusableBoxFuture, ReusableLocalBoxFuture};

use crate::buf::{Buf, RawBuf};

Expand Down
9 changes: 3 additions & 6 deletions monoio/src/fs/metadata/mod.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
mod unix;
mod windows;

use crate::driver::op::Op;
use std::{os::unix::fs::MetadataExt, path::Path, time::SystemTime};

use super::file_type::FileType;
use super::permissions::Permissions;
use std::os::unix::fs::MetadataExt;
use std::path::Path;
use std::time::SystemTime;
use super::{file_type::FileType, permissions::Permissions};
use crate::driver::op::Op;

/// Given a path, query the file system to get information about a file,
/// directory, etc.
Expand Down
1 change: 1 addition & 0 deletions monoio/src/fs/metadata/windows.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 86de089

Please sign in to comment.