aion-cli 0.5.0

The `aion` command line: operate Aion durable workflows over gRPC and run the Aion server.
[package]
name = "aion-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "The `aion` command line: operate Aion durable workflows over gRPC and run the Aion server."
documentation = "https://docs.rs/aion-cli"
readme = "README.md"
keywords = ["aion", "workflow", "durable-execution", "cli", "grpc"]
categories = ["command-line-utilities", "development-tools"]

[lints]
workspace = true

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

[dependencies]
aion-client = { version = "0.5.0", path = "../aion-client" }
aion-core = { version = "0.5.0", path = "../aion-core" }
aion-package = { version = "0.5.0", path = "../aion-package" }
aion-server = { version = "0.5.0", path = "../aion-server" }
# Deploy is an operator API: its gRPC stub comes from aion-proto's generated
# module, never from aion-client (the caller SDK is contract-bound and must
# not grow operator operations).
aion-proto = { version = "0.5.0", path = "../aion-proto", features = ["generated"] }
prost = { workspace = true }
tonic = { workspace = true, features = ["transport"] }
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
uuid = { workspace = true }

[dev-dependencies]
aion-store = { version = "0.5.0", path = "../aion-store" }
tempfile = "3.27.0"
tokio = { workspace = true, features = ["macros", "net", "rt-multi-thread"] }
tokio-stream = { version = "0.1", features = ["net"] }

[features]
# Forwarded to the embedded server. Off by default, matching the feature set
# the standalone `aion-server` binary shipped with.
auth = ["aion-server/auth"]