[package]
edition = "2024"
rust-version = "1.90"
name = "agentmux"
version = "0.2.0"
build = false
include = [
"/src/**",
"/data/configuration/*.toml",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-agent coordination runtime with inter-agent messaging across CLI, MCP, tmux, and ACP."
homepage = "https://github.com/emcd/agentmux"
documentation = "https://docs.rs/agentmux"
readme = "README.md"
keywords = [
"agent",
"mcp",
"cli",
"tmux",
"coordination",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/emcd/agentmux"
[lib]
name = "agentmux"
path = "src/lib.rs"
[[bin]]
name = "agentmux"
path = "src/bin/agentmux.rs"
[[bin]]
name = "agentmux-acp"
path = "src/bin/agentmux_acp.rs"
[dependencies.anyhow]
version = "1.0.97"
[dependencies.crossterm]
version = "0.28.1"
[dependencies.libc]
version = "0.2.171"
[dependencies.ratatui]
version = "0.29.0"
[dependencies.regex]
version = "1.11.1"
[dependencies.rmcp]
version = "1.1.0"
features = ["transport-io"]
[dependencies.schemars]
version = "1.0.4"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.time]
version = "0.3.41"
features = ["formatting"]
[dependencies.tokio]
version = "1.44.1"
features = [
"macros",
"process",
"rt-multi-thread",
]
[dependencies.toml]
version = "0.8.23"
[dependencies.uuid]
version = "1.18.1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3.18.0"