2016-08-17 19:41:34 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_more"
|
2021-01-21 20:09:19 +00:00
|
|
|
version = "0.0.3"
|
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"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/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"]
|
|
|
|
edition = "2018"
|
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]
|
2018-07-06 07:17:46 +00:00
|
|
|
getopts = "0.2.18"
|
2021-02-01 22:55:33 +00:00
|
|
|
uucore = { version=">=0.0.6", package="uucore", path="../../uucore" }
|
2021-01-10 17:27:20 +00:00
|
|
|
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
|
2016-08-17 19:41:34 +00:00
|
|
|
|
2018-03-19 01:55:42 +00:00
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
|
|
redox_termios = "0.1"
|
|
|
|
redox_syscall = "0.1"
|
|
|
|
|
2016-12-07 02:28:17 +00:00
|
|
|
[target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies]
|
2017-07-15 19:03:43 +00:00
|
|
|
nix = "0.8.1"
|
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"
|