-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (38 loc) · 1000 Bytes
/
Cargo.toml
File metadata and controls
51 lines (38 loc) · 1000 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
42
43
44
45
46
47
48
49
50
51
[package]
name = "llm-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# TUI framework
ratatui = "0.26"
crossterm = "0.27"
# WebSocket
tokio-tungstenite = "0.21"
futures-util = "0.3"
# Database
mysql = "24.0"
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "mysql", "chrono"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP client for Ollama API
reqwest = { version = "0.11", features = ["json", "stream"] }
urlencoding = "2.1"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time utilities
chrono = { version = "0.4", features = ["serde"] }
# UUID for conversation IDs
uuid = { version = "1.6", features = ["v4", "serde"] }
# Environment variables
dotenv = "0.15"
# Model Context Protocol support
async-trait = "0.1"
[dev-dependencies]
tempfile = "3"