[package]
name = "bzzz-cli"
version = "0.1.0"
edition = "2021"
description = "Bzzz CLI - Command line interface for Agent orchestration"
repository = "https://github.com/fengjunhui/bzzz"
homepage = "https://github.com/fengjunhui/bzzz"
license = "MIT"
authors = ["Bzzz Contributors"]
keywords = ["ai-agents", "orchestration", "multi-agent", "a2a", "cli"]
categories = ["command-line-utilities", "concurrency"]
readme = "../../README.md"
documentation = "https://docs.rs/bzzz-cli"
exclude = [
"tests/*",
]
[[bin]]
name = "bzzz"
path = "src/main.rs"
[dependencies]
bzzz-core = { version = "0.1.0", path = "../bzzz-core" }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
clap = { version = "4", features = ["derive"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }