mirror of
https://github.com/figsoda/mmtc
synced 2024-11-22 07:03:05 +00:00
Merge pull request #289 from figsoda/dependabot/cargo/futures-lite-2.0.0
Bump futures-lite from 1.13.0 to 2.0.0
This commit is contained in:
commit
d2169b254f
2 changed files with 29 additions and 8 deletions
35
Cargo.lock
generated
35
Cargo.lock
generated
|
@ -77,7 +77,7 @@ dependencies = [
|
|||
"autocfg",
|
||||
"cfg-if",
|
||||
"concurrent-queue",
|
||||
"futures-lite",
|
||||
"futures-lite 1.13.0",
|
||||
"log",
|
||||
"parking",
|
||||
"polling 2.8.0",
|
||||
|
@ -97,7 +97,7 @@ dependencies = [
|
|||
"cfg-if",
|
||||
"concurrent-queue",
|
||||
"futures-io",
|
||||
"futures-lite",
|
||||
"futures-lite 1.13.0",
|
||||
"parking",
|
||||
"polling 3.2.0",
|
||||
"rustix 0.38.8",
|
||||
|
@ -124,7 +124,7 @@ checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
|
|||
dependencies = [
|
||||
"async-io 1.13.0",
|
||||
"blocking",
|
||||
"futures-lite",
|
||||
"futures-lite 1.13.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -176,8 +176,8 @@ dependencies = [
|
|||
"async-lock",
|
||||
"async-task",
|
||||
"atomic-waker",
|
||||
"fastrand",
|
||||
"futures-lite",
|
||||
"fastrand 1.9.0",
|
||||
"futures-lite 1.13.0",
|
||||
"log",
|
||||
]
|
||||
|
||||
|
@ -393,6 +393,12 @@ dependencies = [
|
|||
"instant",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fastrand"
|
||||
version = "2.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
||||
|
||||
[[package]]
|
||||
name = "futures-core"
|
||||
version = "0.3.28"
|
||||
|
@ -411,7 +417,22 @@ version = "1.13.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
|
||||
dependencies = [
|
||||
"fastrand",
|
||||
"fastrand 1.9.0",
|
||||
"futures-core",
|
||||
"futures-io",
|
||||
"memchr",
|
||||
"parking",
|
||||
"pin-project-lite",
|
||||
"waker-fn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "futures-lite"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c1155db57329dca6d018b61e76b1488ce9a2e5e44028cac420a5898f4fcef63"
|
||||
dependencies = [
|
||||
"fastrand 2.0.1",
|
||||
"futures-core",
|
||||
"futures-io",
|
||||
"memchr",
|
||||
|
@ -544,7 +565,7 @@ dependencies = [
|
|||
"crossterm",
|
||||
"dirs",
|
||||
"expand",
|
||||
"futures-lite",
|
||||
"futures-lite 2.0.0",
|
||||
"ratatui",
|
||||
"ron",
|
||||
"secular",
|
||||
|
|
|
@ -19,7 +19,7 @@ crossbeam-queue = "0.3.8"
|
|||
crossterm = "0.27.0"
|
||||
dirs = "5.0.1"
|
||||
expand = "0.3.0"
|
||||
futures-lite = "1.13.0"
|
||||
futures-lite = "2.0.0"
|
||||
ron = "0.8.1"
|
||||
secular = { version = "1.0.1", features = ["normalization"] }
|
||||
serde = { version = "1.0.190", features = ["derive"] }
|
||||
|
|
Loading…
Reference in a new issue