From 5904bf489f9c13b44675e07d899ca6300a2ac2d7 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Fri, 21 Feb 2025 13:13:42 +0200 Subject: 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. --- zkvms_host_io/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit v1.2.3