From bdeab4f87dc61b6da7e943f8bcbe80904ee1a843 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 14:16:10 -0500 Subject: [PATCH] Bump clap from 4.5.4 to 4.5.7 in /src/wasm-lib (#2643) Bumps [clap](https://github.com/clap-rs/clap) from 4.5.4 to 4.5.7. - [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-v4.5.4...v4.5.7) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src/wasm-lib/Cargo.lock | 12 ++++++------ src/wasm-lib/Cargo.toml | 2 +- src/wasm-lib/kcl/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index 60636a67f..345a4782c 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -406,9 +406,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.4" +version = "4.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" +checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" dependencies = [ "clap_builder", "clap_derive", @@ -416,9 +416,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.2" +version = "4.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" +checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" dependencies = [ "anstream", "anstyle", @@ -430,9 +430,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.4" +version = "4.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" +checksum = "c780290ccf4fb26629baa7a1081e68ced113f1d3ec302fa5948f1c381ebf06c6" dependencies = [ "heck 0.5.0", "proc-macro2", diff --git a/src/wasm-lib/Cargo.toml b/src/wasm-lib/Cargo.toml index 2feae9360..d625ac205 100644 --- a/src/wasm-lib/Cargo.toml +++ b/src/wasm-lib/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib"] [dependencies] bson = { version = "2.11.0", features = ["uuid-1", "chrono"] } -clap = "4.5.4" +clap = "4.5.7" gloo-utils = "0.2.0" kcl-lib = { path = "kcl" } kittycad.workspace = true diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 117e6ac5b..0b622ade1 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -16,7 +16,7 @@ async-recursion = "1.1.1" async-trait = "0.1.80" base64 = "0.22.1" chrono = "0.4.38" -clap = { version = "4.5.4", default-features = false, optional = true } +clap = { version = "4.5.7", default-features = false, optional = true } dashmap = "5.5.3" databake = { version = "0.1.8", features = ["derive"] } derive-docs = { version = "0.1.18", path = "../derive-docs" }