-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (81 loc) · 2.47 KB
/
Cargo.toml
File metadata and controls
97 lines (81 loc) · 2.47 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
[package]
name = "chitty-workspace"
version = "0.1.4"
edition = "2021"
description = "Chitty Workspace - Local AI assistant with agents, tools, and BYOK providers"
authors = ["DataVisions"]
license = "MIT"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web/HTTP
reqwest = { version = "0.12", features = ["json", "stream"] }
axum = { version = "0.7", features = ["ws"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tower-http = { version = "0.5", features = ["cors", "fs"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Database (local SQLite)
rusqlite = { version = "0.31", features = ["bundled"] }
# UI
tray-icon = "0.14"
tao = "0.28"
wry = "0.41"
# CLI
clap = { version = "4", features = ["derive"] }
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
directories = "5"
keyring = "2"
base64 = "0.22"
async-trait = "0.1"
# OAuth PKCE
sha2 = "0.10"
rand = "0.9"
urlencoding = "2"
# TLS (self-signed cert for localhost OAuth callbacks)
rcgen = "0.13"
rustls = "0.23"
rustls-pemfile = "2"
# Scheduler (cron expression parsing)
cron = "0.13"
# Tools (code search, web scraping)
walkdir = "2"
which = "6"
regex = "1"
scraper = "0.21"
url = "2"
socket2 = "0.5"
# Tree-sitter (structural code analysis)
tree-sitter = { version = "0.24", optional = true }
tree-sitter-rust = { version = "0.23", optional = true }
tree-sitter-python = { version = "0.23", optional = true }
tree-sitter-javascript = { version = "0.23", optional = true }
tree-sitter-typescript = { version = "0.23", optional = true }
tree-sitter-go = { version = "0.23", optional = true }
tree-sitter-json = { version = "0.24", optional = true }
# SSE parsing (for streaming LLM responses)
eventsource-stream = "0.2"
futures = "0.3"
tokio-stream = { version = "0.1", features = ["sync"] }
# Browser automation (Chrome DevTools Protocol) — optional, for headless/CI testing
chromiumoxide = { version = "0.7", features = ["tokio-runtime"], optional = true }
[features]
default = ["tree-sitter-tools"]
cdp-browser = ["chromiumoxide"]
tree-sitter-tools = [
"tree-sitter", "tree-sitter-rust", "tree-sitter-python",
"tree-sitter-javascript", "tree-sitter-typescript",
"tree-sitter-go", "tree-sitter-json",
]
[profile.release]
opt-level = "z"
lto = true
strip = true