-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 768 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 768 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
34
[package]
name = "smartgrep"
version = "0.2.1"
edition = "2021"
description = "Structural code navigation for agents"
[lib]
name = "smartgrep"
path = "src/lib.rs"
[[bin]]
name = "smartgrep"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tree-sitter = "0.24"
tree-sitter-rust = "0.23"
tree-sitter-java = "0.23"
tree-sitter-go = "0.23"
tree-sitter-typescript = "0.23"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
ignore = "0.4"
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
[target.'cfg(target_os = "macos")'.dependencies]
notify = { version = "6", features = ["macos_fsevent"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
notify = { version = "6" }