aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-02-21 13:13:42 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-02-26 09:26:09 +0200
commit5904bf489f9c13b44675e07d899ca6300a2ac2d7 (patch)
tree92b63428714448d3d9b9a5339ec32cb85a79e8ce
parent68ced10106d54dd03fef9b13eff38157695091ef (diff)
downloadzkVMs-benchmarks-5904bf489f9c13b44675e07d899ca6300a2ac2d7.tar
zkVMs-benchmarks-5904bf489f9c13b44675e07d899ca6300a2ac2d7.tar.gz
zkVMs-benchmarks-5904bf489f9c13b44675e07d899ca6300a2ac2d7.zip
fix(zkvms_host_io): Reduce version constraint for clap
Certain zkVMs may use clap with versions lower than 4.5 (e.g. 4.5.9). Here we do not really care about the version, so this change will fix compatibility issues.
-rw-r--r--zkvms_host_io/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/zkvms_host_io/Cargo.toml b/zkvms_host_io/Cargo.toml
index 46725df..bc6ea4c 100644
--- a/zkvms_host_io/Cargo.toml
+++ b/zkvms_host_io/Cargo.toml
@@ -5,7 +5,7 @@ edition = "2021"
[dependencies]
input_macros = { path = "./input_macros" }
-clap = { version = "4.5.26", features = ["derive"] }
+clap = { version = "4.5", features = ["derive"] }
num-traits = "0.2.19"
serde = { version = "1.0.217", features = ["derive"] }
toml = "0.8.19"