forked from suo/lintrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 864 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
[package]
name = "lintrunner"
version = "0.10.7"
authors = ["Michael Suo <[email protected]>"]
edition = "2021"
description = "A lint running tool and framework."
license = "BSD-3-Clause"
[dependencies]
clap = { version = "3.1.9", features = ["derive"] }
anyhow = "1.0.56"
glob = "0.3.0"
tempfile = "3.3.0"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
textwrap = { version = "0.15.0", features = ["terminal_size"] }
similar = { version = "2.1.0", features = ["inline"] }
console = "0.15.0"
toml = "0.5.9"
log = "0.4.16"
indicatif = "0.16.2"
regex = "1.5.5"
itertools = "0.10.3"
directories = "4.0.1"
blake3 = "1.3.1"
fern = { version = "0.6.1", features = ["colored"] }
chrono = "0.4.19"
dialoguer = "0.10.1"
shell-words = "1.1.0"
[dev-dependencies]
assert_cmd = "2.0.4"
insta = { version = "1.20.0", features = ["redactions", "yaml"] }