forked from codeprysm/codeprysm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
129 lines (102 loc) · 2.69 KB
/
Cargo.toml
File metadata and controls
129 lines (102 loc) · 2.69 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# CodePrism - Rust Implementation
# High-performance code graph generation and semantic search
[workspace]
resolver = "2"
members = [
"crates/codeprysm-core",
"crates/codeprysm-search",
"crates/codeprysm-mcp",
"crates/codeprysm-config",
"crates/codeprysm-backend",
"crates/codeprysm-cli",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/codeprysm/codeprysm"
homepage = "https://github.com/codeprysm/codeprysm"
rust-version = "1.85"
[workspace.dependencies]
# AST Parsing
tree-sitter = "0.25"
tree-sitter-python = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-rust = "0.23"
tree-sitter-go = "0.23"
tree-sitter-c = "0.24"
tree-sitter-cpp = "0.23"
tree-sitter-c-sharp = "0.23"
# Manifest parsing (validated in dev/smoke-tests/manifest-parsing)
tree-sitter-json = "0.24"
tree-sitter-toml-ng = "0.7"
tree-sitter-gomod-orchard = "0.5"
tree-sitter-xml = "0.7"
tree-sitter-cmake = "0.7"
# Graph
petgraph = "0.8"
# SQLite (lazy loading)
rusqlite = { version = "0.32", features = ["bundled"] }
# Caching
lru = "0.12"
# Vector DB
qdrant-client = "1.13"
# Embeddings (Candle ecosystem)
candle-core = "0.9"
candle-nn = "0.9"
candle-transformers = "0.9"
hf-hub = "0.4"
tokenizers = "0.20"
# MCP - Official Anthropic SDK
rmcp = { version = "0.11", features = ["server", "macros", "transport-io"] }
# JSON Schema
schemars = "0.8"
# Async
tokio = { version = "1", features = ["full"] }
rayon = "1.10"
async-trait = "0.1"
# HTTP Client
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Rate limiting
governor = "0.8"
# Hashing
sha2 = "0.10"
# Date/Time
chrono = { version = "0.4", features = ["serde"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
indicatif = "0.17"
# File walking
walkdir = "2.5"
ignore = "0.4"
# Regex
regex = "1.11"
# Encoding detection
encoding_rs = "0.8"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Concurrency
once_cell = "1.20"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Internal crates
codeprysm-core = { version = "0.1.0", path = "crates/codeprysm-core" }
codeprysm-search = { version = "0.1.0", path = "crates/codeprysm-search" }
codeprysm-mcp = { version = "0.1.0", path = "crates/codeprysm-mcp" }
codeprysm-config = { version = "0.1.0", path = "crates/codeprysm-config" }
codeprysm-backend = { version = "0.1.0", path = "crates/codeprysm-backend" }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[profile.dev]
# Faster dev builds
opt-level = 0
debug = true