coreutils/src/uu/more/Cargo.toml
2022-10-13 17:50:36 +02:00

30 lines
829 B
TOML

[package]
name = "uu_more"
version = "0.0.16"
authors = ["uutils developers"]
license = "MIT"
description = "more ~ (uutils) input perusal filter"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/more"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"
[lib]
path = "src/more.rs"
[dependencies]
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
uucore = { version=">=0.0.16", package="uucore", path="../../uucore" }
crossterm = ">=0.19"
atty = "0.2"
unicode-width = "0.1.7"
unicode-segmentation = "1.9.0"
[target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies]
nix = { version = "0.25", default-features = false }
[[bin]]
name = "more"
path = "src/main.rs"