mirror of
https://github.com/uutils/coreutils
synced 2024-12-20 10:03:33 +00:00
29 lines
864 B
TOML
29 lines
864 B
TOML
[package]
|
|
name = "uu_tail"
|
|
version = "0.0.6"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
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"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/tail.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
libc = "0.2.42"
|
|
uucore = { version=">=0.0.8", package="uucore", path="../../uucore" }
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
|
winapi = { version="0.3", features=["fileapi", "handleapi", "processthreadsapi", "synchapi", "winbase"] }
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox_syscall = "0.1"
|
|
|
|
[[bin]]
|
|
name = "tail"
|
|
path = "src/main.rs"
|