tinytown 0.10.0

A simple, fast multi-agent orchestration system using Redis for message passing
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "tinytown"
version = "0.10.0"
authors = ["Jeremy Plichta <jeremy.plichta@redis.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, fast multi-agent orchestration system using Redis for message passing"
readme = "README.md"
keywords = [
    "agents",
    "orchestration",
    "redis",
    "multi-agent",
]
categories = [
    "command-line-utilities",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/redis-field-engineering/tinytown"

[lib]
name = "tinytown"
path = "src/lib.rs"

[[bin]]
name = "townhall"
path = "src/bin/townhall.rs"

[[bin]]
name = "tt"
path = "src/main.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "mcp_integration_tests"
path = "tests/mcp_integration_tests.rs"

[[test]]
name = "townhall_integration_tests"
path = "tests/townhall_integration_tests.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.argon2]
version = "0.5.3"
features = ["password-hash"]

[dependencies.async-trait]
version = "0.1.89"

[dependencies.axum]
version = "0.8"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.dirs]
version = "6.0.0"

[dependencies.getrandom]
version = "0.4.2"

[dependencies.hex]
version = "0.4.3"

[dependencies.libc]
version = "0.2.183"

[dependencies.redis]
version = "0.27"
features = [
    "tokio-comp",
    "connection-manager",
    "tokio-rustls-comp",
]

[dependencies.regex]
version = "1.12.3"

[dependencies.schemars]
version = "1.2"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.44"
features = ["full"]

[dependencies.toml]
version = "1.0.6"

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
version = "0.6"
features = [
    "compression-full",
    "cors",
    "timeout",
    "trace",
    "request-id",
]

[dependencies.tower-mcp]
version = "0.8"
features = [
    "http",
    "testing",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.url]
version = "2.5"

[dependencies.uuid]
version = "1.16"
features = [
    "v4",
    "serde",
]

[dev-dependencies.axum-test]
version = "19.1.1"

[dev-dependencies.libc]
version = "0.2.183"

[dev-dependencies.serial_test]
version = "3.4.0"

[dev-dependencies.tempfile]
version = "3.19"

[dev-dependencies.testcontainers]
version = "0.24"

[dev-dependencies.testcontainers-modules]
version = "0.12"
features = ["redis"]

[dev-dependencies.tokio-test]
version = "0.4"