mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
23 lines
718 B
TOML
23 lines
718 B
TOML
[package]
|
|
name = "uu_fold"
|
|
version = "0.0.1"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "fold ~ (uutils) wrap each line of input"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/fold"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/fold.rs"
|
|
|
|
[dependencies]
|
|
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
|
|
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
|
|
|
|
[[bin]]
|
|
name = "fold"
|
|
path = "src/main.rs"
|