-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (62 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
82 lines (62 loc) · 1.72 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
[workspace]
members = [
"crates/xpressclaw-core",
"crates/xpressclaw-server",
"crates/xpressclaw-cli",
"crates/xpressclaw-tauri",
]
exclude = ["external/ready-agent-cog"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Xpress AI <hello@xpress.ai>"]
repository = "https://github.com/XpressAI/xpressclaw"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework
axum = { version = "0.8", features = ["ws", "multipart"] }
axum-extra = { version = "0.10", features = ["typed-header"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs", "trace"] }
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"], default-features = false }
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
sqlite-vec = "0.1"
zerocopy = { version = "0.8", features = ["derive"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# CLI
clap = { version = "4", features = ["derive"] }
# Docker
bollard = "0.18"
# Scheduling
tokio-cron-scheduler = "0.13"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Timestamps
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1", features = ["v4"] }
# Streaming
tokio-stream = { version = "0.1", features = ["sync"] }
# Static assets
rust-embed = "8"
# Markdown
pulldown-cmark = "0.12"
# Async traits
async-trait = "0.1"
# Futures utilities
futures-util = "0.3"
open = "5"
# SOP/Procedure execution engine
ready-agent-cog = { path = "external/ready-agent-cog" }