-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 706 Bytes
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
[package]
name = "tree-sitter-grep"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.0", features = ["derive"] }
grep = { git = "https://github.com/helixbass/ripgrep", rev = "b83cc3c" }
ignore = "0.4.20"
libc = "0.2.144"
libloading = "0.8.0"
once_cell = "1.17.1"
rayon = "1.7.0"
regex = "1.8.2"
termcolor = "1.2.0"
tree-sitter = "0.20.10"
tree-sitter-javascript = "0.20.0"
tree-sitter-rust = "0.20.3"
tree-sitter-typescript = "0.20.2"
[lib]
name = "tree_sitter_grep"
[[bin]]
name = "tree-sitter-grep"
[dev-dependencies]
assert_cmd = "2.0.11"
predicates = "3.0.3"
shlex = "1.1.0"