Skip to content

Commit

Permalink
Bump the dependencies group with 2 updates (#1494)
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 2 updates: [tokio](https://github.com/tokio-rs/tokio) and [async-trait](https://github.com/dtolnay/async-trait).


Updates `tokio` from 1.39.3 to 1.40.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.39.3...tokio-1.40.0)

Updates `async-trait` from 0.1.81 to 0.1.82
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.81...0.1.82)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: async-trait
  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>
  • Loading branch information
dependabot[bot] authored Sep 4, 2024
1 parent 1c6be80 commit 53d234d
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 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 @@ -9,7 +9,7 @@ path = "builder.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }
regex = "1.10.6"
http = "1.0.0"
reqwest = { version = "0.12.7", default-features = false, features = ["gzip"] }
Expand Down
4 changes: 2 additions & 2 deletions examples/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ name = "chain"
path = "chain.rs"

[dependencies]
async-trait = "0.1.81"
async-trait = "0.1.82"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.7"
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/client_pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "client_pool.rs"
futures = "0.3.30"
tokio-stream = "0.1.15"
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
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 @@ -9,7 +9,7 @@ path = "collect_links.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }
regex = "1.10.6"
http = "1.0.0"
tokio-stream = "0.1.15"
Expand Down
2 changes: 1 addition & 1 deletion examples/extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ path = "extract.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ path = "simple.rs"

[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
2 changes: 1 addition & 1 deletion lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ serde_json = "1.0.127"
strum = { version = "0.26.3", features = ["derive"] }
supports-color = "3.0.0"
tabled = "0.16.0"
tokio = { version = "1.39.3", features = ["full"] }
tokio = { version = "1.40.0", features = ["full"] }
tokio-stream = "0.1.15"
toml = "0.8.19"

Expand Down
4 changes: 2 additions & 2 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version.workspace = true

[dependencies]
async-stream = "0.3.5"
async-trait = "0.1.81"
async-trait = "0.1.82"
cached = "0.53.1"
check-if-email-exists = { version = "0.9.1", optional = true }
email_address = "0.2.9"
Expand Down Expand Up @@ -53,7 +53,7 @@ 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"] }
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8.19"
typed-builder = "0.20.0"
url = { version = "2.5.2", features = ["serde"] }
Expand Down

0 comments on commit 53d234d

Please sign in to comment.