coreutils/src/uu/tee/Cargo.toml

25 lines
609 B
TOML
Raw Normal View History

[package]
name = "uu_tee"
2024-03-23 21:08:05 +00:00
version = "0.0.25"
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"]
2022-04-01 17:03:15 +00:00
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"