Skip to content

Commit

Permalink
chore(pact_consumer): Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Apr 16, 2024
1 parent dffbc8e commit de57941
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions rust/Cargo.lock

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

30 changes: 15 additions & 15 deletions rust/pact_consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ multipart = ["pact_matching/multipart", "pact_mock_server/multipart"] # suport f
tls = ["pact_mock_server/tls"]

[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.74"
bytes = "1.5.0"
futures = "0.3.29"
itertools = "0.12.0"
anyhow = "1.0.82"
async-trait = "0.1.80"
bytes = "1.6.0"
futures = "0.3.30"
itertools = "0.12.1"
lazy_static = "1.4.0"
maplit = "1.0.2"
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 }
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)
regex = "1.10.4"
serde_json = "1.0.115"
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
url = "2.5.0"
uuid = { version = "1.6.1", features = ["v4"] }
uuid = { version = "1.8.0", features = ["v4"] }

[dev-dependencies]
quickcheck = "1.0.3"
env_logger = "0.10.1"
env_logger = "0.11.3"
expectest = "0.12.0"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
reqwest = { version = "0.12.3", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
serde = { version = "^1.0", features = ["derive"] }
rand = "0.8.5"
tokio-test = "0.4.3"
test-log = { version = "0.2.14", features = ["trace"] }
tokio-test = "0.4.4"
test-log = { version = "0.2.15", features = ["trace"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log", "fmt"] }
pretty_assertions = "1.4.0"

0 comments on commit de57941

Please sign in to comment.