From b9c99f1b1a53a74ca7b62a4e79a6891bdbe7e803 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 4 Oct 2022 11:28:32 +0200 Subject: [PATCH] Update `clap` from version `3.2` => `4.0` (#498) update clap from 3.2 -> 4.0 --- crates/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e4ad97e31c..efb1c2e788 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -13,7 +13,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -clap = { version = "3.2", features = ["derive"] } +clap = { version = "4", features = ["derive"] } wasmi = { path = "../wasmi" } wat = "1" anyhow = "1"