-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
34 lines (29 loc) · 916 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "rust-parallel"
version = "1.18.1"
authors = ["Aaron Riekenberg <[email protected]>"]
edition = "2021"
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."
keywords = ["cli", "parallel", "tokio"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/aaronriekenberg/rust-parallel"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
indicatif = "0.17"
itertools = "0.14"
num_cpus = "1"
regex = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
which = "7"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[lints.rust]
unsafe_code = "forbid"