From 9e26ce15eb92591334faaf40fc02be8b77f04580 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Aug 2023 14:57:22 +0000 Subject: [PATCH] Bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [dashmap](https://github.com/xacrimon/dashmap) and [reqwest](https://github.com/seanmonstar/reqwest). Updates `dashmap` from 5.5.0 to 5.5.1 - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.5.0...v5.5.1) Updates `reqwest` from 0.11.18 to 0.11.19 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.18...v0.11.19) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++++--------------- examples/builder/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 4 ++-- lychee-lib/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 916fd8ab01..b8d9993781 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1026,9 +1026,9 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.0" +version = "5.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" +checksum = "edd72493923899c6f10c641bdbdeddc7183d6396641d99c1a0d1597f37f92e28" dependencies = [ "cfg-if", "hashbrown 0.14.0", @@ -1924,7 +1924,7 @@ dependencies = [ "socket2 0.5.3", "widestring", "windows-sys 0.48.0", - "winreg 0.50.0", + "winreg", ] [[package]] @@ -3005,9 +3005,9 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "reqwest" -version = "0.11.18" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +checksum = "20b9b67e2ca7dd9e9f9285b759de30ff538aab981abaaf7bc9bd90b84a0126c3" dependencies = [ "async-compression", "base64 0.21.2", @@ -3048,7 +3048,7 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "winreg 0.10.1", + "winreg", ] [[package]] @@ -4486,15 +4486,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "winreg" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" -dependencies = [ - "winapi", -] - [[package]] name = "winreg" version = "0.50.0" diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 16f03ff1eb..049b72ffde 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -12,7 +12,7 @@ lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = tokio = { version = "1.32.0", features = ["full"] } regex = "1.9.3" http = "0.2.9" -reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] } +reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 6d82395e4c..8e6c83cb98 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.32.0", features = ["full"] } regex = "1.9.3" http = "0.2.9" tokio-stream = "0.1.14" -reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] } +reqwest = { version = "0.11.19", default-features = false, features = ["gzip"] } [features] email-check = ["lychee-lib/email-check"] diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 998c9505c1..0c8249c639 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -25,7 +25,7 @@ clap = { version = "4.3.23", features = ["env", "derive"] } console = "0.15.7" const_format = "0.2.31" csv = "1.2.2" -dashmap = { version = "5.5.0", features = ["serde"] } +dashmap = { version = "5.5.1", features = ["serde"] } env_logger = "0.10.0" futures = "0.3.28" headers = "0.3.8" @@ -38,7 +38,7 @@ once_cell = "1.18.0" openssl-sys = { version = "0.9.91", optional = true } pad = "0.1.6" regex = "1.9.3" -reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "json"] } +reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "json"] } reqwest_cookie_store = "0.6.0" # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163 diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 09a816d66a..91adecda3e 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -41,7 +41,7 @@ pulldown-cmark = "0.9.3" regex = "1.9.3" # Use trust-dns to avoid lookup failures on high concurrency # https://github.com/seanmonstar/reqwest/issues/296 -reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "trust-dns", "cookies"] } +reqwest = { version = "0.11.19", default-features = false, features = ["gzip", "trust-dns", "cookies"] } reqwest_cookie_store = "0.6.0" # Make build work on Apple Silicon. # See https://github.com/briansmith/ring/issues/1163