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
31 lines (27 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 717 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
31
[package]
name = "uu_pr"
description = "pr ~ (uutils) convert text files for printing"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/pr"
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/pr.rs"
[dependencies]
clap = { workspace = true }
uucore = { workspace = true, features = ["entries", "time"] }
itertools = { workspace = true }
memchr = { workspace = true }
regex = { workspace = true }
thiserror = { workspace = true }
fluent = { workspace = true }
[[bin]]
name = "pr"
path = "src/main.rs"