coreutils/src/uu/df/Cargo.toml

22 lines
335 B
TOML
Raw Normal View History

2020-04-28 07:34:55 +00:00
[package]
name = "df"
version = "0.0.1"
authors = []
[lib]
name = "uu_df"
path = "src/df.rs"
2020-04-28 07:34:55 +00:00
[dependencies]
2020-04-29 07:50:13 +00:00
clap = "2.32"
libc = "0.2"
2020-04-28 07:34:55 +00:00
uucore = "0.0.1"
[target.'cfg(target_os = "windows")'.dependencies]
2020-04-29 07:50:13 +00:00
kernel32-sys = "0.2"
winapi = { version = "0.3", features = ["handleapi"] }
2020-04-28 07:34:55 +00:00
[[bin]]
name = "df"
path = "../../common/uumain.rs"