1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

chmod: remove unused dependencies

This commit is contained in:
Luca Ottaviano 2016-04-02 10:25:31 +02:00
parent 2686ea75d7
commit 6ded76714b
3 changed files with 0 additions and 10 deletions

4
Cargo.lock generated
View file

@ -156,12 +156,8 @@ dependencies = [
name = "chmod" name = "chmod"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"aho-corasick 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"uucore 0.0.1", "uucore 0.0.1",
"walker 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "walker 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
] ]

View file

@ -10,10 +10,6 @@ path = "chmod.rs"
[dependencies] [dependencies]
getopts = "*" getopts = "*"
libc = "*" libc = "*"
aho-corasick = "*"
memchr = "*"
regex = "*"
regex-syntax = "*"
uucore = { path="../uucore" } uucore = { path="../uucore" }
walker = "*" walker = "*"

View file

@ -9,10 +9,8 @@
* file that was distributed with this source code. * file that was distributed with this source code.
*/ */
extern crate aho_corasick;
extern crate getopts; extern crate getopts;
extern crate libc; extern crate libc;
extern crate memchr;
extern crate walker; extern crate walker;
#[macro_use] #[macro_use]