-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 942 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (39 loc) · 942 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
35
36
37
38
39
40
41
[workspace]
members = [
"crates/context-core",
"crates/context-storage",
"crates/context-indexer",
"crates/context-search",
"crates/context-graph",
"crates/context-mcp",
"crates/context-cli",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
ignore = "0.4"
petgraph = "0.6"
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
tantivy = "0.22"
thiserror = "1"
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tree-sitter = "0.22"
tree-sitter-java = "0.21"
tree-sitter-python = "0.21"
tree-sitter-rust = "0.21"
tree-sitter-typescript = "0.21"
windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_JobObjects",
"Win32_System_Threading",
] }