From cdb0afc601eda74701913fd83f5f9452671d25b8 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sat, 24 Dec 2022 00:26:18 +0000 Subject: [PATCH] Update Rust crate clap to 4.0.32 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f100da1..6e0efba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -425,9 +425,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.0.29" +version = "4.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d" +checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39" dependencies = [ "bitflags", "clap_derive", diff --git a/Cargo.toml b/Cargo.toml index 088f2e0..31bfd0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" description = "TCP-over-HTTP solution" [dependencies] -clap = { version = "4.0.29", features = ["derive", "env"] } +clap = { version = "4.0.32", features = ["derive", "env"] } log = "0.4.17" env_logger = "0.10.0" actix = "0.13.0"