-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.08 KB
/
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
48
49
50
[package]
name = "ql-grep"
version = "0.1.0"
edition = "2021"
[dependencies]
ansi_term = "^0.12"
anyhow = "^1"
clap = { version = "^4.1", features = ["derive"] }
clap_complete = "^4.1"
clap_mangen = "^0.2"
combine = "^4.6"
crossbeam-channel = "^0.5"
gcollections = "^1.5"
ignore = "^0.4"
intervallum = "^1.4"
is-terminal = "^0.4"
knuffel = "^2"
lazy_static = "^1.4"
miette = { version = "^4.3", features=["fancy"] }
num_cpus = "^1"
once_cell = "^1.16"
pretty = "^0.11"
regex = "^1"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter"]}
thiserror = "^1"
tree-sitter = "^0.20"
tree-sitter-c = "^0.20"
tree-sitter-cpp = "^0.20"
tree-sitter-java = "^0.20"
# Required for building the tree-sitter-ql submodule, which is not available on crates.io
#
# See [ref:tree-sitter-ql-grammar-build]
[build-dependencies]
cc="^1.0"
[dev-dependencies]
test-generator = "^0.3"
# Used to specify the expected formats of tests (see [ref:toml-test-cases])
toml = "^0.5"
[lib]
crate-type = ["rlib", "dylib"]
[[bin]]
name = "qg"