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 20, 2024
1 parent f49e5d5 commit c68e00a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion rust/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 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.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"

0 comments on commit c68e00a

Please sign in to comment.