coreutils/src/uu/head/Cargo.toml
2022-07-29 14:05:02 +02:00

24 lines
678 B
TOML

[package]
name = "uu_head"
version = "0.0.14"
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 = { version = "3.2", features = ["wrap_help", "cargo"] }
memchr = "2"
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["ringbuffer", "lines"] }
[[bin]]
name = "head"
path = "src/main.rs"