-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.26 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
[workspace]
resolver = "2"
members = [
"canopy-core",
"canopy-client",
"canopy-mcp",
"canopy-cli",
"canopy-service",
]
[workspace.package]
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["vu1n"]
[workspace.dependencies]
# Core dependencies
pulldown-cmark = "0.12"
rusqlite = { version = "0.33", features = ["bundled"] }
tiktoken-rs = "0.6"
ignore = "0.4"
globset = "0.4"
sha2 = "0.10"
hex = "0.4"
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Tree-sitter
tree-sitter = "0.25"
tree-sitter-rust = "0.24"
tree-sitter-python = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-go = "0.23"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
colored = "3.0"
# MCP/Async
tokio = { version = "1", features = ["full"] }
# Logging / tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# HTTP Service
axum = "0.8"
tower-http = { version = "0.6", features = ["trace"] }
uuid = { version = "1", features = ["v4", "serde"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "blocking", "rustls-tls"] }
rayon = "1.10"
crossbeam-channel = "0.5"
time = { version = "0.3", features = ["formatting"] }