coreutils/src/uu/head/Cargo.toml

29 lines
828 B
TOML
Raw Normal View History

[package]
name = "uu_head"
2021-07-11 16:03:11 +00:00
version = "0.0.7"
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/master/src/uu/head"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
[lib]
path = "src/head.rs"
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
2021-07-11 16:03:11 +00:00
uucore = { version=">=0.0.9", package="uucore", path="../../uucore", features=["ringbuffer"] }
2021-07-11 19:04:11 +00:00
uucore_procs = { version=">=0.0.6", package="uucore_procs", path="../../uucore_procs" }
[[bin]]
name = "head"
path = "src/main.rs"
[package.metadata.cargo-udeps.ignore]
# Necessary for "make all"
normal = ["uucore_procs"]