From e75cd4fd05aa34982c6514bfe8189d93f369acaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Nov 2022 21:39:10 +0000 Subject: [PATCH] Bump tokio from 1.21.2 to 1.22.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.2 to 1.22.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.2...tokio-1.22.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/axum-utils/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/graphql/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/http/Cargo.toml | 4 ++-- crates/iana-codegen/Cargo.toml | 2 +- crates/listener/Cargo.toml | 4 ++-- crates/policy/Cargo.toml | 4 ++-- crates/spa/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/tasks/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- 15 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8b9899fc..f735b310 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4914,9 +4914,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.2" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" dependencies = [ "autocfg", "bytes 1.2.1", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 7a322fd6..41a492d0 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -24,7 +24,7 @@ serde_urlencoded = "0.7.1" serde_json = "1.0.88" sqlx = "0.6.2" thiserror = "1.0.37" -tokio = "1.21.2" +tokio = "1.22.0" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.37" url = "2.3.1" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 29c5e6c1..11369bc6 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -22,7 +22,7 @@ rand_chacha = "0.3.1" rustls = "0.20.7" serde_json = "1.0.88" serde_yaml = "0.9.14" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.22.0", features = ["full"] } tower = { version = "0.4.13", features = ["full"] } tower-http = { version = "0.3.4", features = ["fs"] } url = "2.3.1" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index eea707a1..c2aad9c9 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = { version = "1.21.2", features = [] } +tokio = { version = "1.22.0", features = [] } tracing = { version = "0.1.37", features = ["log"] } async-trait = "0.1.58" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 3034c305..e3a9ee42 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.66" async-trait = "0.1.58" -tokio = { version = "1.21.2", features = ["macros"] } +tokio = { version = "1.22.0", features = ["macros"] } tracing = "0.1.37" aws-sdk-sesv2 = { version = "0.21.0", default-features = false } diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 420fb43a..94a0de9e 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -11,7 +11,7 @@ chrono = "0.4.23" serde = { version = "1.0.147", features = ["derive"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } thiserror = "1.0.37" -tokio = { version = "1.21.2", features = ["time"] } +tokio = { version = "1.22.0", features = ["time"] } tracing = "0.1.37" ulid = "1.0.0" url = "2.3.1" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index c40a0f6c..b5847ea1 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] # Async runtime -tokio = { version = "1.21.2", features = ["macros"] } +tokio = { version = "1.22.0", features = ["macros"] } futures-util = "0.3.25" # Logging and tracing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 411ed875..ce33492a 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -26,7 +26,7 @@ serde = "1.0.147" serde_json = "1.0.88" serde_urlencoded = "0.7.1" thiserror = "1.0.37" -tokio = { version = "1.21.2", features = ["sync", "parking_lot"], optional = true } +tokio = { version = "1.22.0", 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.37" @@ -37,7 +37,7 @@ webpki-roots = { version = "0.22.5", optional = true } [dev-dependencies] anyhow = "1.0.66" serde = { version = "1.0.147", features = ["derive"] } -tokio = { version = "1.21.2", features = ["macros", "rt"] } +tokio = { version = "1.22.0", features = ["macros", "rt"] } tower = { version = "0.4.13", features = ["util"] } [features] diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 2d4b947a..abb6bf56 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -14,6 +14,6 @@ csv = "1.1.6" futures-util = "0.3.25" reqwest = { version = "0.11.13", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.147", features = ["derive"] } -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.22.0", features = ["full"] } tracing = "0.1.37" tracing-subscriber = "0.3.16" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 3c5bead0..c9577175 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -12,7 +12,7 @@ http-body = "0.4.5" hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.37" -tokio = { version = "1.21.2", features = ["net", "rt", "macros", "signal", "time"] } +tokio = { version = "1.22.0", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.23.4" tower-http = { version = "0.3.4", features = ["add-extension"] } tower-service = "0.3.2" @@ -22,7 +22,7 @@ libc = "0.2.137" [dev-dependencies] anyhow = "1.0.66" rustls-pemfile = "1.0.1" -tokio = { version = "1.21.2", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } +tokio = { version = "1.22.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } tokio-test = "0.4.2" tracing-subscriber = "0.3.16" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index db492262..1729918d 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -11,7 +11,7 @@ opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.88" thiserror = "1.0.37" -tokio = { version = "1.21.2", features = ["io-util"] } +tokio = { version = "1.22.0", features = ["io-util"] } tracing = "0.1.37" wasmtime = { version = "2.0.2", default-features = false, features = ["async", "cranelift"] } @@ -19,7 +19,7 @@ mas-data-model = { path = "../data-model" } oauth2-types = { path = "../oauth2-types" } [dev-dependencies] -tokio = { version = "1.21.2", features = ["fs", "rt", "macros"] } +tokio = { version = "1.22.0", features = ["fs", "rt", "macros"] } [features] cache = ["wasmtime/cache"] diff --git a/crates/spa/Cargo.toml b/crates/spa/Cargo.toml index 042c2f85..8c754ca0 100644 --- a/crates/spa/Cargo.toml +++ b/crates/spa/Cargo.toml @@ -14,7 +14,7 @@ headers = "0.3.8" http = "0.2.8" tower-service = "0.3.2" tower-http = { version = "0.3.4", features = ["fs"] } -tokio = { version = "1.21.2", features = ["fs"] } +tokio = { version = "1.22.0", features = ["fs"] } [[bin]] name = "render" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 6e0ed8d7..67aad5d4 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = "1.21.2" +tokio = "1.22.0" sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] } chrono = { version = "0.4.23", features = ["serde"] } serde = { version = "1.0.147", features = ["derive"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 5be5e91a..2be6311f 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = "1.21.2" +tokio = "1.22.0" async-trait = "0.1.58" tokio-stream = "0.1.11" futures-util = "0.3.25" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 73bb92e3..38847e7c 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tracing = "0.1.37" -tokio = { version = "1.21.2", features = ["macros"] } +tokio = { version = "1.22.0", features = ["macros"] } anyhow = "1.0.66" thiserror = "1.0.37"