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:
parent
2686ea75d7
commit
6ded76714b
3 changed files with 0 additions and 10 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -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)",
|
||||||
]
|
]
|
||||||
|
|
|
@ -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 = "*"
|
||||||
|
|
||||||
|
|
|
@ -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]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue