2020-04-28 07:34:55 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_df"
|
2021-04-03 08:28:12 +00:00
|
|
|
version = "0.0.5"
|
2020-05-25 04:43:59 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-05-03 19:45:09 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "df ~ (uutils) display file system information"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/df"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-24 17:15:34 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2020-04-28 07:34:55 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-30 21:07:22 +00:00
|
|
|
path = "src/df.rs"
|
2020-04-28 07:34:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-12-01 21:59:14 +00:00
|
|
|
clap = "2.33"
|
2020-04-29 07:50:13 +00:00
|
|
|
libc = "0.2"
|
2020-12-22 12:53:20 +00:00
|
|
|
number_prefix = "0.4"
|
2021-04-03 08:28:12 +00:00
|
|
|
uucore = { version=">=0.0.8", package="uucore", path="../../uucore" }
|
2021-01-10 17:27:20 +00:00
|
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
2020-04-28 07:34:55 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2020-05-26 17:32:57 +00:00
|
|
|
winapi = { version = "0.3", features = ["errhandlingapi", "fileapi", "handleapi", "winerror"] }
|
2020-04-28 07:34:55 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "df"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|