diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 8644f2a5..db2694bc 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2076,7 +2076,7 @@ dependencies = [ "expectest", "futures", "home", - "itertools 0.12.1", + "itertools 0.13.0", "lazy_static", "libc", "log", @@ -2097,7 +2097,7 @@ dependencies = [ "regex", "regex-syntax 0.6.29", "reqwest", - "rstest 0.19.0", + "rstest 0.22.0", "serde", "serde_json", "sxd-document", @@ -2147,7 +2147,7 @@ dependencies = [ "quickcheck", "rand", "reqwest", - "rstest 0.19.0", + "rstest 0.22.0", "semver", "serde", "serde_json", @@ -2331,7 +2331,7 @@ dependencies = [ "pact_verifier", "regex", "reqwest", - "rstest 0.21.0", + "rstest 0.22.0", "serde_json", "strip-ansi-escapes", "time", @@ -2913,13 +2913,13 @@ dependencies = [ [[package]] name = "rstest" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9afd55a67069d6e434a95161415f5beeada95a01c7b815508a82dcb0e1593682" +checksum = "7b423f0e62bdd61734b67cd21ff50871dfaeb9cc74f869dcd6af974fbcb19936" dependencies = [ "futures", "futures-timer", - "rstest_macros 0.21.0", + "rstest_macros 0.22.0", "rustc_version", ] @@ -2942,9 +2942,9 @@ dependencies = [ [[package]] name = "rstest_macros" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4165dfae59a39dd41d8dec720d3cbfbc71f69744efb480a3920f5d4e0cc6798d" +checksum = "c5e1711e7d14f74b12a58411c542185ef7fb7f2e7f8ee6e2940a883628522b42" dependencies = [ "cfg-if", "glob", diff --git a/rust/pact_ffi/Cargo.toml b/rust/pact_ffi/Cargo.toml index 8e6e8534..2cb636fc 100644 --- a/rust/pact_ffi/Cargo.toml +++ b/rust/pact_ffi/Cargo.toml @@ -23,7 +23,7 @@ clap = "2.34.0" either = "1.9.0" env_logger = "0.11.3" futures = "0.3.29" -itertools = "0.12.0" +itertools = "0.13.0" lazy_static = "1.4.0" libc = "0.2.151" log = "0.4.20" @@ -61,7 +61,7 @@ test-log = "0.2.14" tempfile = "3.8.1" home = "0.5.9" pretty_assertions = "1.4.0" -rstest = "0.19.0" +rstest = "0.22.0" [lib] crate-type = ["cdylib", "staticlib", "rlib"] diff --git a/rust/pact_matching/Cargo.toml b/rust/pact_matching/Cargo.toml index 6f3af88c..2aa7c445 100644 --- a/rust/pact_matching/Cargo.toml +++ b/rust/pact_matching/Cargo.toml @@ -65,4 +65,4 @@ test-log = { version = "0.2.15", features = ["trace"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log", "fmt"] } ntest = "0.9.0" pretty_assertions = "1.4.0" -rstest = "0.19.0" +rstest = "0.22.0" diff --git a/rust/pact_verifier_cli/Cargo.toml b/rust/pact_verifier_cli/Cargo.toml index 3b2d1dec..92d96a51 100644 --- a/rust/pact_verifier_cli/Cargo.toml +++ b/rust/pact_verifier_cli/Cargo.toml @@ -45,5 +45,5 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-lo [dev-dependencies] expectest = "0.12.0" -rstest = "0.21.0" +rstest = "0.22.0" trycmd = "0.15.0"