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] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-07-10 12:32:01 +00:00 committed by GitHub
parent f8b497ab6a
commit 3a8e7b164e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

10
Cargo.lock generated
View file

@ -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",

View file

@ -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"] }

View file

@ -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"] }

View file

@ -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

View file

@ -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"] }