-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 943 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
[package]
name = "shellcheck-all"
description = "Run Shellcheck on all the scripts!"
license = "MIT"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive"] }
clio = { version = "0.3.5", features = ["clap", "clap-parse"] }
file-format = { version = "0.24.0", features = ["reader-txt"] }
ignore = { version = "0.4.22", features = ["simd-accel"] }
lazy-regex = "3.1.0"
num_cpus = "1.16.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
strum = { version = "0.26.1", features = ["derive"] }
tokio = { version = "1.36.0", features = ["macros", "rt", "process", "sync"] }
which = "6.0.0"
[dev-dependencies]
serde = { version = "1.0.197", features = ["derive"] }
assert_cmd = { version = "2.0.14", features = ["color", "color-auto"] }
predicates = "3.1.0"