From 997a2cefc1388905bae7de9ba7e1cae917359cf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Sep 2025 15:28:33 +0000 Subject: [PATCH] Update clap requirement from 3.1.2 to 4.5.47 Updates the requirements on [clap](https://github.com/clap-rs/clap) to permit the latest version. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v3.1.2...clap_complete-v4.5.47) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.47 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e047056..282a077 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -10,7 +10,7 @@ loader = { path = "../loader" } vm = { path = "../vm" } rt = { path = "../rt" } -clap = { version = "3.1.2", features = ["derive"] } +clap = { version = "4.5.47", features = ["derive"] } prettytable-rs = "0.10" anyhow = { version = "1.0", features = ["backtrace"] } better-panic = "0.3.0"