Skip to content

Commit

Permalink
Bump the dependencies group with 4 updates (#1490)
Browse files Browse the repository at this point in the history
* Bump the dependencies group with 4 updates

Bumps the dependencies group with 4 updates: [reqwest](https://github.com/seanmonstar/reqwest), [serde](https://github.com/serde-rs/serde), [serde_json](https://github.com/serde-rs/json) and [typed-builder](https://github.com/idanarye/rust-typed-builder).


Updates `reqwest` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.5...v0.12.7)

Updates `serde` from 1.0.208 to 1.0.209
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.208...v1.0.209)

Updates `serde_json` from 1.0.125 to 1.0.127
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.125...1.0.127)

Updates `typed-builder` from 0.19.1 to 0.20.0
- [Changelog](https://github.com/idanarye/rust-typed-builder/blob/master/CHANGELOG.md)
- [Commits](https://github.com/idanarye/rust-typed-builder/commits)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typed-builder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* skip flaky test

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias <matthias@endler.dev>
  • Loading branch information
dependabot[bot] and mre authored Aug 27, 2024
1 parent 3a42f2e commit 9e1a99a
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 44 deletions.
112 changes: 78 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
regex = "1.10.6"
http = "1.0.0"
reqwest = { version = "0.12.5", default-features = false, features = ["gzip"] }
reqwest = { version = "0.12.7", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "chain.rs"
[dependencies]
async-trait = "0.1.81"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.5"
reqwest = "0.12.7"
tokio = { version = "1.39.3", features = ["full"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion examples/collect_links/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tokio = { version = "1.39.3", features = ["full"] }
regex = "1.10.6"
http = "1.0.0"
tokio-stream = "0.1.15"
reqwest = { version = "0.12.5", default-features = false, features = ["gzip"] }
reqwest = { version = "0.12.7", default-features = false, features = ["gzip"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
6 changes: 3 additions & 3 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ once_cell = "1.19.0"
openssl-sys = { version = "0.9.103", optional = true }
pad = "0.1.6"
regex = "1.10.6"
reqwest = { version = "0.12.5", default-features = false, features = [
reqwest = { version = "0.12.7", default-features = false, features = [
"gzip",
"json",
] }
Expand All @@ -46,8 +46,8 @@ reqwest_cookie_store = "0.8.0"
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.17.8"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
strum = { version = "0.26.3", features = ["derive"] }
supports-color = "3.0.0"
tabled = "0.16.0"
Expand Down
1 change: 1 addition & 0 deletions lychee-bin/tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1335,6 +1335,7 @@ mod cli {
}

#[test]
#[ignore = "Skipping test because it is flaky"]
fn test_suggests_url_alternatives() -> Result<()> {
for _ in 0..3 {
// This can be flaky. Try up to 3 times
Expand Down
8 changes: 4 additions & 4 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pulldown-cmark = "0.12.0"
regex = "1.10.6"
# Use trust-dns to avoid lookup failures on high concurrency
# https://github.com/seanmonstar/reqwest/issues/296
reqwest = { version = "0.12.5", default-features = false, features = [
reqwest = { version = "0.12.7", default-features = false, features = [
"gzip",
"trust-dns",
"cookies",
Expand All @@ -49,13 +49,13 @@ reqwest_cookie_store = "0.8.0"
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.17.8"
secrecy = "0.8.0"
serde = { version = "1.0.208", features = ["derive"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_with = "3.8.1"
shellexpand = "3.1.0"
thiserror = "1.0.63"
tokio = { version = "1.39.3", features = ["full"] }
toml = "0.8.19"
typed-builder = "0.19.1"
typed-builder = "0.20.0"
url = { version = "2.5.2", features = ["serde"] }

[dependencies.par-stream]
Expand All @@ -66,7 +66,7 @@ features = ["runtime-tokio"]
doc-comment = "0.3.3"
tempfile = "3.12.0"
wiremock = "0.6.1"
serde_json = "1.0.125"
serde_json = "1.0.127"
rstest = "0.22.0"
toml = "0.8.19"

Expand Down

0 comments on commit 9e1a99a

Please sign in to comment.