-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (62 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (62 loc) · 1.92 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
[package]
name = "tinytown"
version = "0.10.0"
edition = "2024"
authors = ["Jeremy Plichta <jeremy.plichta@redis.com>"]
description = "A simple, fast multi-agent orchestration system using Redis for message passing"
license = "MIT"
readme = "README.md"
repository = "https://github.com/redis-field-engineering/tinytown"
keywords = ["agents", "orchestration", "redis", "multi-agent"]
categories = ["command-line-utilities", "concurrency"]
[dependencies]
# Redis client with Unix socket, TLS, and connection manager support.
# Use rustls for TLS so release cross-compiles do not depend on musl OpenSSL.
redis = { version = "0.27", features = ["tokio-comp", "connection-manager", "tokio-rustls-comp"] }
# Async runtime
tokio = { version = "1.44", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Utilities
uuid = { version = "1.16", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
toml = "1.0.6"
dirs = "6.0.0"
libc = "0.2.183"
# Web (for townhall)
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["compression-full", "cors", "timeout", "trace", "request-id"] }
argon2 = { version = "0.5.3", features = ["password-hash"] }
hex = "0.4.3"
getrandom = "0.4.2"
# MCP (Model Context Protocol)
tower-mcp = { version = "0.8", features = ["http", "testing"] }
schemars = "1.2"
regex = "1.12.3"
async-trait = "0.1.89"
futures-core = "0.3"
url = "2.5"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.19"
testcontainers = "0.24"
testcontainers-modules = { version = "0.12", features = ["redis"] }
libc = "0.2.183"
serial_test = "3.4.0"
axum-test = "19.1.1"
[[bin]]
name = "tt"
path = "src/main.rs"
[[bin]]
name = "townhall"
path = "src/bin/townhall.rs"