diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-02-10 16:17:45 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-02-10 16:17:45 +0200 |
| commit | 4d6926a12e95a36f779d8a06bb16f4fb22da25a0 (patch) | |
| tree | 9a35d5692f952e366fe2ba6d5590ffd115ffd286 /zkvms_host_io | |
| parent | 6a310e1ae93acb0cf8943406322b6d01249a4ae4 (diff) | |
| download | zkVMs-benchmarks-4d6926a12e95a36f779d8a06bb16f4fb22da25a0.tar zkVMs-benchmarks-4d6926a12e95a36f779d8a06bb16f4fb22da25a0.tar.gz zkVMs-benchmarks-4d6926a12e95a36f779d8a06bb16f4fb22da25a0.zip | |
docs(zkvms_host_io): Improve help message
Diffstat (limited to 'zkvms_host_io')
| -rw-r--r-- | zkvms_host_io/src/lib.rs | 11 |
1 files changed, 8 insertions, 3 deletions
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<String>, - /// Path to public input file in (TOML format) + /// Path to public input file (in TOML format) public_input: Option<String>, /// Enable benchmark timer and formatted output |
