Bump tokio from 1.26.0 to 1.27.0 (#1021)

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.26.0 to 1.27.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.26.0...tokio-1.27.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-03-30 01:37:50 +02:00 committed by GitHub
parent 07bdcb8596
commit a9603d6c95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 15 deletions

15
Cargo.lock generated
View file

@ -3236,9 +3236,9 @@ dependencies = [
[[package]]
name = "socket2"
version = "0.4.7"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
@ -3497,14 +3497,13 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.26.0"
version = "1.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
dependencies = [
"autocfg",
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"parking_lot",
@ -3517,13 +3516,13 @@ dependencies = [
[[package]]
name = "tokio-macros"
version = "1.8.2"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.107",
"syn 2.0.3",
]
[[package]]

View file

@ -9,7 +9,7 @@ path = "builder.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.11.1" }
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }
regex = "1.7.3"
http = "0.2.9"
reqwest = { version = "0.11.16", features = ["gzip"] }

View file

@ -11,4 +11,4 @@ path = "client_pool.rs"
futures = "0.3.27"
tokio-stream = "0.1.12"
lychee-lib = { path = "../../lychee-lib", version = "0.11.1" }
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }

View file

@ -9,7 +9,7 @@ path = "collect_links.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.11.1" }
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }
regex = "1.7.3"
http = "0.2.9"
tokio-stream = "0.1.12"

View file

@ -9,4 +9,4 @@ path = "extract.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.11.1" }
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }

View file

@ -9,4 +9,4 @@ path = "simple.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", version = "0.11.1" }
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }

View file

@ -37,7 +37,7 @@ serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
tabled = "0.10.0"
toml = "0.7.3"
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }
futures = "0.3.27"
tokio-stream = "0.1.12"
once_cell = "1.17.1"

View file

@ -36,7 +36,7 @@ ring = "0.16.20"
serde = { version = "1.0.159", features = ["derive"] }
shellexpand = "3.1.0"
typed-builder = "0.14.0"
tokio = { version = "1.26.0", features = ["full"] }
tokio = { version = "1.27.0", features = ["full"] }
url = { version = "2.3.1", features = ["serde"] }
log = "0.4.17"
path-clean = "1.0.1"