summaryrefslogtreecommitdiffstats
path: root/src/uu/tr/Cargo.toml
blob: 99242399914c199f3d742ea81202637dbb2459d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "uu_tr"
version = "0.0.17"
authors = ["uutils developers"]
license = "MIT"
description = "tr ~ (uutils) translate characters within input and display"

homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/tr"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"

[lib]
path = "src/tr.rs"

[dependencies]
nom = "7.1.1"
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
uucore = { version=">=0.0.17", package="uucore", path="../../uucore" }

[[bin]]
name = "tr"
path = "src/main.rs"