ves-stark-cli 0.2.3

CLI tool for VES STARK proof generation and verification
[package]
name = "ves-stark-cli"
version.workspace = true
edition = "2021"
rust-version = "1.90"
description = "CLI tool for VES STARK proof generation and verification"
license = "MIT OR Apache-2.0"

[features]
default = []
dev = ["ves-stark-client/dev"]

[[bin]]
name = "ves-stark"
path = "src/main.rs"

[dependencies]
ves-stark-primitives = { version = "0.2.3", path = "../ves-stark-primitives" }
ves-stark-air = { version = "0.2.3", path = "../ves-stark-air" }
ves-stark-prover = { version = "0.2.3", path = "../ves-stark-prover" }
ves-stark-verifier = { version = "0.2.3", path = "../ves-stark-verifier" }
ves-stark-batch = { version = "0.2.3", path = "../ves-stark-batch" }
ves-stark-client = { version = "0.2.3", path = "../ves-stark-client" }
clap = { version = "4", features = ["derive"] }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
hex = { workspace = true }
base64 = "0.22"
anyhow = { workspace = true }
rand = { workspace = true }
rayon = "1.8"
tokio = { workspace = true }