coreutils/src/uu/tr/Cargo.toml

27 lines
797 B
TOML
Raw Normal View History

[package]
name = "uu_tr"
version = "0.0.1"
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", "core", "cli", "util", "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"
getopts = "0.2.18"
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
[[bin]]
name = "tr"
path = "src/main.rs"