forked from uutils/coreutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "uu_yes"
description = "yes ~ (uutils) repeatedly display a line with STRING (or 'y')"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/yes"
version.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
rust-version.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/yes.rs"
doctest = false
[dependencies]
clap = { workspace = true }
itertools = { workspace = true }
fluent = { workspace = true }
rustix = { workspace = true, features = ["stdio", "pipe"] }
uucore = { workspace = true, features = ["fs", "pipes"] }
[[bin]]
name = "yes"
path = "src/main.rs"