mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +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]
|
[dev-dependencies]
|
||||||
time = "*"
|
time = "*"
|
||||||
kernel32-sys = "*"
|
|
||||||
winapi = "*"
|
|
||||||
filetime = "*"
|
filetime = "*"
|
||||||
libc = "*"
|
libc = "*"
|
||||||
memchr = "*"
|
|
||||||
primal = "*"
|
|
||||||
aho-corasick= "*"
|
|
||||||
regex-syntax= "*"
|
|
||||||
regex="*"
|
regex="*"
|
||||||
rand="*"
|
rand="*"
|
||||||
tempdir="*"
|
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 common::util::*;
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
|
|
||||||
|
@ -17,7 +10,7 @@ fn at_and_ucmd() -> (AtPath, UCommand) {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_install_help() {
|
fn test_install_help() {
|
||||||
let (at, mut ucmd) = at_and_ucmd();
|
let (_, mut ucmd) = at_and_ucmd();
|
||||||
|
|
||||||
let result = ucmd.arg("--help").run();
|
let result = ucmd.arg("--help").run();
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
extern crate libc;
|
|
||||||
|
|
||||||
use common::util::*;
|
use common::util::*;
|
||||||
|
|
||||||
static UTIL_NAME: &'static str = "link";
|
static UTIL_NAME: &'static str = "link";
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
extern crate libc;
|
|
||||||
extern crate time;
|
extern crate time;
|
||||||
extern crate kernel32;
|
|
||||||
extern crate winapi;
|
|
||||||
extern crate filetime;
|
extern crate filetime;
|
||||||
|
|
||||||
use self::filetime::*;
|
use self::filetime::*;
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
extern crate libc;
|
|
||||||
|
|
||||||
use common::util::*;
|
use common::util::*;
|
||||||
|
|
||||||
static UTIL_NAME: &'static str = "rmdir";
|
static UTIL_NAME: &'static str = "rmdir";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue