[package]
name = "rust-parallel"
version = "1.3.0"
authors = ["Aaron Riekenberg <aaron.riekenberg@gmail.com>"]
edition = "2021"
categories = ["asynchronous", "command-line-interface", "concurrency"]
description = "Fast command line app in rust/tokio to execute commands in parallel. Similar interface to GNU parallel or xargs."
keywords = ["cli", "parallel", "tokio"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/aaronriekenberg/rust-parallel"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
itertools = "0.10"
num_cpus = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"