2016-08-17 19:41:34 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_more"
|
2023-01-21 09:38:18 +00:00
|
|
|
version = "0.0.17"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "more ~ (uutils) input perusal filter"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
2022-03-06 21:10:31 +00:00
|
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/more"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-24 17:15:34 +00:00
|
|
|
categories = ["command-line-utilities"]
|
2022-04-01 17:03:15 +00:00
|
|
|
edition = "2021"
|
2016-08-17 19:41:34 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/more.rs"
|
2016-08-17 19:41:34 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-11 14:05:28 +00:00
|
|
|
clap = { workspace=true }
|
|
|
|
uucore = { workspace=true }
|
|
|
|
crossterm = { workspace=true }
|
2023-02-21 20:52:18 +00:00
|
|
|
is-terminal = { workspace=true }
|
2023-02-11 14:05:28 +00:00
|
|
|
unicode-width = { workspace=true }
|
|
|
|
unicode-segmentation = { workspace=true }
|
2016-08-17 19:41:34 +00:00
|
|
|
|
2016-12-07 02:28:17 +00:00
|
|
|
[target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies]
|
2023-02-11 14:05:28 +00:00
|
|
|
nix = { workspace=true }
|
2016-10-06 21:35:16 +00:00
|
|
|
|
2016-08-17 19:41:34 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "more"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|