Merge pull request #283 from figsoda/dependabot/cargo/async-io-2.0.0

Bump async-io from 1.13.0 to 2.0.0
This commit is contained in:
figsoda 2023-10-18 10:05:55 -04:00 committed by GitHub
commit 3960fa373f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 54 additions and 4 deletions

56
Cargo.lock generated
View file

@ -80,13 +80,33 @@ dependencies = [
"futures-lite",
"log",
"parking",
"polling",
"polling 2.8.0",
"rustix 0.37.19",
"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.8",
"slab",
"tracing",
"waker-fn",
"windows-sys 0.48.0",
]
[[package]]
name = "async-lock"
version = "2.7.0"
@ -102,7 +122,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",
]
@ -515,7 +535,7 @@ name = "mmtc"
version = "0.3.2"
dependencies = [
"anyhow",
"async-io",
"async-io 2.0.0",
"async-net",
"clap",
"clap_complete",
@ -594,6 +614,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.8",
"tracing",
"windows-sys 0.48.0",
]
[[package]]
name = "proc-macro2"
version = "1.0.63"
@ -875,6 +909,22 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tracing"
version = "0.1.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee2ef2af84856a50c1d430afce2fdded0a4ec7eda868db86409b4543df0797f9"
dependencies = [
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
[[package]]
name = "unicase"
version = "2.6.0"

View file

@ -13,7 +13,7 @@ categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.75"
async-io = "1.13.0"
async-io = "2.0.0"
async-net = "1.8.0"
crossbeam-queue = "0.3.8"
crossterm = "0.27.0"