coreutils/src/whoami/Cargo.toml

24 lines
397 B
TOML
Raw Normal View History

[package]
name = "whoami"
version = "0.0.1"
authors = []
2018-03-13 02:28:32 +00:00
description = "Print effective user ID."
build = "../../mkmain.rs"
[lib]
name = "uu_whoami"
path = "whoami.rs"
[dependencies]
2018-03-13 02:28:32 +00:00
clap = "2.31"
winapi = { version = "0.3", features = ["lmcons"] }
2017-07-15 19:03:43 +00:00
advapi32-sys = "0.2.0"
2016-08-14 05:53:42 +00:00
[dependencies.uucore]
path = "../uucore"
2018-03-13 02:28:32 +00:00
features = ["entries", "wide"]
[[bin]]
name = "whoami"
path = "../../uumain.rs"