[package]
edition = "2024"
rust-version = "1.85"
name = "agent-team-mail"
version = "0.14.0"
authors = ["agent-team-mail contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for agent-team-mail: send, read, and manage messages for AI agent teams"
homepage = "https://github.com/randlee/agent-team-mail"
readme = false
keywords = [
"ai-agents",
"messaging",
"team-communication",
"claude",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/randlee/agent-team-mail"
resolver = "2"
[[bin]]
name = "atm"
path = "src/main.rs"
[[test]]
name = "integration_auto_identity"
path = "tests/integration_auto_identity.rs"
[[test]]
name = "integration_broadcast"
path = "tests/integration_broadcast.rs"
[[test]]
name = "integration_conflict_tests"
path = "tests/integration_conflict_tests.rs"
[[test]]
name = "integration_discovery"
path = "tests/integration_discovery.rs"
[[test]]
name = "integration_e2e_workflows"
path = "tests/integration_e2e_workflows.rs"
[[test]]
name = "integration_inbox"
path = "tests/integration_inbox.rs"
[[test]]
name = "integration_read"
path = "tests/integration_read.rs"
[[test]]
name = "integration_read_timeout"
path = "tests/integration_read_timeout.rs"
[[test]]
name = "integration_send"
path = "tests/integration_send.rs"
[dependencies.agent-team-mail-core]
version = "=0.14.0"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.notify]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"