pact_verifier 0.13.2

Pact-Rust support library that implements provider verification functions
Documentation
[package]
name = "pact_verifier"
version = "0.13.2"
authors = ["Ronald Holshausen <uglyog@gmail.com>"]
edition = "2021"
description = "Pact-Rust support library that implements provider verification functions"
documentation = "https://docs.rs/pact_verifier/"
homepage = "http://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_verifier"
readme = "README.md"
keywords = ["testing", "pact", "cdc"]
license = "MIT"
exclude = [
    "*.iml"
]

[dependencies]
anyhow = "1.0.55"
libc = "0.2.119"
serde = "1.0.136"
serde_json = "1.0.79"
pact_matching = { version = "0.12.3", path = "../pact_matching" }
pact_models = "0.3.0"
pact-plugin-driver = "0.0.18"
log = "=0.4.14" # This needs to be the same version across all the libs (i.e. plugin driver)
maplit = "1.0.2"
lazy_static = "1.4.0"
itertools = "0.10.3"
ansi_term = "0.12.1"
regex = "1.5.4"
difference = "2.0.0"
futures = "0.3.21"
mime = "0.3.16"
bytes = "1.1.0"
tokio = { version = "1", features = ["full"] }
http = "0.2.6"
async-trait = "0.1.52"
thiserror = "1.0.30"
base64 = "0.13.0"
urlencoding = "2.1.0"

[dependencies.reqwest]
version = "0.11.9"
default-features = false
features = ["rustls-tls-native-roots", "blocking", "json"]

[dependencies.serde_with]
version = "1.12.0"
features = ["json"]

[lib]
crate-type = ["cdylib", "rlib"]

[dev-dependencies]
quickcheck = "1"
expectest = "0.12.0"
env_logger = "0.8"
pact_consumer = { version = "0.8.5", path = "../pact_consumer" }