2015-07-31 22:49:14 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_tail"
|
2021-04-03 13:55:02 +00:00
|
|
|
version = "0.0.6"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "tail ~ (uutils) display the last lines of input"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tail"
|
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"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/tail.rs"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-12 16:44:11 +00:00
|
|
|
clap = "2.33"
|
2018-06-11 17:13:54 +00:00
|
|
|
libc = "0.2.42"
|
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-05-26 18:26:37 +00:00
|
|
|
winapi = { version="0.3", features=["fileapi", "handleapi", "processthreadsapi", "synchapi", "winbase"] }
|
2015-11-22 20:45:04 +00:00
|
|
|
|
2018-03-19 04:56:26 +00:00
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
|
|
redox_syscall = "0.1"
|
|
|
|
|
2015-11-22 20:45:04 +00:00
|
|
|
[[bin]]
|
2015-12-08 02:42:08 +00:00
|
|
|
name = "tail"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|