forked from denoland/deno_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 999 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "deno_lint"
version = "0.56.0"
edition = "2021"
description = "lint for deno"
authors = ["the Deno authors"]
license = "MIT"
repository = "https://github.com/denoland/deno_lint"
keywords = ["deno", "lint"]
categories = ["development-tools"]
exclude = [
"benchmarks/*",
]
[lib]
name = "deno_lint"
[[example]]
name = "dlint"
required-features = ["docs"]
test = true
[features]
default = []
docs = []
[dependencies]
deno_ast = { version = "0.33.0", features = ["scopes", "transforms", "utils", "visit", "view"] }
log = "0.4.20"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
regex = "1.10.2"
once_cell = "1.19.0"
derive_more = { version = "0.99.17", features = ["display"] }
anyhow = "1.0.79"
if_chain = "1.0.2"
[dev-dependencies]
ansi_term = "0.12.1"
atty = "0.2.14"
clap = { version = "3", features = ["cargo"] }
env_logger = "0.10.1"
globwalk = "0.9.1"
os_pipe = "1.1.5"
pulldown-cmark = "0.9.3"
rayon = "1.8.0"
console_static_text = "0.8.2"