mirror of
https://github.com/uutils/coreutils
synced 2025-01-10 12:19:18 +00:00
24 lines
609 B
TOML
24 lines
609 B
TOML
[package]
|
|
name = "uu_tee"
|
|
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"]
|
|
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"
|