From fc8cd2e7e5fc79ea673b6e483c35e2b42b8ece85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 00:59:32 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.24.1 to 1.24.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.24.1 to 1.24.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- benchmarks/Cargo.toml | 2 +- bindings/matrix-sdk-crypto-ffi/Cargo.toml | 2 +- crates/matrix-sdk-appservice/Cargo.toml | 4 ++-- crates/matrix-sdk-base/Cargo.toml | 2 +- crates/matrix-sdk-common/Cargo.toml | 2 +- crates/matrix-sdk-crypto/Cargo.toml | 4 ++-- crates/matrix-sdk-sled/Cargo.toml | 4 ++-- crates/matrix-sdk-sqlite/Cargo.toml | 4 ++-- crates/matrix-sdk/Cargo.toml | 4 ++-- examples/appservice_autojoin/Cargo.toml | 2 +- examples/autojoin/Cargo.toml | 2 +- examples/command_bot/Cargo.toml | 2 +- examples/cross_signing_bootstrap/Cargo.toml | 2 +- examples/custom_events/Cargo.toml | 2 +- examples/emoji_verification/Cargo.toml | 2 +- examples/get_profiles/Cargo.toml | 2 +- examples/getting_started/Cargo.toml | 2 +- examples/image_bot/Cargo.toml | 2 +- examples/login/Cargo.toml | 2 +- examples/timeline/Cargo.toml | 2 +- testing/matrix-sdk-test/Cargo.toml | 2 +- 22 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 096af4311..88fb71f0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5124,9 +5124,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.24.1" +version = "1.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae" +checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" dependencies = [ "autocfg", "bytes", diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 976ac8bd4..5465b4299 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -15,7 +15,7 @@ matrix-sdk-test = { path = "../testing/matrix-sdk-test", version = "0.6.0"} ruma = { workspace = true } serde_json = { workspace = true } tempfile = "3.3.0" -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread"] } [target.'cfg(target_os = "linux")'.dependencies] pprof = { version = "0.11.0", features = ["flamegraph", "criterion"] } diff --git a/bindings/matrix-sdk-crypto-ffi/Cargo.toml b/bindings/matrix-sdk-crypto-ffi/Cargo.toml index 0c8c876b7..31ed0ecf1 100644 --- a/bindings/matrix-sdk-crypto-ffi/Cargo.toml +++ b/bindings/matrix-sdk-crypto-ffi/Cargo.toml @@ -52,7 +52,7 @@ default_features = false features = ["crypto-store"] [dependencies.tokio] -version = "1.23.1" +version = "1.24.2" default_features = false features = ["rt-multi-thread"] diff --git a/crates/matrix-sdk-appservice/Cargo.toml b/crates/matrix-sdk-appservice/Cargo.toml index ccb41b948..42538b351 100644 --- a/crates/matrix-sdk-appservice/Cargo.toml +++ b/crates/matrix-sdk-appservice/Cargo.toml @@ -42,7 +42,7 @@ serde = { workspace = true } serde_html_form = { workspace = true } serde_json = { workspace = true } serde_yaml = "0.9.4" -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread"] } thiserror = { workspace = true } tower = { version = "0.4.13", default-features = false } tracing = { workspace = true } @@ -50,6 +50,6 @@ url = "2.2.2" [dev-dependencies] matrix-sdk-test = { version = "0.6.0", path = "../../testing/matrix-sdk-test", features = ["appservice"] } -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread", "macros"] } tracing-subscriber = "0.3.11" wiremock = "0.5.13" diff --git a/crates/matrix-sdk-base/Cargo.toml b/crates/matrix-sdk-base/Cargo.toml index 452bc27bf..07a7dc8a8 100644 --- a/crates/matrix-sdk-base/Cargo.toml +++ b/crates/matrix-sdk-base/Cargo.toml @@ -54,7 +54,7 @@ matrix-sdk-test = { version = "0.6.0", path = "../../testing/matrix-sdk-test" } tracing-subscriber = { version = "0.3.11", features = ["env-filter"] } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread", "macros"] } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] wasm-bindgen-test = "0.3.33" diff --git a/crates/matrix-sdk-common/Cargo.toml b/crates/matrix-sdk-common/Cargo.toml index d46b0506a..fe920714f 100644 --- a/crates/matrix-sdk-common/Cargo.toml +++ b/crates/matrix-sdk-common/Cargo.toml @@ -32,7 +32,7 @@ wasm-bindgen-futures = { version = "0.4.33", optional = true } wasm-timer = "0.2.5" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.23.1", default-features = false, features = ["rt", "sync", "time"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt", "sync", "time"] } [dev-dependencies] matrix-sdk-test = { path = "../../testing/matrix-sdk-test/", version= "0.6.0"} diff --git a/crates/matrix-sdk-crypto/Cargo.toml b/crates/matrix-sdk-crypto/Cargo.toml index 322829c4b..7e4b0b1af 100644 --- a/crates/matrix-sdk-crypto/Cargo.toml +++ b/crates/matrix-sdk-crypto/Cargo.toml @@ -55,7 +55,7 @@ zeroize = { workspace = true, features = ["zeroize_derive"] } cfg-if = "1.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.23", default-features = false, features = ["time"] } +tokio = { version = "1.24", default-features = false, features = ["time"] } [dev-dependencies] anyhow = { workspace = true } @@ -66,4 +66,4 @@ indoc = "1.0.4" matrix-sdk-test = { version = "0.6.0", path = "../../testing/matrix-sdk-test" } proptest = { version = "1.0.0", default-features = false, features = ["std"] } # required for async_test macro -tokio = { version = "1.23.1", default-features = false, features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", default-features = false, features = ["macros", "rt-multi-thread"] } diff --git a/crates/matrix-sdk-sled/Cargo.toml b/crates/matrix-sdk-sled/Cargo.toml index f2f1f4201..0c65abbbf 100644 --- a/crates/matrix-sdk-sled/Cargo.toml +++ b/crates/matrix-sdk-sled/Cargo.toml @@ -40,7 +40,7 @@ serde = { workspace = true } serde_json = { workspace = true } sled = "0.34.7" thiserror = { workspace = true } -tokio = { version = "1.23.1", default-features = false, features = ["sync", "fs"] } +tokio = { version = "1.24.2", default-features = false, features = ["sync", "fs"] } tracing = { workspace = true } [dev-dependencies] @@ -50,4 +50,4 @@ matrix-sdk-crypto = { path = "../matrix-sdk-crypto", features = ["testing"] } matrix-sdk-test = { path = "../../testing/matrix-sdk-test" } once_cell = { workspace = true } tempfile = "3.3.0" -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread", "macros"] } diff --git a/crates/matrix-sdk-sqlite/Cargo.toml b/crates/matrix-sdk-sqlite/Cargo.toml index 15a7c80b9..cdd770a53 100644 --- a/crates/matrix-sdk-sqlite/Cargo.toml +++ b/crates/matrix-sdk-sqlite/Cargo.toml @@ -34,7 +34,7 @@ rusqlite = { version = "0.28.0", features = ["bundled"] } serde = { workspace = true } serde_json = { workspace = true } thiserror = { workspace = true } -tokio = { version = "1.23.1", default-features = false, features = [ +tokio = { version = "1.24.2", default-features = false, features = [ "sync", "fs", ] } @@ -48,7 +48,7 @@ matrix-sdk-crypto = { path = "../matrix-sdk-crypto", features = ["testing"] } matrix-sdk-test = { path = "../../testing/matrix-sdk-test" } once_cell = { workspace = true } tempfile = "3.3.0" -tokio = { version = "1.23.1", default-features = false, features = [ +tokio = { version = "1.24.2", default-features = false, features = [ "rt-multi-thread", "macros", ] } diff --git a/crates/matrix-sdk/Cargo.toml b/crates/matrix-sdk/Cargo.toml index 0f4856968..7ec644a08 100644 --- a/crates/matrix-sdk/Cargo.toml +++ b/crates/matrix-sdk/Cargo.toml @@ -122,7 +122,7 @@ wasm-timer = "0.2.5" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] backoff = { version = "0.4.0", features = ["tokio"] } -tokio = { version = "1.23.1", default-features = false, features = ["fs", "rt"] } +tokio = { version = "1.24.2", default-features = false, features = ["fs", "rt"] } [dev-dependencies] anyhow = { workspace = true } @@ -140,5 +140,5 @@ wasm-bindgen-test = "0.3.33" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] ctor = { workspace = true } -tokio = { version = "1.23.1", default-features = false, features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread", "macros"] } wiremock = "0.5.13" diff --git a/examples/appservice_autojoin/Cargo.toml b/examples/appservice_autojoin/Cargo.toml index e15c84c18..9d8c1c2b7 100644 --- a/examples/appservice_autojoin/Cargo.toml +++ b/examples/appservice_autojoin/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" tracing = { workspace = true } diff --git a/examples/autojoin/Cargo.toml b/examples/autojoin/Cargo.toml index de7ac7526..62b70b707 100644 --- a/examples/autojoin/Cargo.toml +++ b/examples/autojoin/Cargo.toml @@ -9,7 +9,7 @@ name = "example-autojoin" test = false [dependencies] -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } anyhow = "1" tracing-subscriber = "0.3.15" diff --git a/examples/command_bot/Cargo.toml b/examples/command_bot/Cargo.toml index 2c1ae7297..bb3ffd807 100644 --- a/examples/command_bot/Cargo.toml +++ b/examples/command_bot/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/examples/cross_signing_bootstrap/Cargo.toml b/examples/cross_signing_bootstrap/Cargo.toml index f49b2ab3f..714ccf829 100644 --- a/examples/cross_signing_bootstrap/Cargo.toml +++ b/examples/cross_signing_bootstrap/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/examples/custom_events/Cargo.toml b/examples/custom_events/Cargo.toml index 20eb3aea3..3ae2394fe 100644 --- a/examples/custom_events/Cargo.toml +++ b/examples/custom_events/Cargo.toml @@ -12,7 +12,7 @@ test = false anyhow = "1" dirs = "4.0.0" serde = "1.0" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" [dependencies.matrix-sdk] diff --git a/examples/emoji_verification/Cargo.toml b/examples/emoji_verification/Cargo.toml index 79e09e541..6203b4ad8 100644 --- a/examples/emoji_verification/Cargo.toml +++ b/examples/emoji_verification/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } clap = { version = "4.0.15", features = ["derive"] } futures = "0.3.24" tracing-subscriber = "0.3.16" diff --git a/examples/get_profiles/Cargo.toml b/examples/get_profiles/Cargo.toml index 0adcf257a..ba766ba52 100644 --- a/examples/get_profiles/Cargo.toml +++ b/examples/get_profiles/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/examples/getting_started/Cargo.toml b/examples/getting_started/Cargo.toml index a147f1e8e..7bdc9eed9 100644 --- a/examples/getting_started/Cargo.toml +++ b/examples/getting_started/Cargo.toml @@ -11,7 +11,7 @@ test = false [dependencies] anyhow = "1" dirs = "4.0.0" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" [dependencies.matrix-sdk] diff --git a/examples/image_bot/Cargo.toml b/examples/image_bot/Cargo.toml index 7abc9a646..1b743e99b 100644 --- a/examples/image_bot/Cargo.toml +++ b/examples/image_bot/Cargo.toml @@ -11,7 +11,7 @@ test = false [dependencies] anyhow = "1" mime = "0.3.16" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/examples/login/Cargo.toml b/examples/login/Cargo.toml index 5186a576c..0b18afdd9 100644 --- a/examples/login/Cargo.toml +++ b/examples/login/Cargo.toml @@ -10,7 +10,7 @@ test = false [dependencies] anyhow = "1" -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/examples/timeline/Cargo.toml b/examples/timeline/Cargo.toml index 13dee4be6..6f4408af5 100644 --- a/examples/timeline/Cargo.toml +++ b/examples/timeline/Cargo.toml @@ -13,7 +13,7 @@ anyhow = "1" clap = "4.0.16" futures = "0.3" futures-signals = { version = "0.3.30", default-features = false } -tokio = { version = "1.23.1", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "0.3.15" url = "2.2.2" diff --git a/testing/matrix-sdk-test/Cargo.toml b/testing/matrix-sdk-test/Cargo.toml index 3260f6e9a..6e4208c3b 100644 --- a/testing/matrix-sdk-test/Cargo.toml +++ b/testing/matrix-sdk-test/Cargo.toml @@ -27,7 +27,7 @@ serde = { workspace = true } serde_json = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.23.1", default-features = false, features = ["rt", "macros"] } +tokio = { version = "1.24.2", default-features = false, features = ["rt", "macros"] } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen-test = "0.3.33"