[package]
name = "tala-cli"
version = "0.33.0"
edition = "2021"
description = "Agent-to-agent messaging for AI coding tools"
license = "MIT"
repository = "https://github.com/davegarvey/tala"
keywords = ["agent", "ai", "messaging", "cli", "chat"]
categories = ["command-line-utilities", "development-tools"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/tala-{ os-name }-{ target-arch }{ binary-ext }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[[bin]]
name = "tala"
path = "src/main.rs"
[dev-dependencies]
tempfile = "3"
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
tower-http = { version = "0.5", features = ["cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
libc = "0.2"
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
uuid = { version = "1", features = ["v4"] }