1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-20 04:01:06 +00:00
uutils-coreutils/src/uu/env/Cargo.toml

28 lines
718 B
TOML

[package]
name = "uu_env"
version = "0.0.26"
authors = ["uutils developers"]
license = "MIT"
description = "env ~ (uutils) set each NAME to VALUE in the environment and run COMMAND"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/env"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"
[lib]
path = "src/env.rs"
[dependencies]
clap = { workspace = true }
rust-ini = { workspace = true }
uucore = { workspace = true, features = ["signals"] }
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["signal"] }
[[bin]]
name = "env"
path = "src/main.rs"