Skip to content

Commit

Permalink
chore(deps): bump tokio from 1.24.1 to 1.24.2
Browse files Browse the repository at this point in the history
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored and poljar committed Feb 4, 2023
1 parent 4115975 commit fc8cd2e
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-crypto-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
4 changes: 2 additions & 2 deletions crates/matrix-sdk-appservice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ 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 }
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"
2 changes: 1 addition & 1 deletion crates/matrix-sdk-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/matrix-sdk-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
4 changes: 2 additions & 2 deletions crates/matrix-sdk-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions crates/matrix-sdk-sled/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions crates/matrix-sdk-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand All @@ -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",
] }
Expand Down
4 changes: 2 additions & 2 deletions crates/matrix-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"
2 changes: 1 addition & 1 deletion examples/appservice_autojoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion examples/autojoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/command_bot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/cross_signing_bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/custom_events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion examples/emoji_verification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/get_profiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/getting_started/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion examples/image_bot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/login/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion examples/timeline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion testing/matrix-sdk-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit fc8cd2e

Please sign in to comment.