coreutils/src/uu/tr/Cargo.toml
Yuri Astrakhan 895b208391 Consolidate crate config in workspace
Make all common data like version, edition, license, ... be managed in one central workspace. This makes management much simpler
2025-04-10 16:52:01 -04:00

27 lines
590 B
TOML

[package]
name = "uu_tr"
description = "tr ~ (uutils) translate characters within input and display"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/tr"
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/tr.rs"
[dependencies]
nom = { workspace = true }
clap = { workspace = true }
uucore = { workspace = true, features = ["fs"] }
[[bin]]
name = "tr"
path = "src/main.rs"