diff --git a/Cargo.lock b/Cargo.lock index d52c96d56c..1146e51965 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -727,9 +727,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.53" +version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8" +checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ "clap_builder", "clap_derive", @@ -737,9 +737,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.53" +version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00" +checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ "anstream", "anstyle", @@ -3110,9 +3110,9 @@ checksum = "f2dcb6053ab98da45585315f79932c5c9821fab8efa4301c0d7b637c91630eb7" [[package]] name = "octocrab" -version = "0.49.4" +version = "0.49.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add74bcdaf5b0a0c3edb0f8c0a952d7a52d9e9a76ac9c690a3e477c4e8c343b9" +checksum = "89f6f72d7084a80bf261bb6b6f83bd633323d5633d5ec7988c6c95b20448b2b5" dependencies = [ "arc-swap", "async-trait", @@ -5007,9 +5007,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.48.0" +version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" +checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ "bytes", "libc", @@ -5067,9 +5067,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ "futures-core", "pin-project-lite", diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 8790724121..2f16cc4913 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] lychee-lib = { path = "../lychee-lib", default-features = false } criterion = "0.8.1" -tokio = "1.48.0" +tokio = "1.49.0" [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/archive/Cargo.toml b/examples/archive/Cargo.toml index e2bcc19850..a9f9a91c96 100644 --- a/examples/archive/Cargo.toml +++ b/examples/archive/Cargo.toml @@ -9,7 +9,7 @@ path = "archive.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } url = "2.5.7" [features] diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 2b064f7225..c0598bcb98 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -9,7 +9,7 @@ path = "builder.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } regex = "1.12.2" http = "1.4.0" reqwest = { version = "0.12.28", default-features = false, features = ["gzip"] } diff --git a/examples/chain/Cargo.toml b/examples/chain/Cargo.toml index a9b4488879..3ae769fb8d 100644 --- a/examples/chain/Cargo.toml +++ b/examples/chain/Cargo.toml @@ -11,7 +11,7 @@ path = "chain.rs" async-trait = "0.1.88" lychee-lib = { path = "../../lychee-lib", default-features = false } reqwest = "0.12.28" -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/client_pool/Cargo.toml b/examples/client_pool/Cargo.toml index 097153c013..7fbc3a9173 100644 --- a/examples/client_pool/Cargo.toml +++ b/examples/client_pool/Cargo.toml @@ -9,9 +9,9 @@ path = "client_pool.rs" [dependencies] futures = "0.3.31" -tokio-stream = "0.1.17" +tokio-stream = "0.1.18" lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 65f25df092..76b57239a7 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -9,10 +9,10 @@ path = "collect_links.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } regex = "1.12.2" http = "1.4.0" -tokio-stream = "0.1.17" +tokio-stream = "0.1.18" reqwest = { version = "0.12.28", default-features = false, features = ["gzip"] } [features] diff --git a/examples/extract/Cargo.toml b/examples/extract/Cargo.toml index 84667210cd..2f66be019c 100644 --- a/examples/extract/Cargo.toml +++ b/examples/extract/Cargo.toml @@ -9,7 +9,7 @@ path = "extract.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index b6db0b08fc..c74bc1b9bc 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -9,7 +9,7 @@ path = "simple.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", default-features = false } -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index c34691d93b..aaadd94644 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -19,7 +19,7 @@ lychee-lib = { path = "../lychee-lib", version = "0.22.0", default-features = fa anyhow = "1.0.100" assert-json-diff = "2.0.2" -clap = { version = "4.5.53", features = ["env", "derive", "cargo", "string"] } +clap = { version = "4.5.54", features = ["env", "derive", "cargo", "string"] } clap_mangen = "0.2.31" console = "0.16.2" const_format = "0.2.35" @@ -55,8 +55,8 @@ serde_json = "1.0.148" strum = { version = "0.27.2", features = ["derive"] } supports-color = "3.0.2" tabled = "0.20.0" -tokio = { version = "1.48.0", features = ["full"] } -tokio-stream = "0.1.17" +tokio = { version = "1.49.0", features = ["full"] } +tokio-stream = "0.1.18" toml = "0.9.10" url = "2.5.7" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index f2f4c02b5d..c29abb660a 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -34,7 +34,7 @@ ignore = "0.4.25" ip_network = "0.4.1" linkify = "0.10.0" log = "0.4.28" -octocrab = "0.49.4" +octocrab = "0.49.5" openssl-sys = { version = "0.9.111", optional = true } path-clean = "1.0.1" percent-encoding = "2.3.1" @@ -60,7 +60,7 @@ serde_with = "3.16.1" shellexpand = "3.1.1" strum = { version = "0.27.2", features = ["derive"] } thiserror = "2.0.17" -tokio = { version = "1.48.0", features = ["full"] } +tokio = { version = "1.49.0", features = ["full"] } toml = "0.9.10" typed-builder = "0.23.2" url = { version = "2.5.7", features = ["serde"] }