From 061d37e6f9f6bb77208abf0d94ef7c565a0e96fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 18:32:00 +0000 Subject: [PATCH] Bump cucumber from 0.20.2 to 0.21.1 Bumps [cucumber](https://github.com/cucumber-rs/cucumber) from 0.20.2 to 0.21.1. - [Release notes](https://github.com/cucumber-rs/cucumber/releases) - [Changelog](https://github.com/cucumber-rs/cucumber/blob/main/CHANGELOG.md) - [Commits](https://github.com/cucumber-rs/cucumber/compare/v0.20.2...v0.21.1) --- updated-dependencies: - dependency-name: cucumber dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 37 ++++++++++++++++++++++++++++--------- crates/testsuite/Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 768babe6ba..c437fb493f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2294,12 +2294,11 @@ dependencies = [ [[package]] name = "cucumber" -version = "0.20.2" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5063d8cf24f4998ad01cac265da468a15ca682a8f4f826d50e661964e8d9b8" +checksum = "6cd12917efc3a8b069a4975ef3cb2f2d835d42d04b3814d90838488f9dd9bf69" dependencies = [ "anyhow", - "async-trait", "clap 4.5.4", "console", "cucumber-codegen", @@ -2309,10 +2308,10 @@ dependencies = [ "either", "futures", "gherkin", - "globwalk", + "globwalk 0.9.1", "humantime", "inventory", - "itertools 0.12.1", + "itertools 0.13.0", "lazy-regex", "linked-hash-map", "once_cell", @@ -2324,13 +2323,13 @@ dependencies = [ [[package]] name = "cucumber-codegen" -version = "0.20.2" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01091e28d1f566c8b31b67948399d2efd6c0a8f6228a9785519ed7b73f7f0aef" +checksum = "9e19cd9e8e7cfd79fbf844eb6a7334117973c01f6bad35571262b00891e60f1c" dependencies = [ "cucumber-expressions", "inflections", - "itertools 0.12.1", + "itertools 0.13.0", "proc-macro2 1.0.83", "quote 1.0.36", "regex", @@ -4078,6 +4077,17 @@ dependencies = [ "walkdir", ] +[[package]] +name = "globwalk" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757" +dependencies = [ + "bitflags 2.5.0", + "ignore", + "walkdir", +] + [[package]] name = "gloo-net" version = "0.2.6" @@ -4892,6 +4902,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -11417,7 +11436,7 @@ checksum = "970dff17c11e884a4a09bc76e3a17ef71e01bb13447a11e85226e254fe6d10b8" dependencies = [ "chrono", "chrono-tz", - "globwalk", + "globwalk 0.8.1", "humansize", "lazy_static 1.4.0", "percent-encoding", diff --git a/crates/testsuite/Cargo.toml b/crates/testsuite/Cargo.toml index 9811c68694..5fd5642a39 100644 --- a/crates/testsuite/Cargo.toml +++ b/crates/testsuite/Cargo.toml @@ -32,7 +32,7 @@ move-core-types = { workspace = true } [dev-dependencies] assert_cmd = "1.0" -cucumber = "0.20.2" +cucumber = "0.21.1" futures = { workspace = true } testcontainers = { version = "0.15.0", git = "https://github.com/yubing744/testcontainers-rs", rev = "6b87dc53ab3bc6eb4d15c7e73a3c57dcbf40d0af" } tokio = { version = "1.12", features = ["macros", "rt-multi-thread", "sync", "time"] }