From 75a5d1abb802a39177545a02fb1a4f7c64f88e99 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Wed, 20 Dec 2023 15:05:43 +1100 Subject: [PATCH] chore: Upgrade all dependencies --- rust/Cargo.lock | 2 +- rust/pact_verifier_cli/Cargo.toml | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index e550158a5..e65cc8910 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2162,7 +2162,7 @@ dependencies = [ "tokio", "tracing", "tracing-core", - "tracing-log 0.1.4", + "tracing-log 0.2.0", "tracing-subscriber", "trycmd", ] diff --git a/rust/pact_verifier_cli/Cargo.toml b/rust/pact_verifier_cli/Cargo.toml index 5a82b73b5..014377667 100644 --- a/rust/pact_verifier_cli/Cargo.toml +++ b/rust/pact_verifier_cli/Cargo.toml @@ -23,24 +23,24 @@ junit = ["dep:junit-report"] # suport for MIME multipart bodies [dependencies] ansi_term = "0.12.1" -anyhow = "1.0.70" -clap = { version = "4.2.1", features = ["cargo", "env"] } +anyhow = "1.0.75" +clap = { version = "4.4.7", features = ["cargo", "env"] } env_logger = "0.10.0" -junit-report = { version = "0.8.2", optional = true } -log = "0.4.17" +junit-report = { version = "0.8.3", optional = true } +log = "0.4.20" maplit = "1.0.2" pact_models = { version = "~1.1.12", default-features = false } pact_verifier = { version = "~1.0.4", path = "../pact_verifier", default-features = false } -regex = "1.7.3" -reqwest = { version = "0.11.16", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] } -serde_json = "1.0.95" -time = "0.3.20" -tokio = { version = "1.27.0", features = ["full"] } -tracing = "0.1.37" -tracing-core = "0.1.30" -tracing-log = "0.1.3" -tracing-subscriber = { version = "0.3.16", features = ["env-filter", "tracing-log"] } +regex = "1.10.2" +reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] } +serde_json = "1.0.108" +time = "0.3.30" +tokio = { version = "1.33.0", features = ["full"] } +tracing = "0.1.40" +tracing-core = "0.1.32" +tracing-log = "0.2.0" +tracing-subscriber = { version = "0.3.17", features = ["env-filter", "tracing-log"] } [dev-dependencies] expectest = "0.12.0" -trycmd = "0.14.13" +trycmd = "0.14.19"