coreutils/src/tail/Cargo.toml

24 lines
361 B
TOML
Raw Normal View History

[package]
name = "tail"
version = "0.0.1"
authors = []
build = "../../mkmain.rs"
[lib]
name = "uu_tail"
path = "tail.rs"
[dependencies]
2017-07-15 19:03:43 +00:00
getopts = "0.2.14"
kernel32-sys = "0.2.2"
libc = "0.2.26"
2018-03-05 02:12:15 +00:00
winapi = "0.3"
uucore = { path="../uucore" }
2018-03-19 04:56:26 +00:00
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.1"
[[bin]]
name = "tail"
path = "../../uumain.rs"