summaryrefslogtreecommitdiffstats
path: root/src/uu/tail/Cargo.toml
blob: a22b148fec16580c0973c23fe2a040431eaf764e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# spell-checker:ignore (libs) kqueue fundu
[package]
name = "uu_tail"
version = "0.0.20"
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/main/src/uu/tail"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"

[lib]
path = "src/tail.rs"

[dependencies]
clap = { workspace = true }
libc = { workspace = true }
memchr = { workspace = true }
notify = { workspace = true }
uucore = { workspace = true }
same-file = { workspace = true }
is-terminal = { workspace = true }
fundu = { workspace = true }

[target.'cfg(windows)'.dependencies]
windows-sys = { workspace = true, features = [
  "Win32_System_Threading",
  "Win32_Foundation",
] }
winapi-util = { workspace = true }

[dev-dependencies]
rstest = { workspace = true }

[[bin]]
name = "tail"
path = "src/main.rs"