[package]
edition = "2024"
rust-version = "1.85"
name = "aion-cli"
version = "0.2.0"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line client for operating Aion durable workflows over gRPC."
documentation = "https://docs.rs/aion-cli"
readme = "README.md"
keywords = [
"aion",
"workflow",
"durable-execution",
"cli",
"grpc",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tomWhiting/aion"
resolver = "2"
[[bin]]
name = "aion-cli"
path = "src/main.rs"
[[test]]
name = "error_rendering"
path = "tests/error_rendering.rs"
[[test]]
name = "package_command"
path = "tests/package_command.rs"
[dependencies.aion-client]
version = "0.2.0"
[dependencies.aion-core]
version = "0.2.0"
[dependencies.aion-package]
version = "0.2.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.uuid]
version = "1.23"
[dev-dependencies.aion-proto]
version = "0.2.0"
features = ["generated"]
[dev-dependencies.prost]
version = "0.14"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"net",
"rt-multi-thread",
]
[dev-dependencies.tonic]
version = "0.14"
features = ["transport"]
[lints.clippy]
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"