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

Bump tokio from 1.21.1 to 1.21.2

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.1 to 1.21.2.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.1...tokio-1.21.2)

---
updated-dependencies:
- dependency-name: tokio
  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-09-28 19:32:09 +00:00
committed by Quentin Gliech
parent 954e163936
commit f716eddea9
12 changed files with 14 additions and 15 deletions

5
Cargo.lock generated
View File

@ -4692,9 +4692,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.21.1"
version = "1.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0020c875007ad96677dcc890298f4b942882c5d4eb7cc8f439fc3bf813dc9c95"
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
dependencies = [
"autocfg",
"bytes 1.2.1",
@ -4702,7 +4702,6 @@ dependencies = [
"memchr",
"mio",
"num_cpus",
"once_cell",
"parking_lot 0.12.1",
"pin-project-lite",
"signal-hook-registry",

View File

@ -24,7 +24,7 @@ serde_urlencoded = "0.7.1"
serde_json = "1.0.85"
sqlx = "0.6.2"
thiserror = "1.0.36"
tokio = "1.21.1"
tokio = "1.21.2"
tower = { version = "0.4.13", features = ["util"] }
tracing = "0.1.36"
url = "2.3.1"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.21.1", features = ["full"] }
tokio = { version = "1.21.2", features = ["full"] }
futures-util = "0.3.24"
anyhow = "1.0.65"
clap = { version = "3.2.22", features = ["derive"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.21.1", features = [] }
tokio = { version = "1.21.2", features = [] }
tracing = { version = "0.1.36", features = ["log"] }
async-trait = "0.1.57"

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
anyhow = "1.0.65"
async-trait = "0.1.57"
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
tracing = "0.1.36"
aws-sdk-sesv2 = "0.19.0"
aws-config = "0.49.0"

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
# Async runtime
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
# Logging and tracing
tracing = "0.1.36"

View File

@ -24,7 +24,7 @@ serde = "1.0.145"
serde_json = "1.0.85"
serde_urlencoded = "0.7.1"
thiserror = "1.0.36"
tokio = { version = "1.21.1", features = ["sync", "parking_lot"], optional = true }
tokio = { version = "1.21.2", features = ["sync", "parking_lot"], optional = true }
tower = { version = "0.4.13", features = ["timeout", "limit"] }
tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors", "util"] }
tracing = "0.1.36"
@ -35,7 +35,7 @@ webpki-roots = { version = "0.22.4", optional = true }
[dev-dependencies]
anyhow = "1.0.65"
serde = { version = "1.0.145", features = ["derive"] }
tokio = { version = "1.21.1", features = ["macros", "rt"] }
tokio = { version = "1.21.2", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }
[features]

View File

@ -13,6 +13,6 @@ csv = "1.1.6"
futures-util = "0.3.24"
reqwest = { version = "0.11.12", features = ["blocking", "rustls-tls"], default-features = false }
serde = { version = "1.0.145", features = ["derive"] }
tokio = { version = "1.21.1", features = ["full"] }
tokio = { version = "1.21.2", features = ["full"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"

View File

@ -11,7 +11,7 @@ opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
thiserror = "1.0.36"
tokio = { version = "1.21.1", features = ["io-util", "rt"] }
tokio = { version = "1.21.2", features = ["io-util", "rt"] }
tracing = "0.1.36"
wasmtime = "0.40.1"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = "1.21.1"
tokio = "1.21.2"
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] }
chrono = { version = "0.4.22", features = ["serde"] }
serde = { version = "1.0.145", features = ["derive"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = "1.21.1"
tokio = "1.21.2"
async-trait = "0.1.57"
tokio-stream = "0.1.10"
futures-util = "0.3.24"

View File

@ -10,7 +10,7 @@ dev = []
[dependencies]
tracing = "0.1.36"
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
anyhow = "1.0.65"
thiserror = "1.0.36"