[package]
edition = "2021"
rust-version = "1.56"
name = "yes-cli"
version = "0.1.0"
authors = ["Radim Kolar <hsn@sendmail.cz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sends string repeatedly to stdout"
homepage = "https://gitlab.com/hsn10/yes"
readme = "README.md"
keywords = [
"cli",
"unix",
"utility",
"command-line",
"coreutils",
]
categories = ["command-line-utilities"]
license = "Unlicense OR CC0-1.0"
repository = "https://gitlab.com/hsn10/yes.git"
[[bin]]
name = "no"
path = "src/no.rs"
[[bin]]
name = "yes"
path = "src/yes.rs"
[dependencies.getopt2]
version = "0.1.0"
[profile.release]
lto = true
panic = "abort"