mirror of
https://github.com/uutils/coreutils
synced 2024-12-20 18:13:24 +00:00
9d8abbcb06
Builds the uutils multicall binary containing all utils (except stdbuf) by default. To only build a subset `cargo --no-default-features --features <utils>` can be used. Whats missing is building the standalone binaries and a mechanism to automatically disable the build of unix only utils on windows.
18 lines
214 B
TOML
18 lines
214 B
TOML
|
|
[package]
|
|
name = "chmod"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "chmod"
|
|
path = "chmod.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|
|
aho-corasick = "*"
|
|
memchr = "*"
|
|
regex = "*"
|
|
regex-syntax = "*"
|
|
walker = "*"
|