[package]
name = "tasker-ctl"
version = "0.1.3"
edition = "2021"
license = "MIT"
description = "Command-line interface for the Tasker orchestration system"
readme = "README.md"
repository = "https://github.com/tasker-systems/tasker-core"
keywords = ["cli", "orchestration", "workflow", "task-management"]
categories = ["command-line-utilities"]
[[bin]]
name = "tasker-ctl"
path = "src/main.rs"
[dependencies]
tasker-client = { path = "../tasker-client", version = "=0.1.3" }
tasker-shared = { path = "../tasker-shared", version = "=0.1.3" }
clap = { workspace = true, features = ["color", "derive", "env"] }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
toml = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
rsa = { workspace = true }
rand = { workspace = true }
validator = { workspace = true }
regex = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
askama = { workspace = true }
anstream = { workspace = true }
anstyle = { workspace = true }
tera = { workspace = true }
heck = { workspace = true }
thiserror = { workspace = true }
toml_edit = { workspace = true }
[features]
default = []
[dev-dependencies]
serial_test = { workspace = true }
tempfile = { workspace = true }
[lints]
workspace = true
[package.metadata.cargo-machete]
ignored = ["rand", "serde"]