diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-04-29 16:46:32 +0300 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-05-02 15:32:54 +0300 |
| commit | 43b6a714dd8a674d1ac969015d45b4c43177f146 (patch) | |
| tree | b1d9beab84ad91060d5fc86f7753431c395c549d /zkvms_guest_io/Cargo.lock | |
| parent | c427fed7a28aee28579806fdc7cb432fd8f6a0c0 (diff) | |
| download | zkVMs-benchmarks-43b6a714dd8a674d1ac969015d45b4c43177f146.tar zkVMs-benchmarks-43b6a714dd8a674d1ac969015d45b4c43177f146.tar.gz zkVMs-benchmarks-43b6a714dd8a674d1ac969015d45b4c43177f146.zip | |
feat(zkvms_guest_io): Run all operations and output json format
Following the new output format, we'll run the guest program for each
zkVM, for each operation (execute, prove, verify with --benchmark flag).
Then we'll combine the resultant JSON outputs into one big JSON object.
For now we're only printing the result object. Later we'll add the
ability to write it into any file.
Diffstat (limited to 'zkvms_guest_io/Cargo.lock')
| -rw-r--r-- | zkvms_guest_io/Cargo.lock | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/zkvms_guest_io/Cargo.lock b/zkvms_guest_io/Cargo.lock index ddfdde7..a602607 100644 --- a/zkvms_guest_io/Cargo.lock +++ b/zkvms_guest_io/Cargo.lock @@ -111,6 +111,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] +name = "json" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" + +[[package]] name = "once_cell" version = "1.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -241,4 +247,5 @@ name = "zkvms_guest_io" version = "0.1.0" dependencies = [ "clap", + "json", ] |
