Skip to content

Commit

Permalink
chore(pact_mock_server): Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Apr 16, 2024
1 parent b9c5497 commit a945a38
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 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.

28 changes: 14 additions & 14 deletions rust/pact_mock_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,34 +22,34 @@ multipart = ["pact_matching/multipart"] # suport for MIME multipart bodies
tls = ["dep:hyper-rustls", "dep:rustls", "dep:rustls-pemfile", "dep:tokio-rustls"]

[dependencies]
anyhow = "1.0.75"
bytes = "1.5.0"
futures = "0.3.29"
anyhow = "1.0.82"
bytes = "1.6.0"
futures = "0.3.30"
hyper = { version = "0.14.28", features = ["full"] }
hyper-rustls = { version = "0.24.2", optional = true }
itertools = "0.12.0"
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_models = { version = "~1.1.18", path = "../pact_models", default-features = false }
pact-plugin-driver = { version = "~0.5.1", optional = true, default-features = false }
rustls = { version = "~0.21.10", optional = true }
rustls-pemfile = { version = "1.0.4", optional = true }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.51"
tokio = { version = "1.35.1", features = ["full"] }
tokio-rustls = { version = "~0.24.0", optional = true }
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)
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = ["full"] }
tokio-rustls = { version = "~0.24.1", optional = true }
tracing = "0.1.40"
tracing-core = "0.1.32"
url = "2.5.0"
uuid = { version = "1.7.0", features = ["v4"] }
uuid = { version = "1.8.0", features = ["v4"] }

[dev-dependencies]
quickcheck = "1.0.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"] }
env_logger = "0.11.3"
test-log = "0.2.14"
test-log = "0.2.15"
test-env-log = "0.2.8"
tracing-subscriber = "0.3.18"

0 comments on commit a945a38

Please sign in to comment.