coreutils/src/more/Cargo.toml

20 lines
283 B
TOML
Raw Normal View History

2016-08-17 19:41:34 +00:00
[package]
name = "more"
version = "0.0.1"
authors = []
[lib]
name = "uu_more"
path = "more.rs"
[dependencies]
2017-07-15 19:03:43 +00:00
getopts = "0.2.14"
2016-08-17 19:41:34 +00:00
uucore = { path="../uucore" }
2016-12-07 02:28:17 +00:00
[target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies]
2017-07-15 19:03:43 +00:00
nix = "0.8.1"
2016-10-06 21:35:16 +00:00
2016-08-17 19:41:34 +00:00
[[bin]]
name = "more"
path = "main.rs"