mirror of
https://github.com/uutils/coreutils.git
synced 2025-08-05 03:18:22 +00:00

Make all common data like version, edition, license, ... be managed in one central workspace. This makes management much simpler
27 lines
590 B
TOML
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"
|