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

Bump futures-util from 0.3.21 to 0.3.23

Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.21 to 0.3.23.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.21...0.3.23)

---
updated-dependencies:
- dependency-name: futures-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-08-19 09:58:42 +00:00
committed by Quentin Gliech
parent f0efc2c695
commit 739507d883
6 changed files with 19 additions and 19 deletions

28
Cargo.lock generated
View File

@ -1530,9 +1530,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-channel" name = "futures-channel"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-sink", "futures-sink",
@ -1540,9 +1540,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-core" name = "futures-core"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115"
[[package]] [[package]]
name = "futures-executor" name = "futures-executor"
@ -1568,15 +1568,15 @@ dependencies = [
[[package]] [[package]]
name = "futures-io" name = "futures-io"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5"
[[package]] [[package]]
name = "futures-macro" name = "futures-macro"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" checksum = "0db9cce532b0eae2ccf2766ab246f114b56b9cf6d445e00c2549fbc100ca045d"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1585,21 +1585,21 @@ dependencies = [
[[package]] [[package]]
name = "futures-sink" name = "futures-sink"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765"
[[package]] [[package]]
name = "futures-task" name = "futures-task"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306"
[[package]] [[package]]
name = "futures-util" name = "futures-util"
version = "0.3.21" version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577"
dependencies = [ dependencies = [
"futures 0.1.31", "futures 0.1.31",
"futures-channel", "futures-channel",

View File

@ -12,7 +12,7 @@ axum-extra = { version = "0.3.7", features = ["cookie-private"] }
bincode = "1.3.3" bincode = "1.3.3"
chrono = "0.4.20" chrono = "0.4.20"
data-encoding = "2.3.2" data-encoding = "2.3.2"
futures-util = "0.3.21" futures-util = "0.3.23"
headers = "0.3.7" headers = "0.3.7"
http = "0.2.8" http = "0.2.8"
http-body = "0.4.5" http-body = "0.4.5"

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
axum = { version = "0.5.15", optional = true } axum = { version = "0.5.15", optional = true }
bytes = "1.2.1" bytes = "1.2.1"
futures-util = "0.3.21" futures-util = "0.3.23"
headers = "0.3.7" headers = "0.3.7"
http = "0.2.8" http = "0.2.8"
http-body = "0.4.5" http-body = "0.4.5"

View File

@ -10,7 +10,7 @@ anyhow = "1.0.62"
async-trait = "0.1.57" async-trait = "0.1.57"
convert_case = "0.5.0" convert_case = "0.5.0"
csv = "1.1.6" csv = "1.1.6"
futures-util = "0.3.21" futures-util = "0.3.23"
reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls"], default-features = false } reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls"], default-features = false }
serde = { version = "1.0.142", features = ["derive"] } serde = { version = "1.0.142", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.20.1", features = ["full"] }

View File

@ -14,7 +14,7 @@ crypto-mac = { version = "0.11.1", features = ["std"] }
digest = "0.10.3" digest = "0.10.3"
ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] } ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] }
elliptic-curve = { version = "0.12.3", features = ["ecdh", "pem"] } elliptic-curve = { version = "0.12.3", features = ["ecdh", "pem"] }
futures-util = "0.3.21" futures-util = "0.3.23"
hmac = "0.12.1" hmac = "0.12.1"
http = "0.2.8" http = "0.2.8"
p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] } p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] }

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
tokio = "1.20.1" tokio = "1.20.1"
async-trait = "0.1.57" async-trait = "0.1.57"
tokio-stream = "0.1.9" tokio-stream = "0.1.9"
futures-util = "0.3.21" futures-util = "0.3.23"
tracing = "0.1.36" tracing = "0.1.36"
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] } sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] }