pact_mock_server 0.8.11

Pact-Rust support library that implements in process mock server
Documentation
[package]
name = "pact_mock_server"
version = "0.8.11"
authors = ["Ronald Holshausen <uglyog@gmail.com>"]
edition = "2021"
description = "Pact-Rust support library that implements in process mock server"
homepage = "http://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_mock_server"
readme = "README.md"
keywords = ["testing", "pact", "cdc", "mockserver"]
license = "MIT"
exclude = [
    "*.iml"
]

[dependencies]
anyhow = "1.0.57"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "1.0.81"
pact_matching = { version =  "0.12.7", path = "../pact_matching" }
pact_models = "0.4.1"
maplit = "1.0.2"
lazy_static = "1.4.0"
uuid = { version = "0.8.2", features = ["v4"] }
itertools = "0.10.3"
tokio = { version = "1.18.2", features = ["full"] }
futures = "0.3.21"
hyper = { version = "0.14.18", features = ["full"] }
bytes = "1.1.0"
hyper-rustls = "0.23.0"
rustls = "0.20.4"
tokio-rustls = "0.23.4"
rustls-pemfile = "1.0.0"
thiserror = "1.0.31"
pact-plugin-driver = "0.1.6"
tracing = "=0.1.34" # This needs to be the same version across all the libs (i.e. plugin driver)
tracing-core = "=0.1.26"  # This needs to be the same version across all the pact libs (i.e. pact ffi)

[dev-dependencies]
quickcheck = "1"
expectest = "0.12.0"
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
env_logger = "0.9.0"
test-env-log = "0.2.8"