Skip to content

Commit

Permalink
chore: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jan 19, 2024
1 parent 53cc657 commit 5579e58
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 57 deletions.
125 changes: 88 additions & 37 deletions drivers/rust/driver/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions drivers/rust/driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,46 +20,46 @@ datetime = ["pact_models/datetime"] # Support for date/time matchers and express
xml = ["pact_models/xml"] # support for matching XML documents

[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.74"
anyhow = "1.0.79"
async-trait = "0.1.77"
backtrace = "0.3.69"
bytes = "1.5.0"
chrono = { version = "0.4.31", features = ["serde"], default-features = false }
flate2 = "1.0"
futures-util = "0.3.29"
home = "0.5.5"
chrono = { version = "0.4.32", features = ["serde"], default-features = false }
flate2 = "1.0.28"
futures-util = "0.3.30"
home = "0.5.9"
indicatif = "0.17.7"
itertools = "0.12.0"
lazy_static = "1.4.0"
log = "0.4.20"
maplit = "1.0.2"
md5 = "0.7.0"
os_info = "3.7.0"
pact_models = { version = "~1.1.12", default-features = false }
pact_models = { version = "~1.1.16", default-features = false }
prost = "0.11.9"
prost-types = "0.11.9"
regex = "1.10.2"
semver = "1.0.20"
serde_json = "1.0.108"
serde = { version = "1.0.193", features = ["derive"] }
regex = "1.10.3"
semver = "1.0.21"
serde_json = "1.0.111"
serde = { version = "1.0.195", features = ["derive"] }
sha2 = "0.10.8"
sysinfo = "0.29.11"
sysinfo = "0.30.5"
tar = '0.4.40'
toml = "0.8.8"
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
tonic = "0.9.2"
tracing = { version = "0.1.37", features = [ "log" ] } # This needs to be the same version across all the pact libs (i.e. pact ffi)
tracing-core = "0.1.30" # This needs to be the same version across all the pact libs (i.e. pact ffi)
uuid = { version = "1.6.1", features = ["v4"] }
tracing = { version = "0.1.40", features = [ "log" ] } # This needs to be the same version across all the pact libs (i.e. pact ffi)
tracing-core = "0.1.32" # This needs to be the same version across all the pact libs (i.e. pact ffi)
uuid = { version = "1.7.0", features = ["v4"] }
zip = "0.6.6"

[dependencies.reqwest]
version = "0.11.22"
version = "0.11.23"
default-features = false
features = ["rustls-tls-native-roots", "json", "gzip", "deflate", "stream"]

[dev-dependencies]
env_logger = "0.10.1"
env_logger = "0.11.0"
expectest = "0.12.0"
tempdir = "0.3.7"

Expand Down
2 changes: 1 addition & 1 deletion drivers/rust/driver/src/child_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::time::Duration;

use anyhow::anyhow;
use serde::{Deserialize, Serialize};
use sysinfo::{Pid, PidExt, ProcessExt, Signal, System, SystemExt};
use sysinfo::{Pid, Signal, System};
use tokio::io::{AsyncBufReadExt, BufReader};
use tokio::process::Child;
use tracing::{debug, error, trace, warn};
Expand Down
2 changes: 1 addition & 1 deletion drivers/rust/driver/src/plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use pact_models::v4::interaction::V4Interaction;
use reqwest::Client;
use semver::Version;
use serde_json::Value;
use sysinfo::{Pid, PidExt, ProcessExt, Signal, System, SystemExt};
use sysinfo::{Pid, Signal, System};
use tokio::process::Command;
use tracing::{debug, info, trace, warn};

Expand Down

0 comments on commit 5579e58

Please sign in to comment.