From c68e00a51cccb0f18a438d1ffd98c18e33a3ad7f Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Sat, 20 Jan 2024 21:53:03 +1100 Subject: [PATCH] chore: Upgrade dependencies --- rust/Cargo.lock | 2 +- rust/pact_consumer/Cargo.toml | 36 +++++++++++++++++------------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index d0db3bbe5..b88fb1a2e 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1803,7 +1803,7 @@ dependencies = [ "env_logger 0.10.2", "expectest", "futures", - "itertools 0.10.5", + "itertools 0.12.0", "lazy_static", "maplit", "pact-plugin-driver", diff --git a/rust/pact_consumer/Cargo.toml b/rust/pact_consumer/Cargo.toml index f198d5826..b0e129a49 100644 --- a/rust/pact_consumer/Cargo.toml +++ b/rust/pact_consumer/Cargo.toml @@ -22,33 +22,33 @@ multipart = ["pact_matching/multipart", "pact_mock_server/multipart"] # suport f tls = ["pact_mock_server/tls"] [dependencies] -anyhow = "1.0.70" -async-trait = "0.1.68" -bytes = "1.4.0" -futures = "0.3.28" -itertools = "0.10.5" +anyhow = "1.0.75" +async-trait = "0.1.74" +bytes = "1.5.0" +futures = "0.3.29" +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_mock_server = { version = "~1.2.4", path = "../pact_mock_server", default-features = false } pact_models = { version = "~1.1.17", default-features = false } pact-plugin-driver = { version = "~0.5.0", optional = true, default-features = false } -regex = "1.7.3" -serde_json = "1.0.95" -tokio = { version = "1.27.0", features = ["full"] } -tracing = "0.1.37" # This needs to be the same version across all the libs (i.e. plugin driver) -tracing-core = "0.1.30" # This needs to be the same version across all the pact libs (i.e. pact ffi) -url = "2.3.1" -uuid = { version = "1.3.0", features = ["v4"] } +regex = "1.10.2" +serde_json = "1.0.108" +tokio = { version = "1.35.1", features = ["full"] } +tracing = "0.1.40" # This needs to be the same version across all the libs (i.e. plugin driver) +tracing-core = "0.1.32" # This needs to be the same version across all the pact libs (i.e. pact ffi) +url = "2.5.0" +uuid = { version = "1.6.1", features = ["v4"] } [dev-dependencies] quickcheck = "1.0.3" -env_logger = "0.10.0" +env_logger = "0.10.1" expectest = "0.12.0" -reqwest = { version = "0.11.16", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] } +reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] } serde = { version = "^1.0", features = ["derive"] } rand = "0.8.5" -tokio-test = "0.4.2" -test-log = { version = "0.2.11", features = ["trace"] } -tracing-subscriber = { version = "0.3.16", features = ["env-filter", "tracing-log", "fmt"] } -pretty_assertions = "1.3.0" +tokio-test = "0.4.3" +test-log = { version = "0.2.14", features = ["trace"] } +tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log", "fmt"] } +pretty_assertions = "1.4.0"