rust-parallel 1.19.0

Fast command line app in rust/tokio to run commands in parallel. Similar interface to GNU parallel or xargs.
[[bin]]
name = "rust-parallel"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.indicatif]
version = "0.18"

[dependencies.itertools]
version = "0.14"

[dependencies.num_cpus]
version = "1"

[dependencies.regex]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.which]
version = "8"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[lints.rust]
unsafe_code = "forbid"

[package]
authors = ["Aaron Riekenberg <aaron.riekenberg@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "command-line-interface", "concurrency"]
description = "Fast command line app in rust/tokio to run commands in parallel. Similar interface to GNU parallel or xargs."
edition = "2024"
keywords = ["cli", "parallel", "tokio"]
license = "MIT"
name = "rust-parallel"
readme = "README.md"
repository = "https://github.com/aaronriekenberg/rust-parallel"
version = "1.19.0"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"