mirror of
https://github.com/uutils/coreutils
synced 2025-01-10 12:19:18 +00:00
29 lines
753 B
TOML
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"
|