concurrent_shell_commands 0.4.1

runs commands concurrently and display their name and output, with configurable filtering of output
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85.0"
name = "concurrent_shell_commands"
version = "0.4.1"
build = false
include = [
    "features/",
    "tests/",
    "src/",
    "LICENSE.md",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "runs commands concurrently and display their name and output, with configurable filtering of output"
readme = "README.md"
license = "ISC"
repository = "https://github.com/kevgo/conc"

[lib]
name = "conc"
path = "src/lib.rs"

[[bin]]
name = "conc"
path = "src/main.rs"

[[test]]
name = "cucumber"
path = "tests/cucumber.rs"
test = false
harness = false

[dependencies.colored]
version = "3.1.1"

[dev-dependencies.big_s]
version = "1.0.2"

[dev-dependencies.cucumber]
version = "0.23.0"

[dev-dependencies.pretty]
version = "1.4.1"
package = "pretty_assertions"

[dev-dependencies.shellwords]
version = "1.1.0"

[dev-dependencies.tempfile]
version = "3.27.0"

[dev-dependencies.tokio]
version = "1.52"
features = [
    "fs",
    "io-util",
    "macros",
    "process",
    "rt",
]

[lints.clippy]
derive_partial_eq_without_eq = "deny"
expect_used = "deny"
impl_trait_in_params = "deny"
missing_errors_doc = "allow"
module_name_repetitions = "deny"
panic = "deny"
redundant_pub_crate = "deny"
str_to_string = "deny"
unwrap_used = "deny"

[lints.clippy.pedantic]
level = "deny"
priority = -1

[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "unwind"