coreutils/src/uu/df/Cargo.toml

31 lines
921 B
TOML
Raw Normal View History

2020-04-28 07:34:55 +00:00
[package]
name = "uu_df"
2020-04-28 07:34:55 +00:00
version = "0.0.1"
authors = ["uutils developers"]
license = "MIT"
description = "df ~ (uutils) display file system information"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/df"
keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
2020-04-28 07:34:55 +00:00
[lib]
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"
number_prefix = "0.2"
uucore = { version="0.0.3", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
uucore_procs = { version="0.0.3", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
2020-04-28 07:34:55 +00:00
[target.'cfg(target_os = "windows")'.dependencies]
2020-04-29 07:50:13 +00:00
kernel32-sys = "0.2"
2020-05-03 19:34:02 +00:00
winapi = { version = "0.3", features = ["handleapi", "winerror"] }
2020-04-28 07:34:55 +00:00
[[bin]]
name = "df"
path = "src/main.rs"