-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (63 loc) · 1.71 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (63 loc) · 1.71 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
[workspace]
members = [".", "ui"]
[package]
name = "exoclaw"
version = "0.1.0"
edition = "2024"
description = "A secure, WASM-sandboxed AI agent runtime"
license = "MIT OR Apache-2.0"
repository = "https://github.com/exoclaw/exoclaw"
keywords = ["ai", "agent", "wasm", "runtime", "llm"]
categories = ["command-line-utilities", "web-programming"]
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP/WebSocket server
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1" # MessagePack
toml = "0.8" # Config file parsing
# WASM plugin host
extism = "1"
# HTTP client (for LLM API calls)
reqwest = { version = "0.12", features = ["stream", "rustls-tls", "json"] }
# Message bus
async-nats = "0.38"
# CLI
clap = { version = "4", features = ["derive", "env"] }
rpassword = "7"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Trait async support
async-trait = "0.1"
# URL parsing (for webhook proxy host validation)
url = "2"
# Embedded static assets (serves UI WASM bundle)
rust-embed = { version = "8", features = ["mime-guess"] }
mime_guess = "2"
# Utilities
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
anyhow = "1"
futures = "0.3"
tokio-stream = "0.1"
subtle = "2"
[dev-dependencies]
tokio-test = "0.4"
criterion = "0.5"
[[bench]]
name = "router_bench"
harness = false
[[bench]]
name = "sandbox_bench"
harness = false
[profile.release]
lto = true
strip = true
codegen-units = 1