1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 13:07:46 +00:00

fix: remove unused imports

This commit is contained in:
Roy Ivy III 2018-09-03 17:50:34 -05:00
parent a046d94e75
commit 16d39cafcc
2 changed files with 1 additions and 4 deletions

View file

@ -24,9 +24,6 @@ extern crate walkdir;
#[cfg(unix)]
extern crate xattr;
#[cfg(windows)]
use std::os::windows::io::AsRawHandle;
#[cfg(windows)]
extern crate kernel32;
#[cfg(windows)]

View file

@ -16,7 +16,7 @@ extern crate libc;
extern crate uucore;
use std::fs;
use std::path::{Path, PathBuf};
use std::path::Path;
static NAME: &'static str = "mkdir";
static VERSION: &'static str = env!("CARGO_PKG_VERSION");