fix(deps): update rust crate async-io to v2

This commit is contained in:
renovate[bot] 2023-10-23 01:23:40 +00:00 committed by TÖRÖK Attila
parent 1ca5f714f9
commit 7b3ae30fbf
2 changed files with 39 additions and 5 deletions

42
Cargo.lock generated
View File

@ -279,13 +279,33 @@ dependencies = [
"futures-lite",
"log",
"parking",
"polling",
"polling 2.8.0",
"rustix 0.37.25",
"slab",
"socket2",
"waker-fn",
]
[[package]]
name = "async-io"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8557f564c11bb72e6e82e80c2cf2b9d8377e45919597bcabf1945f8bd1759916"
dependencies = [
"async-lock",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite",
"parking",
"polling 3.2.0",
"rustix 0.38.19",
"slab",
"tracing",
"waker-fn",
"windows-sys 0.48.0",
]
[[package]]
name = "async-lock"
version = "2.8.0"
@ -301,7 +321,7 @@ version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
dependencies = [
"async-io",
"async-io 1.13.0",
"blocking",
"futures-lite",
]
@ -2465,7 +2485,7 @@ dependencies = [
"log",
"mime",
"once_cell",
"polling",
"polling 2.8.0",
"slab",
"sluice",
"tracing",
@ -3609,6 +3629,20 @@ dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "polling"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62a79e457c9898100b4298d57d69ec53d06f9a6ed352431ce5f377e082d2e846"
dependencies = [
"cfg-if",
"concurrent-queue",
"pin-project-lite",
"rustix 0.38.19",
"tracing",
"windows-sys 0.48.0",
]
[[package]]
name = "portable-atomic"
version = "1.4.3"
@ -4043,7 +4077,7 @@ dependencies = [
"anyhow",
"arboard",
"async-channel",
"async-io",
"async-io 2.0.0",
"async-net",
"bytemuck",
"chrono",

View File

@ -38,7 +38,7 @@ futures = "0.3.28"
chrono = { version = "0.4", default-features = false, features = [] }
fluent-templates = "0.8.0"
futures-lite = "1.13.0"
async-io = "1.13.0"
async-io = "2.0.0"
async-net = "1.8.0"
async-channel = "1.9.0"