diff --git a/Cargo.lock b/Cargo.lock index 4628bad..265f99b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,16 +69,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.2.2" +version = "3.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e538f9ee5aa3b3963f09a997035f883677966ed50fce0292611927ce6f6d8c6" +checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" dependencies = [ "atty", "bitflags 1.3.2", "clap_derive", "clap_lex", "indexmap 1.8.0", - "lazy_static", + "once_cell", "strsim", "termcolor", "textwrap", @@ -86,9 +86,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "3.2.2" +version = "3.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7f98063cac4652f23ccda556b8d04347a7fc4b2cff1f7577cc8c6546e0d8078" +checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" dependencies = [ "heck", "proc-macro-error", @@ -883,9 +883,9 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "tinyvec" diff --git a/Cargo.toml b/Cargo.toml index 2fa6d19..035465e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ readme = "README.md" [dependencies] anyhow = "1.0.52" -clap = { version = "3.2.2", features = ["derive"] } +clap = { version = "3.2.25", features = ["derive"] } indicatif = "0.17.7" reqwest = "0.11.8" tokio = { version = "1.19.2", features = ["macros", "fs", "io-util", "rt-multi-thread"] }