-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (48 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
67 lines (48 loc) · 1.46 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
[package]
name = "rustfox"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Telegram bot framework
teloxide = { version = "0.17", features = ["macros"] }
# HTTP client for OpenRouter
reqwest = { version = "0.12", features = ["json", "stream"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Configuration
toml = "0.8"
# MCP client
rmcp = { version = "0.15", features = ["client", "transport-child-process", "transport-io", "transport-streamable-http-client-reqwest"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1"
# Async utilities
futures = "0.3"
futures-util = "0.3"
# Async trait support
async-trait = "0.1"
# SQLite database with FTS5 and vector search support
rusqlite = { version = "0.34", features = ["bundled", "modern-full"] }
# UUID for message/entry IDs
uuid = { version = "1", features = ["v4"] }
# Chrono for timestamps
chrono = { version = "0.4", features = ["serde"] }
# Background task scheduler
tokio-cron-scheduler = "0.13"
# Markdown parser for entity-based Telegram message formatting
pulldown-cmark = "0.12"
# SQLite vector search extension
sqlite-vec = "0.1"
# Setup wizard web server (used only by src/bin/setup.rs)
axum = "0.8"
# OAuth 2.0 / PKCE helpers (used only by src/bin/setup.rs)
rand = "0.8"
sha2 = "0.10"
base64 = "0.22"
[dev-dependencies]
tempfile = "3"