-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (92 loc) · 2.64 KB
/
Cargo.toml
File metadata and controls
119 lines (92 loc) · 2.64 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/provider",
"crates/auth",
"crates/tui",
"crates/config",
"crates/index",
"crates/harness-support",
]
[workspace.package]
version = "3.0.2"
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/Quavil/code"
homepage = "https://quavil.com"
rust-version = "1.75"
keywords = ["ai", "cli", "coding", "llm", "terminal"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", default-features = false, features = ["http1", "tokio"] }
# HTTP + streaming
reqwest = { version = "0.12", features = ["json", "stream", "multipart", "rustls-tls"], default-features = false }
eventsource-stream = "0.2"
futures = "0.3"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "0.8"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive"] }
# TUI
ratatui = "0.29"
crossterm = "0.28"
# OAuth2
oauth2 = "5"
# Credential storage
keyring = "3"
# Error handling
anyhow = "1"
thiserror = "2"
# Logging / tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Syntax highlighting
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
syntect-tui = "3"
# Async trait
async-trait = "0.1"
# Tokio utilities
tokio-util = "0.7"
# Pin projection
pin-project-lite = "0.2"
# UUID
uuid = { version = "1", features = ["v4"] }
# Chrono
chrono = { version = "0.4", features = ["serde"] }
# Directories
dirs = "6"
# Open browser
open = "5"
# File globbing
glob = "0.3"
# Regex
regex = "1"
# Random
rand = "0.9"
# Desktop notifications
notify-rust = "4"
# Self-update
self-replace = "1"
semver = "1"
# Base64 encoding
base64 = "0.22"
# SHA-2 hashing
sha2 = "0.10"
# MCP (Model Context Protocol) client
rmcp = { version = "0.16", features = ["client", "transport-child-process", "transport-streamable-http-client", "transport-streamable-http-client-reqwest", "transport-streamable-http-server"] }
# Workspace crates
quavil-core = { path = "crates/core", version = "=3.0.2" }
quavil-provider = { path = "crates/provider", version = "=3.0.2" }
quavil-auth = { path = "crates/auth", version = "=3.0.2" }
quavil-tui = { path = "crates/tui", version = "=3.0.2" }
quavil-config = { path = "crates/config", version = "=3.0.2" }
quavil-index = { path = "crates/index", version = "=3.0.2" }
quavil-harness-support = { path = "crates/harness-support", version = "=3.0.2" }