[package]
edition = "2024"
rust-version = "1.85"
name = "atman-cli"
version = "1.10.0"
authors = ["W-Mai"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "atman command-line interface — AI coding agent runtime with a Turing-complete .at flow DSL"
homepage = "https://atman.run"
readme = false
keywords = [
"atman",
"cli",
"agent",
"ai",
"coding",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/W-Mai/atman"
[package.metadata.dist]
dist = true
[package.metadata.wix]
upgrade-guid = "9423FACA-635E-4F41-9BC3-CAE25ED07736"
path-guid = "92345BB1-0DC9-44A4-A476-5A8F26F1EA0E"
license = false
eula = false
[[bin]]
name = "atman"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cost_cli"
path = "tests/cost_cli.rs"
[[test]]
name = "doctor_cli"
path = "tests/doctor_cli.rs"
[[test]]
name = "flow_cli"
path = "tests/flow_cli.rs"
[[test]]
name = "flow_lint_cli"
path = "tests/flow_lint_cli.rs"
[[test]]
name = "flow_test_cli"
path = "tests/flow_test_cli.rs"
[[test]]
name = "init_cli"
path = "tests/init_cli.rs"
[[test]]
name = "logs_stream_cli"
path = "tests/logs_stream_cli.rs"
[[test]]
name = "migrate_cli"
path = "tests/migrate_cli.rs"
[[test]]
name = "sync_cli"
path = "tests/sync_cli.rs"
[[test]]
name = "upgrade_cli"
path = "tests/upgrade_cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.atman-daemon]
version = "1.10.0"
[dependencies.atman-dsl]
version = "1.10.0"
[dependencies.atman-proto]
version = "1.10.0"
[dependencies.atman-runtime]
version = "1.10.0"
[dependencies.atman-tui]
version = "1.10.0"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.futures]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.open]
version = "5"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"stream",
]
default-features = false
[dependencies.rustyline]
version = "17"
features = ["custom-bindings"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.similar]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"io-util",
"process",
"time",
"signal",
"net",
]
[dependencies.toml]
version = "0.9"
[dependencies.unicode-width]
version = "0.2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-util]
version = "0.7"
features = ["rt"]