coreutils/src/uu/stty/Cargo.toml

25 lines
685 B
TOML
Raw Normal View History

2022-06-24 18:01:02 +00:00
[package]
name = "uu_stty"
2022-08-20 10:27:53 +00:00
version = "0.0.15"
2022-06-24 18:01:02 +00:00
authors = ["uutils developers"]
license = "MIT"
description = "stty ~ (uutils) print or change terminal characteristics"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/stty"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"
[lib]
path = "src/stty.rs"
[dependencies]
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
2022-08-20 10:27:53 +00:00
uucore = { version=">=0.0.15", package="uucore", path="../../uucore" }
2022-08-19 10:34:51 +00:00
nix = { version="0.25", features = ["term"] }
2022-06-24 18:01:02 +00:00
[[bin]]
name = "stty"
path = "src/main.rs"