macot 0.1.13

Multi Agent Control Tower - CLI for orchestrating Claude CLI instances
Documentation
[package]
name = "macot"
version = "0.1.13"
edition = "2021"
rust-version = "1.74"
description = "Multi Agent Control Tower - CLI for orchestrating Claude CLI instances"
license = "Apache-2.0"
authors = ["Cassin01"]
repository = "https://github.com/Cassin01/multi_agent_control_tower"
homepage = "https://github.com/Cassin01/multi_agent_control_tower"
readme = "README.md"
keywords = ["cli", "ai", "agents", "orchestration", "tmux"]
categories = ["command-line-utilities", "development-tools"]

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

[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }

# CLI
clap = { version = "4", features = ["derive"] }

# TUI
ratatui = { version = "0.29", features = ["crossterm", "unstable-rendered-line-info"] }
crossterm = "0.28"

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"

# Utilities
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
hex = "0.4"
regex = "1"
async-trait = "0.1"
futures = "0.3"
minijinja = "2"
dirs = "5"
tracing-appender = "0.2.4"
ansi-to-tui = "7"
unicode-width = "0.2"

# Concurrency / filesystem
fs2 = "0.4"
notify = "6"

[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"
proptest = "1.0"