From 3a8e7b164e6569446ca4f7a0f61dd7a562f6ea8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 12:32:01 +0000 Subject: [PATCH] Bump regex from 1.9.0 to 1.9.1 Bumps [regex](https://github.com/rust-lang/regex) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.9.0...1.9.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- examples/builder/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 2 +- lychee-lib/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4de783d..c3c8445 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2871,13 +2871,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484" +checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.0", + "regex-automata 0.3.2", "regex-syntax 0.7.3", ] @@ -2892,9 +2892,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56" +checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf" dependencies = [ "aho-corasick", "memchr", diff --git a/examples/builder/Cargo.toml b/examples/builder/Cargo.toml index 8b4c080..d8df4de 100644 --- a/examples/builder/Cargo.toml +++ b/examples/builder/Cargo.toml @@ -10,7 +10,7 @@ path = "builder.rs" [dependencies] lychee-lib = { path = "../../lychee-lib", version = "0.13.0", default-features = false } tokio = { version = "1.29.1", features = ["full"] } -regex = "1.9.0" +regex = "1.9.1" http = "0.2.9" reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index 36c2846..5582a9d 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", version = "0.13.0", default-features = false } tokio = { version = "1.29.1", features = ["full"] } -regex = "1.9.0" +regex = "1.9.1" http = "0.2.9" tokio-stream = "0.1.14" reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 460e9a6..bf3a0fb 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -37,7 +37,7 @@ log = "0.4.19" once_cell = "1.18.0" openssl-sys = { version = "0.9.90", optional = true } pad = "0.1.6" -regex = "1.9.0" +regex = "1.9.1" reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "json"] } # 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 e4eec87..0a44f95 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -38,7 +38,7 @@ openssl-sys = { version = "0.9.90", optional = true } path-clean = "1.0.1" percent-encoding = "2.3.0" pulldown-cmark = "0.9.3" -regex = "1.9.0" +regex = "1.9.1" # 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"] }