tinytown 0.10.0

A simple, fast multi-agent orchestration system using Redis for message passing
Documentation
[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"
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"