From 4d6926a12e95a36f779d8a06bb16f4fb22da25a0 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Mon, 10 Feb 2025 16:17:45 +0200 Subject: docs(zkvms_host_io): Improve help message --- zkvms_host_io/src/lib.rs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'zkvms_host_io') diff --git a/zkvms_host_io/src/lib.rs b/zkvms_host_io/src/lib.rs index 9448789..2d2ded0 100644 --- a/zkvms_host_io/src/lib.rs +++ b/zkvms_host_io/src/lib.rs @@ -9,16 +9,21 @@ static DEFAULT_PUBLIC_INPUT: &str = include_str!(concat!(env!("INPUTS_DIR"), "/d static DEFAULT_PRIVATE_INPUT: &str = include_str!(concat!(env!("INPUTS_DIR"), "/default_private_input.toml")); static DEFAULT_ENV: &str = include_str!(concat!(env!("INPUTS_DIR"), "/default.env")); +/// A CLI tool for running and benchmarking guest programs inside a zkVM +/// environment. +/// This binary has been built with a single zkVM and guest program in mind. +/// If you want to run or benchmark your own guest program inside a zkVM, +/// head on over to https://github.com/blocksense-network/zkVMs-benchmarks #[derive(Parser, Debug)] #[command(version, about, long_about = None)] struct Cli { - /// ZKVM action (execute, prove, verify) + /// What should the zkVM do with the guest run_type: RunType, - /// Path to private input file in (TOML format) + /// Path to private input file (in TOML format) private_input: Option, - /// Path to public input file in (TOML format) + /// Path to public input file (in TOML format) public_input: Option, /// Enable benchmark timer and formatted output -- cgit v1.2.3