mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 01:17:09 +00:00
Remove useless crates
This commit is contained in:
parent
cfc28ebc05
commit
a23f1a13e7
5 changed files with 1 additions and 21 deletions
|
@ -192,14 +192,8 @@ yes = { optional=true, path="src/yes" }
|
|||
|
||||
[dev-dependencies]
|
||||
time = "*"
|
||||
kernel32-sys = "*"
|
||||
winapi = "*"
|
||||
filetime = "*"
|
||||
libc = "*"
|
||||
memchr = "*"
|
||||
primal = "*"
|
||||
aho-corasick= "*"
|
||||
regex-syntax= "*"
|
||||
regex="*"
|
||||
rand="*"
|
||||
tempdir="*"
|
||||
|
|
|
@ -1,10 +1,3 @@
|
|||
extern crate libc;
|
||||
extern crate time;
|
||||
extern crate kernel32;
|
||||
extern crate winapi;
|
||||
extern crate filetime;
|
||||
|
||||
use self::filetime::*;
|
||||
use common::util::*;
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
|
||||
|
@ -17,7 +10,7 @@ fn at_and_ucmd() -> (AtPath, UCommand) {
|
|||
|
||||
#[test]
|
||||
fn test_install_help() {
|
||||
let (at, mut ucmd) = at_and_ucmd();
|
||||
let (_, mut ucmd) = at_and_ucmd();
|
||||
|
||||
let result = ucmd.arg("--help").run();
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
extern crate libc;
|
||||
|
||||
use common::util::*;
|
||||
|
||||
static UTIL_NAME: &'static str = "link";
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
extern crate libc;
|
||||
extern crate time;
|
||||
extern crate kernel32;
|
||||
extern crate winapi;
|
||||
extern crate filetime;
|
||||
|
||||
use self::filetime::*;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
extern crate libc;
|
||||
|
||||
use common::util::*;
|
||||
|
||||
static UTIL_NAME: &'static str = "rmdir";
|
||||
|
|
Loading…
Reference in a new issue