summaryrefslogtreecommitdiffstats
path: root/src/uu/head/Cargo.toml
blob: 6b53b1526b92e18025f72c248ed352fa54e6d997 (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
[package]
name = "uu_head"
version = "0.0.19"
authors = ["uutils developers"]
license = "MIT"
description = "head ~ (uutils) display the first lines of input"

homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/head"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"

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

[dependencies]
clap = { workspace = true }
memchr = { workspace = true }
uucore = { workspace = true, features = ["ringbuffer", "lines"] }

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