mirror of
https://github.com/uutils/coreutils
synced 2025-01-12 05:09:12 +00:00
21 lines
277 B
TOML
21 lines
277 B
TOML
[package]
|
|
name = "df"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "uu_df"
|
|
path = "df.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.32.0"
|
|
libc = "0.2.42"
|
|
uucore = "0.0.1"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
kernel32-sys = "*"
|
|
winapi = "*"
|
|
|
|
[[bin]]
|
|
name = "df"
|
|
path = "main.rs"
|