2015-07-31 22:49:14 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_tr"
|
2022-01-19 11:35:00 +00:00
|
|
|
version = "0.0.12"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "tr ~ (uutils) translate characters within input and display"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tr"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-24 17:15:34 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/tr.rs"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-19 18:31:54 +00:00
|
|
|
nom = "7.1.0"
|
2022-01-11 14:09:25 +00:00
|
|
|
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
|
2022-01-16 16:05:38 +00:00
|
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore" }
|
2015-11-22 20:45:04 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2015-12-08 02:42:08 +00:00
|
|
|
name = "tr"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|