[package]
edition = "2021"
rust-version = "1.86"
name = "teamctl"
version = "0.11.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "teamctl"
description = "Declarative CLI for running persistent AI agent teams."
readme = false
license = "MIT"
repository = "https://github.com/Alireza29675/teamctl"
[[bin]]
name = "teamctl"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "install_sh_claude_version_floor"
path = "tests/install_sh_claude_version_floor.rs"
[[test]]
name = "install_sh_plugin_ref"
path = "tests/install_sh_plugin_ref.rs"
[[test]]
name = "install_sh_target_triple"
path = "tests/install_sh_target_triple.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.include_dir]
version = "0.7"
[dependencies.libc]
version = "0.2"
[dependencies.portable-pty]
version = "0.9"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"multipart",
]
default-features = false
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shlex]
version = "1"
[dependencies.team-core]
version = "0.11.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"