2020-04-28 07:34:55 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_df"
|
2020-04-28 07:34:55 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
authors = []
|
2020-05-03 19:45:09 +00:00
|
|
|
license = "MIT"
|
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-04-29 07:50:13 +00:00
|
|
|
clap = "2.32"
|
|
|
|
libc = "0.2"
|
2020-04-29 17:03:22 +00:00
|
|
|
number_prefix = "0.2"
|
2020-05-04 06:25:36 +00:00
|
|
|
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"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|