1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

build(deps): bump futures-util from 0.3.25 to 0.3.26

Bumps [futures-util](https://github.com/rust-lang/futures-rs) from 0.3.25 to 0.3.26.
- [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.25...0.3.26)

---
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]
2023-01-31 22:24:11 +00:00
committed by Quentin Gliech
parent d8817b9f25
commit d81c0296d1
10 changed files with 23 additions and 23 deletions

28
Cargo.lock generated
View File

@ -1840,9 +1840,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-channel" name = "futures-channel"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-sink", "futures-sink",
@ -1850,9 +1850,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-core" name = "futures-core"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
[[package]] [[package]]
name = "futures-executor" name = "futures-executor"
@ -1878,9 +1878,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-io" name = "futures-io"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
[[package]] [[package]]
name = "futures-lite" name = "futures-lite"
@ -1899,9 +1899,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-macro" name = "futures-macro"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1925,15 +1925,15 @@ dependencies = [
[[package]] [[package]]
name = "futures-sink" name = "futures-sink"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
[[package]] [[package]]
name = "futures-task" name = "futures-task"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
[[package]] [[package]]
name = "futures-timer" name = "futures-timer"
@ -1943,9 +1943,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
[[package]] [[package]]
name = "futures-util" name = "futures-util"
version = "0.3.25" version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
dependencies = [ dependencies = [
"futures 0.1.31", "futures 0.1.31",
"futures-channel", "futures-channel",

View File

@ -11,7 +11,7 @@ axum = { version = "0.6.4", features = ["headers"] }
axum-extra = { version = "0.4.2", features = ["cookie-private"] } axum-extra = { version = "0.4.2", features = ["cookie-private"] }
chrono = "0.4.23" chrono = "0.4.23"
data-encoding = "2.3.3" data-encoding = "2.3.3"
futures-util = "0.3.25" futures-util = "0.3.26"
headers = "0.3.8" headers = "0.3.8"
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]
# Async runtime # Async runtime
tokio = { version = "1.25.0", features = ["macros"] } tokio = { version = "1.25.0", features = ["macros"] }
futures-util = "0.3.25" futures-util = "0.3.26"
# Logging and tracing # Logging and tracing
tracing = "0.1.37" tracing = "0.1.37"

View File

@ -10,7 +10,7 @@ aws-smithy-http = { version = "0.54.1", optional = true }
aws-types = { version = "0.54.1", optional = true } aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.4", optional = true } axum = { version = "0.6.4", optional = true }
bytes = "1.3.0" bytes = "1.3.0"
futures-util = "0.3.25" futures-util = "0.3.26"
headers = "0.3.8" headers = "0.3.8"
http = "0.2.8" http = "0.2.8"
http-body = "0.4.5" http-body = "0.4.5"

View File

@ -11,7 +11,7 @@ async-trait = "0.1.63"
camino = "1.1.2" camino = "1.1.2"
convert_case = "0.6.0" convert_case = "0.6.0"
csv = "1.1.6" csv = "1.1.6"
futures-util = "0.3.25" futures-util = "0.3.26"
reqwest = { version = "0.11.14", features = ["blocking", "rustls-tls"], default-features = false } reqwest = { version = "0.11.14", features = ["blocking", "rustls-tls"], default-features = false }
serde = { version = "1.0.152", features = ["derive"] } serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.25.0", features = ["full"] } tokio = { version = "1.25.0", features = ["full"] }

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
bytes = "1.3.0" bytes = "1.3.0"
futures-util = "0.3.25" futures-util = "0.3.26"
http-body = "0.4.5" http-body = "0.4.5"
hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] }
pin-project-lite = "0.2.9" pin-project-lite = "0.2.9"

View File

@ -24,7 +24,7 @@ chrono = "0.4.23"
form_urlencoded = "1.1.0" form_urlencoded = "1.1.0"
futures = "0.3.25" futures = "0.3.25"
futures-signals = "0.3.31" futures-signals = "0.3.31"
futures-util = "0.3.25" futures-util = "0.3.26"
headers = "0.3.8" headers = "0.3.8"
http = "0.2.8" http = "0.2.8"
once_cell = "1.17.0" once_cell = "1.17.0"

View File

@ -13,7 +13,7 @@ serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91" serde_json = "1.0.91"
thiserror = "1.0.38" thiserror = "1.0.38"
tracing = "0.1.37" tracing = "0.1.37"
futures-util = "0.3.25" futures-util = "0.3.26"
rand = "0.8.5" rand = "0.8.5"
rand_chacha = "0.3.1" rand_chacha = "0.3.1"

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
async-trait = "0.1.63" async-trait = "0.1.63"
chrono = "0.4.23" chrono = "0.4.23"
thiserror = "1.0.38" thiserror = "1.0.38"
futures-util = "0.3.25" futures-util = "0.3.26"
rand_core = "0.6.4" rand_core = "0.6.4"
url = "2.3.1" url = "2.3.1"

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
tokio = "1.25.0" tokio = "1.25.0"
async-trait = "0.1.63" async-trait = "0.1.63"
tokio-stream = "0.1.11" tokio-stream = "0.1.11"
futures-util = "0.3.25" futures-util = "0.3.26"
tracing = "0.1.37" tracing = "0.1.37"
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }