coreutils/src/uu/tee/Cargo.toml
2023-09-03 14:42:54 +02:00

24 lines
609 B
TOML

[package]
name = "uu_tee"
version = "0.0.21"
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/main/src/uu/tee"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"
[lib]
path = "src/tee.rs"
[dependencies]
clap = { workspace = true }
libc = { workspace = true }
uucore = { workspace = true, features = ["libc", "signals"] }
[[bin]]
name = "tee"
path = "src/main.rs"