[package]
name = "concurrent_shell_commands"
version = "0.3.0"
autobins = false
edition = "2024"
include = [
"src/",
"LICENSE.md",
"README.md",
]
license = "ISC"
readme = "README.md"
repository = "https://github.com/kevgo/conc"
rust-version = "1.85.0"
description = "runs commands concurrently and display their name and output, with configurable filtering of output"
[lib]
name = "conc"
[[bin]]
name = "conc"
path = "src/main.rs"
[dependencies]
colored = "3.0.0"
[dev-dependencies]
big_s = "1.0.2"
cucumber = "0.22.1"
pretty = { package = "pretty_assertions", version = "1.4.1" }
shellwords = "1.1.0"
tempfile = "3.24.0"
tokio = { version = "1.49", features = ["fs", "io-util", "macros", "process", "rt"] }
[[test]]
name = "cucumber"
harness = false
test = false
[profile.release]
opt-level = 's'
lto = true
codegen-units = 1
panic = "unwind"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
use_self = "deny"
[lints.clippy]
pedantic = { priority = -1, level = "deny" }
derive_partial_eq_without_eq = "deny"
impl_trait_in_params = "deny"
module_name_repetitions = "deny"
redundant_pub_crate = "deny"
str_to_string = "deny"
missing_errors_doc = "allow"
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"