Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Aug 28, 2019
1 parent b534926 commit fd71ca3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/lints-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ stages:
- script: |
rustup component add clippy --toolchain nightly
cargo +nightly clippy --all-targets --all-features -- -D warnings
cargo +nightly clippy --all-targets -- -D warnings
displayName: Run clippy
continueOnError: true
8 changes: 4 additions & 4 deletions heim-runtime/src/fs.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//! Async FS operations.

use std::ffi::OsString;
use std::io;
use std::marker::Unpin;
use std::path::{Path, PathBuf};
use std::ffi::OsString;
use std::str::FromStr;
#[cfg(target_os = "windows")]
use std::os::windows::io::RawHandle;
use std::path::{Path, PathBuf};
use std::str::FromStr;

use heim_common::prelude::{future, Future, TryFutureExt, Stream, StreamExt, TryStreamExt};
use heim_common::prelude::{future, Future, Stream, StreamExt, TryFutureExt, TryStreamExt};

use crate::shims;

Expand Down

0 comments on commit fd71ca3

Please sign in to comment.