mirror of
https://github.com/uutils/coreutils
synced 2025-01-21 17:44:17 +00:00
24 lines
678 B
TOML
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"
|