mirror of
https://github.com/uutils/coreutils.git
synced 2025-07-07 13:35:00 +00:00
25 lines
681 B
TOML
25 lines
681 B
TOML
[package]
|
|
name = "uu_tty"
|
|
version = "0.0.19"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "tty ~ (uutils) display the name of the terminal connected to standard input"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/tty"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/tty.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
nix = { workspace = true, features = ["term"] }
|
|
is-terminal = { workspace = true }
|
|
uucore = { workspace = true, features = ["fs"] }
|
|
|
|
[[bin]]
|
|
name = "tty"
|
|
path = "src/main.rs"
|