You've already forked authentication-service
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:
committed by
Quentin Gliech
parent
d8817b9f25
commit
d81c0296d1
28
Cargo.lock
generated
28
Cargo.lock
generated
@ -1840,9 +1840,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-channel"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
|
||||
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
|
||||
dependencies = [
|
||||
"futures-core",
|
||||
"futures-sink",
|
||||
@ -1850,9 +1850,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-core"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
|
||||
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
|
||||
|
||||
[[package]]
|
||||
name = "futures-executor"
|
||||
@ -1878,9 +1878,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-io"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
|
||||
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
|
||||
|
||||
[[package]]
|
||||
name = "futures-lite"
|
||||
@ -1899,9 +1899,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-macro"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
|
||||
checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -1925,15 +1925,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "futures-sink"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
|
||||
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
|
||||
|
||||
[[package]]
|
||||
name = "futures-task"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
|
||||
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
|
||||
|
||||
[[package]]
|
||||
name = "futures-timer"
|
||||
@ -1943,9 +1943,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
||||
|
||||
[[package]]
|
||||
name = "futures-util"
|
||||
version = "0.3.25"
|
||||
version = "0.3.26"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
|
||||
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
|
||||
dependencies = [
|
||||
"futures 0.1.31",
|
||||
"futures-channel",
|
||||
|
@ -11,7 +11,7 @@ axum = { version = "0.6.4", features = ["headers"] }
|
||||
axum-extra = { version = "0.4.2", features = ["cookie-private"] }
|
||||
chrono = "0.4.23"
|
||||
data-encoding = "2.3.3"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
headers = "0.3.8"
|
||||
http = "0.2.8"
|
||||
http-body = "0.4.5"
|
||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
# Async runtime
|
||||
tokio = { version = "1.25.0", features = ["macros"] }
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
|
||||
# Logging and tracing
|
||||
tracing = "0.1.37"
|
||||
|
@ -10,7 +10,7 @@ aws-smithy-http = { version = "0.54.1", optional = true }
|
||||
aws-types = { version = "0.54.1", optional = true }
|
||||
axum = { version = "0.6.4", optional = true }
|
||||
bytes = "1.3.0"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
headers = "0.3.8"
|
||||
http = "0.2.8"
|
||||
http-body = "0.4.5"
|
||||
|
@ -11,7 +11,7 @@ async-trait = "0.1.63"
|
||||
camino = "1.1.2"
|
||||
convert_case = "0.6.0"
|
||||
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 }
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
tokio = { version = "1.25.0", features = ["full"] }
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
bytes = "1.3.0"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
http-body = "0.4.5"
|
||||
hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] }
|
||||
pin-project-lite = "0.2.9"
|
||||
|
@ -24,7 +24,7 @@ chrono = "0.4.23"
|
||||
form_urlencoded = "1.1.0"
|
||||
futures = "0.3.25"
|
||||
futures-signals = "0.3.31"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
headers = "0.3.8"
|
||||
http = "0.2.8"
|
||||
once_cell = "1.17.0"
|
||||
|
@ -13,7 +13,7 @@ serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_json = "1.0.91"
|
||||
thiserror = "1.0.38"
|
||||
tracing = "0.1.37"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
|
||||
rand = "0.8.5"
|
||||
rand_chacha = "0.3.1"
|
||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||
async-trait = "0.1.63"
|
||||
chrono = "0.4.23"
|
||||
thiserror = "1.0.38"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
|
||||
rand_core = "0.6.4"
|
||||
url = "2.3.1"
|
||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||
tokio = "1.25.0"
|
||||
async-trait = "0.1.63"
|
||||
tokio-stream = "0.1.11"
|
||||
futures-util = "0.3.25"
|
||||
futures-util = "0.3.26"
|
||||
tracing = "0.1.37"
|
||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
|
||||
|
Reference in New Issue
Block a user