-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 792 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (31 loc) · 792 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
33
[package]
name = "code-search-cli"
version = "0.1.0"
edition = "2021"
description = "Tree-sitter based local code search CLI"
license = "MIT"
repository = "https://github.com/4fuu/code-search-cli"
homepage = "https://github.com/4fuu/code-search-cli"
readme = "README.md"
[[bin]]
name = "codes"
path = "src/main.rs"
[dependencies]
tree-sitter = "0.24"
tree-sitter-rust = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-go = "0.23"
tree-sitter-javascript = "0.23.1"
tree-sitter-java = "0.23.5"
tree-sitter-ruby = "0.23.1"
tree-sitter-php = "0.23.11"
ignore = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
anyhow = "1"
thiserror = "2"
streaming-iterator = "0.1"
rayon = "1"
bincode = "1"