life-cli 0.3.1

Production agent deployment pipeline for Life Agent OS
Documentation
[package]
name = "life-cli"
version = "0.3.1"
edition = "2024"
rust-version = "1.85"
license = "MIT"
authors = ["Broomva <carlos@broomva.tech>"]
repository = "https://github.com/broomva/life"
description = "Production agent deployment pipeline for Life Agent OS"
keywords = ["agent", "deployment", "orchestration", "railway", "life"]
categories = ["command-line-utilities"]

[lib]
name = "life_cli"
path = "src/lib.rs"

[[bin]]
name = "life"
path = "src/main.rs"

[lints.rust]
unsafe_code = "deny"

[lints.clippy]
dbg_macro = "warn"
todo = "warn"

[dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "process"] }
toml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
tabled = "0.18"
uuid = { version = "1", features = ["v4"] }
dirs = "6"

# Relay daemon (local agent ↔ broomva.tech bridge)
life-relayd = { path = "../../relay/life-relayd", version = "0.3.0" }
life-relay-core = { path = "../../relay/life-relay-core", version = "0.3.0" }

# Shared path resolution + credential cascade
life-paths = { path = "../../life-paths", version = "0.3.0" }

[dev-dependencies]
tempfile = "3"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"