From 12a215804f26af498a803ca293eedde69ffa3c73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 23:01:48 +0000 Subject: [PATCH] Bump clap from 4.3.3 to 4.3.11 Bumps [clap](https://github.com/clap-rs/clap) from 4.3.3 to 4.3.11. - [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/v4.3.3...v4.3.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++------ runner/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b428d295..013c7246 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,22 +166,21 @@ dependencies = [ [[package]] name = "clap" -version = "4.3.3" +version = "4.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca8f255e4b8027970e78db75e78831229c9815fdbfa67eb1a1b777a62e24b4a0" +checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.3.3" +version = "4.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acd4f3c17c83b0ba34ffbc4f8bbd74f079413f747f84a6f89292f138057e36ab" +checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b" dependencies = [ "anstream", "anstyle", - "bitflags", "clap_lex 0.5.0", "strsim", ] @@ -699,7 +698,7 @@ dependencies = [ name = "qir-runner" version = "0.4.0" dependencies = [ - "clap 4.3.3", + "clap 4.3.11", "inkwell", "msvc_spectre_libs", "qir-backend", diff --git a/runner/Cargo.toml b/runner/Cargo.toml index 58a3e99a..30111576 100644 --- a/runner/Cargo.toml +++ b/runner/Cargo.toml @@ -13,6 +13,6 @@ features = ["llvm14-0"] [dependencies] qir-stdlib = { path = "../stdlib", features = ["range-support"] } qir-backend = { path = "../backend" } -clap = "4.3.3" +clap = "4.3.11" msvc_spectre_libs = { version = "0.1", features = ["error"] }