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

Remove unnecessary dependencies on libc in various utilities.

This commit is contained in:
Lei Zhang 2016-11-24 11:17:36 -05:00
parent de8d96ff7c
commit a2071c258e
58 changed files with 0 additions and 62 deletions

View file

@ -8,7 +8,6 @@ name = "uu_basename"
path = "basename.rs"
[dependencies]
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -8,7 +8,6 @@ name = "uu_cut"
path = "cut.rs"
[dependencies]
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "dircolors.rs"
[dependencies]
glob = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -8,7 +8,6 @@
// file that was distributed with this source code.
//
extern crate libc;
extern crate glob;
#[macro_use]

View file

@ -8,7 +8,6 @@ name = "uu_du"
path = "du.rs"
[dependencies]
libc = "*"
time = "*"
uucore = { path="../uucore" }

View file

@ -11,7 +11,6 @@
#![allow(non_snake_case)]
extern crate libc;
extern crate time;
#[macro_use]

View file

@ -8,7 +8,6 @@ name = "uu_echo"
path = "echo.rs"
[dependencies]
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -8,7 +8,6 @@ name = "uu_expand"
path = "expand.rs"
[dependencies]
libc = "*"
unicode-width = "*"
getopts = "*"
uucore = { path="../uucore" }

View file

@ -11,7 +11,6 @@
* file that was distributed with this source code.
*/
extern crate libc;
extern crate unicode_width;
extern crate getopts;

View file

@ -8,7 +8,6 @@ name = "uu_factor"
path = "factor.rs"
[dependencies]
libc = "*"
rand = "*"
uucore = { path="../uucore" }

View file

@ -13,7 +13,6 @@
* that was distributed with this source code.
*/
extern crate libc;
extern crate rand;
#[macro_use]

View file

@ -8,7 +8,6 @@ name = "uu_fold"
path = "fold.rs"
[dependencies]
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -10,7 +10,6 @@ path = "mktemp.rs"
[dependencies]
uucore = { path="../uucore" }
getopts = "*"
libc = "*"
rand = "0.3"
tempfile = "*"

View file

@ -10,7 +10,6 @@
//
extern crate getopts;
extern crate libc;
extern crate tempfile;
extern crate rand;

View file

@ -9,7 +9,6 @@ path = "paste.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "printenv.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -12,7 +12,6 @@
/* last synced with: printenv (GNU coreutils) 8.13 */
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "pwd.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "realpath.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "relpath.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "rm.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "rmdir.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "seq.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -4,7 +4,6 @@
// TODO: Support -f flag
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "shuf.rs"
[dependencies]
getopts = "*"
libc = "*"
rand = "*"
uucore = { path="../uucore" }

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
extern crate rand;
#[macro_use]

View file

@ -9,7 +9,6 @@ path = "sleep.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "sort.rs"
[dependencies]
getopts = "*"
libc = "*"
semver = "*"
itertools = "*"
uucore = { path="../uucore" }

View file

@ -12,7 +12,6 @@
#![allow(dead_code)]
extern crate getopts;
extern crate libc;
extern crate semver;
#[macro_use]

View file

@ -9,7 +9,6 @@ path = "split.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "stdbuf.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "sum.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "tac.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "truncate.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "tsort.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -11,7 +11,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "unexpand.rs"
[dependencies]
getopts = "*"
libc = "*"
unicode-width = "*"
uucore = { path="../uucore" }

View file

@ -12,7 +12,6 @@
*/
extern crate getopts;
extern crate libc;
extern crate unicode_width;
#[macro_use]

View file

@ -9,7 +9,6 @@ path = "wc.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -10,7 +10,6 @@
*/
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;

View file

@ -9,7 +9,6 @@ path = "yes.rs"
[dependencies]
getopts = "*"
libc = "*"
uucore = { path="../uucore" }
[[bin]]

View file

@ -12,7 +12,6 @@
/* last synced with: yes (GNU coreutils) 8.13 */
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate uucore;