From 6ded76714b9b91b852c6073abddd80c1becdb3e2 Mon Sep 17 00:00:00 2001 From: Luca Ottaviano Date: Sat, 2 Apr 2016 10:25:31 +0200 Subject: [PATCH] chmod: remove unused dependencies --- Cargo.lock | 4 ---- src/chmod/Cargo.toml | 4 ---- src/chmod/chmod.rs | 2 -- 3 files changed, 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db6789500..e27379698 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,12 +156,8 @@ dependencies = [ name = "chmod" version = "0.0.1" 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)", "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", "walker 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/src/chmod/Cargo.toml b/src/chmod/Cargo.toml index a85059a93..40914154f 100644 --- a/src/chmod/Cargo.toml +++ b/src/chmod/Cargo.toml @@ -10,10 +10,6 @@ path = "chmod.rs" [dependencies] getopts = "*" libc = "*" -aho-corasick = "*" -memchr = "*" -regex = "*" -regex-syntax = "*" uucore = { path="../uucore" } walker = "*" diff --git a/src/chmod/chmod.rs b/src/chmod/chmod.rs index 651cb2f75..341cc8255 100644 --- a/src/chmod/chmod.rs +++ b/src/chmod/chmod.rs @@ -9,10 +9,8 @@ * file that was distributed with this source code. */ -extern crate aho_corasick; extern crate getopts; extern crate libc; -extern crate memchr; extern crate walker; #[macro_use]