diff --git a/Cargo.lock b/Cargo.lock index 13f8239f2e..55f501ba9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1135,11 +1135,10 @@ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] name = "deadpool" -version = "0.10.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490" +checksum = "5ed5957ff93768adf7a65ab167a17835c3d2c3c50d084fe305174c112f468e2f" dependencies = [ - "async-trait", "deadpool-runtime", "num_cpus", "tokio", @@ -3517,9 +3516,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.11.1" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" dependencies = [ "aho-corasick", "memchr", @@ -4893,9 +4892,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.6" +version = "2.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "137a3c834eaf7139b73688502f3f1141a0337c5d8e4d9b536f9b8c796e26a7c4" +checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" dependencies = [ "form_urlencoded", "idna 1.1.0", @@ -5447,12 +5446,11 @@ dependencies = [ [[package]] name = "wiremock" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2b8b99d4cdbf36b239a9532e31fe4fb8acc38d1897c1761e161550a7dc78e6a" +checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031" dependencies = [ "assert-json-diff", - "async-trait", "base64 0.22.1", "deadpool", "futures", diff --git a/examples/archive/Cargo.toml b/examples/archive/Cargo.toml index 18ec5f5550..c2bbc452d5 100644 --- a/examples/archive/Cargo.toml +++ b/examples/archive/Cargo.toml @@ -10,7 +10,7 @@ path = "archive.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } tokio = { version = "1.47.1", features = ["full"] } -url = "2.5.4" +url = "2.5.7" [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 22914af508..982ca11ac5 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -10,7 +10,7 @@ path = "builder.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } tokio = { version = "1.47.1", features = ["full"] } -regex = "1.11.1" +regex = "1.11.2" http = "1.3.1" reqwest = { version = "0.12.18", default-features = false, features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 1103ed65ba..5dafa1c9e5 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -10,7 +10,7 @@ path = "collect_links.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } tokio = { version = "1.47.1", features = ["full"] } -regex = "1.11.1" +regex = "1.11.2" http = "1.3.1" tokio-stream = "0.1.17" reqwest = { version = "0.12.18", default-features = false, features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 7b34eeaa94..9fea6d43bb 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -36,7 +36,7 @@ indicatif = "0.18.0" log = "0.4.27" openssl-sys = { version = "0.9.109", optional = true } pad = "0.1.6" -regex = "1.11.1" +regex = "1.11.2" reqwest = { version = "0.12.18", default-features = false, features = [ "gzip", "json", @@ -57,7 +57,7 @@ tabled = "0.20.0" tokio = { version = "1.47.1", features = ["full"] } tokio-stream = "0.1.17" toml = "0.9.5" -url = "2.5.4" +url = "2.5.7" [dev-dependencies] @@ -72,7 +72,7 @@ tracing-subscriber = { version = "0.3.19", default-features = false, features = "env-filter", ] } uuid = { version = "1.18.0", features = ["v4"] } -wiremock = "0.6.4" +wiremock = "0.6.5" [features] diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 71647c1942..2e5b09168a 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -36,7 +36,7 @@ openssl-sys = { version = "0.9.109", optional = true } path-clean = "1.0.1" percent-encoding = "2.3.1" pulldown-cmark = "0.13.0" -regex = "1.11.1" +regex = "1.11.2" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 reqwest = { version = "0.12.18", default-features = false, features = [ @@ -60,7 +60,7 @@ thiserror = "2.0.14" tokio = { version = "1.47.1", features = ["full"] } toml = "0.9.5" typed-builder = "0.21.1" -url = { version = "2.5.4", features = ["serde"] } +url = { version = "2.5.7", features = ["serde"] } [dependencies.par-stream] version = "0.10.2" @@ -69,7 +69,7 @@ features = ["runtime-tokio"] [dev-dependencies] doc-comment = "0.3.3" tempfile = "3.20.0" -wiremock = "0.6.4" +wiremock = "0.6.5" serde_json = "1.0.142" rstest = "0.26.1" toml = "0.9.5"