From 648ab1c91f25f2282fb204a3158578135c46f07f Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Thu, 19 Dec 2024 16:14:10 +1100 Subject: [PATCH] chore: Upgrade pact_matching to 1.2.8 --- rust/Cargo.toml | 2 +- rust/pact_consumer/Cargo.toml | 2 +- rust/pact_ffi/Cargo.toml | 2 +- rust/pact_verifier/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index e5b1fe27..a8a2f461 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -17,7 +17,7 @@ tracing-core = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing tracing-subscriber = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.19" } # FFI Inmemory sink uses the global static `LOG_BUFFER` in the pact_matching crate. This is required to be the same # version across all crates (i.e. mock server crate). -pact_matching = { version = "~1.2.7", path = "./pact_matching" } +pact_matching = { version = "~1.2.8", path = "./pact_matching" } # Issue 389 - Pull change into other crates pact_models = { version = "~1.2.6", path = "./pact_models" } diff --git a/rust/pact_consumer/Cargo.toml b/rust/pact_consumer/Cargo.toml index 8a6ba5a1..eb889c94 100644 --- a/rust/pact_consumer/Cargo.toml +++ b/rust/pact_consumer/Cargo.toml @@ -30,7 +30,7 @@ futures = "0.3.30" itertools = "0.13.0" lazy_static = "1.5.0" maplit = "1.0.2" -pact_matching = { version = "~1.2.7", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.8", path = "../pact_matching", default-features = false } pact_mock_server = { version = "~2.0.2", default-features = false } pact_models = { version = "~1.2.6", default-features = false } pact-plugin-driver = { version = "~0.7.2", optional = true, default-features = false } diff --git a/rust/pact_ffi/Cargo.toml b/rust/pact_ffi/Cargo.toml index 9f74f884..c89eeaea 100644 --- a/rust/pact_ffi/Cargo.toml +++ b/rust/pact_ffi/Cargo.toml @@ -30,7 +30,7 @@ log = "0.4.22" maplit = "1.0.2" multipart = { version = "0.18.0", default-features = false, features = ["client", "mock"] } onig = { version = "6.4.0", default-features = false } -pact_matching = { version = "~1.2.7", path = "../pact_matching" } +pact_matching = { version = "~1.2.8", path = "../pact_matching" } pact_mock_server = { version = "~1.2.11" } pact_models = { version = "~1.2.6" } pact-plugin-driver = { version = "~0.7.2" } diff --git a/rust/pact_verifier/Cargo.toml b/rust/pact_verifier/Cargo.toml index 45c751a9..3981c6a8 100644 --- a/rust/pact_verifier/Cargo.toml +++ b/rust/pact_verifier/Cargo.toml @@ -35,7 +35,7 @@ itertools = "0.13.0" lazy_static = "1.4.0" maplit = "1.0.2" mime = "0.3.17" -pact_matching = { version = "~1.2.7", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.8", path = "../pact_matching", default-features = false } pact_models = { version = "~1.2.6", default-features = false } pact-plugin-driver = { version = "~0.7.2", optional = true, default-features = false } regex = "1.10.4"