diff --git a/Cargo.lock b/Cargo.lock index c48e88b..685cac9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -59,6 +59,16 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a" +[[package]] +name = "assert-json-diff" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f1c3703dd33532d7f0ca049168930e9099ecac238e23cf932f3a69c42f06da" +dependencies = [ + "serde", + "serde_json", +] + [[package]] name = "assert_cmd" version = "2.0.2" @@ -3627,10 +3637,11 @@ dependencies = [ [[package]] name = "wiremock" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8258886282e4e638166802e91fa2b09bac3a6409bf3a043e2ec7afc049f4d000" +checksum = "70f7b70ff8dc8f85e456feb581ee05720f87a5bd4f868c018191d997994cabed" dependencies = [ + "assert-json-diff", "async-trait", "deadpool", "futures", diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 3bd8e01..828a461 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -49,7 +49,7 @@ predicates = "2.1.0" pretty_assertions = "1.0.0" tempfile = "3.2.0" uuid = { version = "0.8.2", features = ["v4"] } -wiremock = "0.5.9" +wiremock = "0.5.10" tracing-subscriber = { version = "0.3.5", default-features = false, features = ["fmt", "registry", "env-filter"] } # console-subscriber is not yet published to crates.io diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 3e2f10b..def00d8 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -57,7 +57,7 @@ features = ["runtime-tokio"] doc-comment = "0.3.3" pretty_assertions = "1.0.0" tempfile = "3.2.0" -wiremock = "0.5.9" +wiremock = "0.5.10" [features] vendored-openssl = ["openssl-sys/vendored"]