diff --git a/Cargo.lock b/Cargo.lock index 3118eb5..416a7e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2844,9 +2844,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "reqwest" -version = "0.11.15" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ba30cc2c0cd02af1222ed216ba659cdb2f879dfe3181852fe7c50b1d0005949" +checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" dependencies = [ "async-compression", "base64 0.21.0", @@ -3270,7 +3270,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn", + "syn 1.0.107", ] [[package]] diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 5d5b48b..0a39c92 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -12,4 +12,4 @@ lychee-lib = { path = "../../lychee-lib", version = "0.11.1" } tokio = { version = "1.26.0", features = ["full"] } regex = "1.7.3" http = "0.2.9" -reqwest = { version = "0.11.15", features = ["gzip"] } +reqwest = { version = "0.11.16", features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 8fb2e41..d411e9b 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -13,4 +13,4 @@ tokio = { version = "1.26.0", features = ["full"] } regex = "1.7.3" http = "0.2.9" tokio-stream = "0.1.12" -reqwest = { version = "0.11.15", features = ["gzip"] } +reqwest = { version = "0.11.16", features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index f827508..291c867 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -27,7 +27,7 @@ indicatif = "0.17.3" openssl-sys = "0.9.83" pad = "0.1.6" regex = "1.7.3" -reqwest = { version = "0.11.15", features = ["gzip"] } +reqwest = { version = "0.11.16", features = ["gzip"] } # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 # This is necessary for the homebrew build diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 4594c20..7c590cf 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -27,7 +27,7 @@ pulldown-cmark = "0.9.2" regex = "1.7.3" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 -reqwest = { version = "0.11.15", features = ["gzip", "trust-dns"] } +reqwest = { version = "0.11.16", features = ["gzip", "trust-dns"] } # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 # This is necessary for the homebrew build