mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-27 00:14:46 +00:00
Bump regex from 1.9.1 to 1.9.3
Bumps [regex](https://github.com/rust-lang/regex) from 1.9.1 to 1.9.3. - [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.1...1.9.3) --- 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:
parent
8f83081b03
commit
ca75571054
5 changed files with 13 additions and 13 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
|
@ -2955,14 +2955,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "regex"
|
||||
version = "1.9.1"
|
||||
version = "1.9.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
||||
checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"memchr",
|
||||
"regex-automata 0.3.2",
|
||||
"regex-syntax 0.7.3",
|
||||
"regex-automata 0.3.6",
|
||||
"regex-syntax 0.7.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2976,13 +2976,13 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "regex-automata"
|
||||
version = "0.3.2"
|
||||
version = "0.3.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf"
|
||||
checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69"
|
||||
dependencies = [
|
||||
"aho-corasick",
|
||||
"memchr",
|
||||
"regex-syntax 0.7.3",
|
||||
"regex-syntax 0.7.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2993,9 +2993,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|||
|
||||
[[package]]
|
||||
name = "regex-syntax"
|
||||
version = "0.7.3"
|
||||
version = "0.7.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
|
||||
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
||||
|
||||
[[package]]
|
||||
name = "reqwest"
|
||||
|
|
|
|||
|
|
@ -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.1"
|
||||
regex = "1.9.3"
|
||||
http = "0.2.9"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] }
|
||||
|
||||
|
|
|
|||
|
|
@ -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.1"
|
||||
regex = "1.9.3"
|
||||
http = "0.2.9"
|
||||
tokio-stream = "0.1.14"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip"] }
|
||||
|
|
|
|||
|
|
@ -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.1"
|
||||
regex = "1.9.3"
|
||||
reqwest = { version = "0.11.18", default-features = false, features = ["gzip", "json"] }
|
||||
reqwest_cookie_store = "0.6.0"
|
||||
# Make build work on Apple Silicon.
|
||||
|
|
|
|||
|
|
@ -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.1"
|
||||
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"] }
|
||||
|
|
|
|||
Loading…
Reference in a new issue