30 lines
813 B
TOML
30 lines
813 B
TOML
[package]
|
|
name = "dd0c-run-agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "dd0c/run agent — runbook automation with safety-first command execution"
|
|
|
|
[[bin]]
|
|
name = "dd0c-run"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
sha2 = "0.10"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1", features = ["v4"] }
|
|
thiserror = "1"
|
|
anyhow = "1"
|
|
serde_yaml = "0.9"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
proptest = "1"
|