coreutils/src/uu/more/Cargo.toml
2024-01-20 20:12:19 +01:00

29 lines
753 B
TOML

[package]
name = "uu_more"
version = "0.0.24"
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 = { workspace = true }
uucore = { workspace = true }
crossterm = { workspace = true }
unicode-width = { workspace = true }
unicode-segmentation = { workspace = true }
[target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies]
nix = { workspace = true }
[[bin]]
name = "more"
path = "src/main.rs"