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 Jan 20, 2024
1 parent def5685 commit 4325dca
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions rust/pact_mock_server/Cargo.toml
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.70"
bytes = "1.4.0"
futures = "0.3.28"
hyper = { version = "0.14.25", features = ["full"] }
hyper-rustls = { version = "0.24.0", optional = true }
itertools = "0.10.5"
anyhow = "1.0.75"
bytes = "1.5.0"
futures = "0.3.29"
hyper = { version = "0.14.28", features = ["full"] }
hyper-rustls = { version = "0.24.2", optional = true }
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_models = { version = "~1.1.17", default-features = false }
pact-plugin-driver = { version = "~0.5.0", optional = true, default-features = false }
rustls = { version = "0.21.0", optional = true }
rustls-pemfile = { version = "1.0.2", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.95"
thiserror = "1.0.40"
tokio = { version = "1.27.0", features = ["full"] }
tokio-rustls = { version = "0.24.0", optional = true }
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"] }
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)
url = "2.5.0"
uuid = { version = "1.6.1", features = ["v4"] }

[dev-dependencies]
quickcheck = "1.0.3"
expectest = "0.12.0"
reqwest = { version = "0.11.16", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
env_logger = "0.10.0"
test-log = "0.2.12"
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
env_logger = "0.10.1"
test-log = "0.2.14"
test-env-log = "0.2.8"
tracing-subscriber = "0.3.17"
tracing-subscriber = "0.3.18"

0 comments on commit 4325dca

Please sign in to comment.