-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (49 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
57 lines (49 loc) · 1.4 KB
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
51
52
53
54
55
56
57
[package]
name = "codegraph-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core dependencies for codegraph
petgraph = { version = "0.6", features = ["serde-1"] }
bincode = "1.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
clap = { version = "4.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
# HTTP service dependencies
axum = "0.7"
tokio = { version = "1.43", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
# File processing dependencies
md5 = "0.7"
notify = "6.1"
# AST parsing dependencies (copied from original project)
tree-sitter = "0.25"
tree-sitter-cpp = "0.23"
tree-sitter-java = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-rust = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-go = "0.23"
# Additional dependencies for treesitter functionality
ropey = "1.6"
regex = "1.9"
glob = "0.3"
walkdir = "2.4"
async-trait = "0.1"
dyn_partial_eq = "0.1"
parking_lot = "0.12"
itertools = "0.14"
similar = "2.3"
typetag = "0.2"
# Vector database dependencies
qdrant-client = "1.11"
# HTTP client for embedding service
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
[dev-dependencies]
tempfile = "3.8"