From 68c31d2102a6a595a3ca9a021cb0ab043caa32d3 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sun, 19 Mar 2023 11:25:08 +0000 Subject: [PATCH] Update Rust crate clap to 4.1.11 --- vidow-backend/Cargo.lock | 20 +++++++++++++------- vidow-backend/crates/vidow_core/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/vidow-backend/Cargo.lock b/vidow-backend/Cargo.lock index 7b96c20..00d6dcb 100644 --- a/vidow-backend/Cargo.lock +++ b/vidow-backend/Cargo.lock @@ -34,6 +34,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" + [[package]] name = "cc" version = "1.0.77" @@ -54,7 +60,7 @@ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ "ansi_term", "atty", - "bitflags", + "bitflags 1.3.2", "strsim 0.8.0", "textwrap", "unicode-width", @@ -63,11 +69,11 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.10" +version = "4.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce38afc168d8665cfc75c7b1dd9672e50716a137f433f070991619744a67342a" +checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098" dependencies = [ - "bitflags", + "bitflags 2.0.2", "clap_derive", "clap_lex", "is-terminal", @@ -347,7 +353,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -380,7 +386,7 @@ version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", @@ -611,7 +617,7 @@ dependencies = [ name = "vidow_core" version = "0.1.0" dependencies = [ - "clap 4.1.10", + "clap 4.1.11", "eyre", ] diff --git a/vidow-backend/crates/vidow_core/Cargo.toml b/vidow-backend/crates/vidow_core/Cargo.toml index e1903cd..ed52d9d 100644 --- a/vidow-backend/crates/vidow_core/Cargo.toml +++ b/vidow-backend/crates/vidow_core/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "4.1.10", features = ["env", "derive"] } +clap = { version = "4.1.11", features = ["env", "derive"] } eyre = "0.6.8" -- 2.47.2