mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 09:03:14 +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.
13 lines
138 B
TOML
13 lines
138 B
TOML
|
|
[package]
|
|
name = "cksum"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "cksum"
|
|
path = "cksum.rs"
|
|
|
|
[dependencies]
|
|
getopts = "*"
|
|
libc = "*"
|