From 4eb03ea4056fd4106c3df92117b9b0cf6027b069 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 1 Jun 2023 00:40:17 +0000 Subject: [PATCH] chore(deps): update rust crate criterion to 0.5.1 --- Cargo.lock | 67 +++++++++++++++++++++---------------------- clap_bench/Cargo.toml | 2 +- 2 files changed, 34 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21cef42a967..3edc74cda17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,23 +464,11 @@ dependencies = [ "libloading", ] -[[package]] -name = "clap" -version = "3.2.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750" -dependencies = [ - "bitflags", - "clap_lex 0.2.4", - "indexmap", - "textwrap", -] - [[package]] name = "clap" version = "4.3.0" dependencies = [ - "clap_builder", + "clap_builder 4.3.0", "clap_derive", "humantime", "once_cell", @@ -493,6 +481,15 @@ dependencies = [ "unic-emoji-char", ] +[[package]] +name = "clap" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" +dependencies = [ + "clap_builder 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "clap_bench" version = "0.0.0" @@ -527,6 +524,17 @@ dependencies = [ "unicode-width", ] +[[package]] +name = "clap_builder" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" +dependencies = [ + "anstyle", + "bitflags", + "clap_lex 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "clap_complete" version = "4.3.0" @@ -577,16 +585,13 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" -dependencies = [ - "os_str_bytes", -] +version = "0.5.0" [[package]] name = "clap_lex" version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" [[package]] name = "clap_mangen" @@ -702,19 +707,19 @@ dependencies = [ [[package]] name = "criterion" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" +checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" dependencies = [ "anes", - "atty", "cast", "ciborium", - "clap 3.2.22", + "clap 4.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "criterion-plot", + "is-terminal", "itertools", - "lazy_static", "num-traits", + "once_cell", "oorandom", "plotters", "rayon", @@ -1420,14 +1425,14 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.4" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" +checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", - "rustix 0.36.4", - "windows-sys 0.45.0", + "rustix 0.37.7", + "windows-sys 0.48.0", ] [[package]] @@ -2434,12 +2439,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "os_str_bytes" -version = "6.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff" - [[package]] name = "owo-colors" version = "3.5.0" diff --git a/clap_bench/Cargo.toml b/clap_bench/Cargo.toml index 6ea656c92a9..ddab748f9fe 100644 --- a/clap_bench/Cargo.toml +++ b/clap_bench/Cargo.toml @@ -13,7 +13,7 @@ release = false [dev-dependencies] clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] } -criterion = "0.4.0" +criterion = "0.5.1" lazy_static = "1.4.0" [[bench]]