knishio-cli 0.1.2

KnishIO validator orchestration CLI — Docker control, cell management, benchmarks, and health checks
[package]
name = "knishio-cli"
version = "0.1.2"
edition = "2021"
description = "KnishIO validator orchestration CLI — Docker control, cell management, benchmarks, and health checks"
license = "GPL-3.0-or-later"
authors = ["Eugene Teplitsky"]
repository = "https://github.com/WishKnish/KnishIO-CLI"
keywords = ["knishio", "dlt", "validator", "cli", "docker"]
categories = ["command-line-utilities"]
readme = "README.md"

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

[dependencies]
# CLI argument parsing
clap = { version = "4.5", features = ["derive"] }

# Async runtime
tokio = { version = "1.40", features = ["rt-multi-thread", "macros", "process"] }

# HTTP client for health and benchmark endpoints
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }

# JSON serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Terminal colors
colored = "2.1"

# Table formatting
tabled = "0.16"

# TOML config file parsing
toml = "0.8"

# Error handling
anyhow = "1.0"
thiserror = "2.0"

# Progress bars (benchmark)
indicatif = "0.17"

# KnishIO SDK for molecule signing and wallet operations (benchmark)
knishio-client = "0.1.2"

# SQLite for benchmark fixture storage
rusqlite = { version = "0.31", features = ["bundled"] }

# Latency plot rendering (benchmark PNG output)
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "line_series", "bitmap_encoder", "ttf"] }

# Random number generation (benchmark endpoint selection)
rand = "0.8"

# Async stream utilities (benchmark concurrent execution)
futures-util = "0.3"

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