diff --git a/Cargo.lock b/Cargo.lock index e8538b5..f0d5f3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,6 +47,12 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80c697cc33851b02ab0c26b2e8a211684fbe627ff1cc506131f35026dd7686dd" +[[package]] +name = "anstyle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" + [[package]] name = "anyhow" version = "1.0.70" @@ -81,7 +87,7 @@ version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0b2340f55d9661d76793b2bfc2eb0e62689bd79d067a95707ea762afd5e9dd" dependencies = [ - "anstyle", + "anstyle 0.3.1", "bstr", "doc-comment", "predicates", @@ -2596,11 +2602,11 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c575290b64d24745b6c57a12a31465f0a66f3a4799686a6921526a33b0797965" +checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" dependencies = [ - "anstyle", + "anstyle 1.0.0", "difflib", "float-cmp", "itertools", diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 1920e87..fecc7c4 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -58,7 +58,7 @@ features = ["env", "derive"] [dev-dependencies] assert_cmd = "2.0.10" pretty_assertions = "1.3.0" -predicates = "3.0.2" +predicates = "3.0.3" tempfile = "3.5.0" uuid = { version = "1.3.1", features = ["v4"] } wiremock = "0.5.18"