From d6125b75485c3b075b047e8b50bce49c8d22470a Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Tue, 16 Apr 2024 10:16:44 +1000 Subject: [PATCH] chore(pact_matching): Bump minor version --- rust/Cargo.lock | 31 +--------------------------- rust/Cargo.toml | 5 +++-- rust/pact_consumer/Cargo.toml | 2 +- rust/pact_ffi/Cargo.toml | 2 +- rust/pact_matching/Cargo.toml | 2 +- rust/pact_mock_server/Cargo.toml | 2 +- rust/pact_mock_server_cli/Cargo.toml | 2 +- rust/pact_verifier/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 38 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0f3f2d5b0..f9a7a19c9 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1926,24 +1926,6 @@ dependencies = [ "zip", ] -[[package]] -name = "pact_cli" -version = "0.0.0" -dependencies = [ - "ansi_term", - "anyhow", - "clap 2.34.0", - "expectest", - "glob", - "log", - "maplit", - "pact_matching", - "pact_models", - "serde", - "serde_json", - "simplelog", -] - [[package]] name = "pact_consumer" version = "1.1.3" @@ -2033,7 +2015,7 @@ dependencies = [ [[package]] name = "pact_matching" -version = "1.1.11" +version = "1.2.0" dependencies = [ "ansi_term", "anyhow", @@ -3217,17 +3199,6 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" -[[package]] -name = "simplelog" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0" -dependencies = [ - "log", - "termcolor", - "time", -] - [[package]] name = "siphasher" version = "0.3.11" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0376c2a3a..775bdb166 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -3,10 +3,11 @@ members = [ "pact_*" ] exclude = [ - "pact_wasm" + "pact_wasm", + "pact_cli" ] resolver = "2" [patch.crates-io] onig = { git = "https://github.com/rust-onig/rust-onig", default-features = false } -pact_models = { path = "pact_models" } \ No newline at end of file +pact_models = { path = "pact_models" } diff --git a/rust/pact_consumer/Cargo.toml b/rust/pact_consumer/Cargo.toml index 632ffe580..ec6df3404 100644 --- a/rust/pact_consumer/Cargo.toml +++ b/rust/pact_consumer/Cargo.toml @@ -29,7 +29,7 @@ futures = "0.3.29" itertools = "0.12.0" lazy_static = "1.4.0" maplit = "1.0.2" -pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false } pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server", default-features = false } pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false } pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false } diff --git a/rust/pact_ffi/Cargo.toml b/rust/pact_ffi/Cargo.toml index c5296979a..517c0bca6 100644 --- a/rust/pact_ffi/Cargo.toml +++ b/rust/pact_ffi/Cargo.toml @@ -30,7 +30,7 @@ log = "0.4.20" 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.1.10", path = "../pact_matching" } +pact_matching = { version = "~1.2.0", path = "../pact_matching" } pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server" } pact_models = { version = "~1.1.18", path = "../pact_models" } pact-plugin-driver = { version = "~0.5.1" } diff --git a/rust/pact_matching/Cargo.toml b/rust/pact_matching/Cargo.toml index 7a2ecf889..d3fe539f6 100644 --- a/rust/pact_matching/Cargo.toml +++ b/rust/pact_matching/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pact_matching" -version = "1.1.11" +version = "1.2.0" authors = ["Ronald Holshausen "] edition = "2021" description = "Pact-Rust support library that implements request and response matching logic" diff --git a/rust/pact_mock_server/Cargo.toml b/rust/pact_mock_server/Cargo.toml index 35413f69f..d274c6939 100644 --- a/rust/pact_mock_server/Cargo.toml +++ b/rust/pact_mock_server/Cargo.toml @@ -30,7 +30,7 @@ hyper-rustls = { version = "0.24.2", optional = true } itertools = "0.12.0" lazy_static = "1.4.0" maplit = "1.0.2" -pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false } pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false } pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false } rustls = { version = "~0.21.10", optional = true } diff --git a/rust/pact_mock_server_cli/Cargo.toml b/rust/pact_mock_server_cli/Cargo.toml index 63a7d4f4b..dd27d7dfc 100644 --- a/rust/pact_mock_server_cli/Cargo.toml +++ b/rust/pact_mock_server_cli/Cargo.toml @@ -31,7 +31,7 @@ maplit = "1.0.2" itertools = "0.12.0" log = "0.4.20" lazy_static = "1.4.0" -pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false } pact_mock_server = { version = "~1.2.5", path = "../pact_mock_server", default-features = false } pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false } rand = "0.8.5" diff --git a/rust/pact_verifier/Cargo.toml b/rust/pact_verifier/Cargo.toml index 21f8c75e8..509dde10c 100644 --- a/rust/pact_verifier/Cargo.toml +++ b/rust/pact_verifier/Cargo.toml @@ -35,7 +35,7 @@ itertools = "0.12.0" lazy_static = "1.4.0" maplit = "1.0.2" mime = "0.3.17" -pact_matching = { version = "~1.1.10", path = "../pact_matching", default-features = false } +pact_matching = { version = "~1.2.0", path = "../pact_matching", default-features = false } pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false } pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false } regex = "1.10.2"