coreutils/src/uu/tr/Cargo.toml

27 lines
706 B
TOML
Raw Normal View History

[package]
name = "uu_tr"
2021-03-07 10:08:27 +00:00
version = "0.0.4"
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/master/src/uu/tr"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
[lib]
path = "src/tr.rs"
[dependencies]
bit-set = "0.5.0"
2017-07-15 19:03:43 +00:00
fnv = "1.0.5"
clap = "2.33"
2021-03-07 10:20:45 +00:00
uucore = { version=">=0.0.7", package="uucore", path="../../uucore" }
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }
[[bin]]
name = "tr"
path = "src/main.rs"