1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

build(deps): bump futures-lite from 1.13.0 to 2.0.0

Bumps [futures-lite](https://github.com/smol-rs/futures-lite) from 1.13.0 to 2.0.0.
- [Release notes](https://github.com/smol-rs/futures-lite/releases)
- [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md)
- [Commits](https://github.com/smol-rs/futures-lite/compare/v1.13.0...v2.0.0)

---
updated-dependencies:
- dependency-name: futures-lite
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-10-25 19:11:09 +00:00
committed by Quentin Gliech
parent 89b26784da
commit bca74ef7c3
2 changed files with 24 additions and 9 deletions

31
Cargo.lock generated
View File

@ -280,7 +280,7 @@ dependencies = [
"async-task",
"concurrent-queue",
"fastrand 2.0.1",
"futures-lite",
"futures-lite 1.13.0",
"slab",
]
@ -295,7 +295,7 @@ dependencies = [
"async-io",
"async-lock",
"blocking",
"futures-lite",
"futures-lite 1.13.0",
"once_cell",
]
@ -387,7 +387,7 @@ dependencies = [
"autocfg",
"cfg-if",
"concurrent-queue",
"futures-lite",
"futures-lite 1.13.0",
"log",
"parking",
"polling",
@ -418,7 +418,7 @@ dependencies = [
"blocking",
"cfg-if",
"event-listener 3.0.0",
"futures-lite",
"futures-lite 1.13.0",
"rustix 0.38.20",
"windows-sys 0.48.0",
]
@ -456,7 +456,7 @@ dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"futures-lite 1.13.0",
"gloo-timers",
"kv-log-macro",
"log",
@ -735,7 +735,7 @@ dependencies = [
"async-task",
"fastrand 2.0.1",
"futures-io",
"futures-lite",
"futures-lite 1.13.0",
"piper",
"tracing",
]
@ -1785,6 +1785,21 @@ dependencies = [
"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",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
version = "0.3.28"
@ -2142,7 +2157,7 @@ dependencies = [
"anyhow",
"async-channel",
"base64 0.13.1",
"futures-lite",
"futures-lite 1.13.0",
"http",
"infer",
"pin-project-lite",
@ -3307,7 +3322,7 @@ dependencies = [
"async-trait",
"chrono",
"event-listener 3.0.0",
"futures-lite",
"futures-lite 2.0.0",
"mas-data-model",
"mas-email",
"mas-i18n",

View File

@ -15,7 +15,7 @@ async-stream = "0.3.5"
async-trait = "0.1.74"
chrono.workspace = true
event-listener = "3.0.0"
futures-lite = "1.13.0"
futures-lite = "2.0.0"
rand.workspace = true
rand_chacha = "0.3.1"
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }