Skip to content

Commit

Permalink
chore: Update pact_models to 1.1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Feb 6, 2024
1 parent 8858169 commit 24a26cc
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion rust/pact_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exclude = [
clap = "2.31.2"
serde_json = "1.0"
serde = "1.0"
pact_models = { version = "~1.1.17", path = "../pact_models" }
pact_models = { version = "~1.1.18", path = "../pact_models" }
pact_matching = { version = "~1.1.9", path = "../pact_matching" }
anyhow = "1.0.40"
log = "0.4.14"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lazy_static = "1.4.0"
maplit = "1.0.2"
pact_matching = { version = "~1.1.9", path = "../pact_matching", default-features = false }
pact_mock_server = { version = "~1.2.4", path = "../pact_mock_server", default-features = false }
pact_models = { version = "~1.1.17", path = "../pact_models", 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"
serde_json = "1.0.108"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ multipart = { version = "0.18.0", default-features = false, features = ["client"
onig = { version = "6.4.0", default-features = false }
pact_matching = { version = "~1.1.9", path = "../pact_matching" }
pact_mock_server = { version = "~1.2.4", path = "../pact_mock_server" }
pact_models = { version = "~1.1.17", path = "../pact_models" }
pact_models = { version = "~1.1.18", path = "../pact_models" }
pact-plugin-driver = { version = "~0.5.1" }
pact_verifier = { version = "~1.0.5", path = "../pact_verifier" }
panic-message = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_matching/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mime = "0.3.17"
multer = { version = "2.1.0", features = ["all"], optional = true }
nom = "7.1.3"
onig = { version = "6.4.0", default-features = false }
pact_models = { version = "~1.1.17", path = "../pact_models", 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 }
rand = "0.8.5"
semver = "1.0.17"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_mock_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ itertools = "0.12.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
pact_matching = { version = "~1.1.9", path = "../pact_matching", default-features = false }
pact_models = { version = "~1.1.17", path = "../pact_models", 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 }
rustls-pemfile = { version = "1.0.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_mock_server_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ log = "0.4.20"
lazy_static = "1.4.0"
pact_matching = { version = "~1.1.9", path = "../pact_matching", default-features = false }
pact_mock_server = { version = "~1.2.4", path = "../pact_mock_server", default-features = false }
pact_models = { version = "~1.1.17", path = "../pact_models", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
rand = "0.8.5"
regex = "1.10.2"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ lazy_static = "1.4.0"
maplit = "1.0.2"
mime = "0.3.17"
pact_matching = { version = "~1.1.9", path = "../pact_matching", default-features = false }
pact_models = { version = "~1.1.17", path = "../pact_models", 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"
serde = "1.0.193"
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_verifier_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env_logger = "0.10.1"
junit-report = { version = "0.8.3", optional = true }
log = "0.4.20"
maplit = "1.0.2"
pact_models = { version = "~1.1.17", path = "../pact_models", default-features = false }
pact_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
pact_verifier = { version = "~1.0.5", path = "../pact_verifier", default-features = false }
regex = "1.10.2"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/pact_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exclude = [
crate-type = ["cdylib", "rlib"]

[dependencies]
pact_models = { version = "~1.1.17", path = "../pact_models" }
pact_models = { version = "~1.1.18", path = "../pact_models" }
wasm-bindgen = "0.2.79"
console_error_panic_hook = "0.1.7"
console_log = { version = "0.2.0", features = ["color"] }
Expand Down

0 comments on commit 24a26cc

Please sign in to comment.