Skip to content

Commit ec352dc

Browse files
Bump the dependencies group with 3 updates (#1821)
Bumps the dependencies group with 3 updates: [regex](https://github.com/rust-lang/regex), [url](https://github.com/servo/rust-url) and [wiremock](https://github.com/LukeMathWalker/wiremock-rs). Updates `regex` from 1.11.1 to 1.11.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](rust-lang/regex@1.11.1...1.11.2) Updates `url` from 2.5.6 to 2.5.7 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/commits) Updates `wiremock` from 0.6.4 to 0.6.5 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](LukeMathWalker/wiremock-rs@v0.6.4...v0.6.5) --- updated-dependencies: - dependency-name: regex dependency-version: 1.11.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: url dependency-version: 2.5.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: wiremock dependency-version: 0.6.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 41b7397 commit ec352dc

File tree

6 files changed

+17
-19
lines changed

6 files changed

+17
-19
lines changed

Cargo.lock

Lines changed: 8 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "archive.rs"
1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
1212
tokio = { version = "1.47.1", features = ["full"] }
13-
url = "2.5.4"
13+
url = "2.5.7"
1414

1515
[features]
1616
email-check = ["lychee-lib/email-check"]

examples/builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "builder.rs"
1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
1212
tokio = { version = "1.47.1", features = ["full"] }
13-
regex = "1.11.1"
13+
regex = "1.11.2"
1414
http = "1.3.1"
1515
reqwest = { version = "0.12.18", default-features = false, features = ["gzip"] }
1616

examples/collect_links/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "collect_links.rs"
1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
1212
tokio = { version = "1.47.1", features = ["full"] }
13-
regex = "1.11.1"
13+
regex = "1.11.2"
1414
http = "1.3.1"
1515
tokio-stream = "0.1.17"
1616
reqwest = { version = "0.12.18", default-features = false, features = ["gzip"] }

lychee-bin/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ indicatif = "0.18.0"
3636
log = "0.4.27"
3737
openssl-sys = { version = "0.9.109", optional = true }
3838
pad = "0.1.6"
39-
regex = "1.11.1"
39+
regex = "1.11.2"
4040
reqwest = { version = "0.12.18", default-features = false, features = [
4141
"gzip",
4242
"json",
@@ -57,7 +57,7 @@ tabled = "0.20.0"
5757
tokio = { version = "1.47.1", features = ["full"] }
5858
tokio-stream = "0.1.17"
5959
toml = "0.9.5"
60-
url = "2.5.4"
60+
url = "2.5.7"
6161

6262

6363
[dev-dependencies]
@@ -72,7 +72,7 @@ tracing-subscriber = { version = "0.3.19", default-features = false, features =
7272
"env-filter",
7373
] }
7474
uuid = { version = "1.18.0", features = ["v4"] }
75-
wiremock = "0.6.4"
75+
wiremock = "0.6.5"
7676

7777
[features]
7878

lychee-lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ openssl-sys = { version = "0.9.109", optional = true }
3636
path-clean = "1.0.1"
3737
percent-encoding = "2.3.1"
3838
pulldown-cmark = "0.13.0"
39-
regex = "1.11.1"
39+
regex = "1.11.2"
4040
# Use trust-dns to avoid lookup failures on high concurrency
4141
# https://github.com/seanmonstar/reqwest/issues/296
4242
reqwest = { version = "0.12.18", default-features = false, features = [
@@ -60,7 +60,7 @@ thiserror = "2.0.14"
6060
tokio = { version = "1.47.1", features = ["full"] }
6161
toml = "0.9.5"
6262
typed-builder = "0.21.1"
63-
url = { version = "2.5.4", features = ["serde"] }
63+
url = { version = "2.5.7", features = ["serde"] }
6464

6565
[dependencies.par-stream]
6666
version = "0.10.2"
@@ -69,7 +69,7 @@ features = ["runtime-tokio"]
6969
[dev-dependencies]
7070
doc-comment = "0.3.3"
7171
tempfile = "3.20.0"
72-
wiremock = "0.6.4"
72+
wiremock = "0.6.5"
7373
serde_json = "1.0.142"
7474
rstest = "0.26.1"
7575
toml = "0.9.5"

0 commit comments

Comments
 (0)