coreutils/src/uu/tee/Cargo.toml
2021-07-11 21:04:11 +02:00

26 lines
760 B
TOML

[package]
name = "uu_tee"
version = "0.0.7"
authors = ["uutils developers"]
license = "MIT"
description = "tee ~ (uutils) display input and copy to FILE"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tee"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
[lib]
path = "src/tee.rs"
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
libc = "0.2.42"
retain_mut = "0.1.2"
uucore = { version=">=0.0.9", package="uucore", path="../../uucore", features=["libc"] }
uucore_procs = { version=">=0.0.6", package="uucore_procs", path="../../uucore_procs" }
[[bin]]
name = "tee"
path = "src/main.rs"