From 352021bc6f802762a7b82fcfbdfd9d248b412e1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 14:14:15 -0700 Subject: [PATCH] build(deps): bump tokio from 1.43.0 to 1.44.1 (#1723) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.43.0 to 1.44.1.
Release notes

Sourced from tokio's releases.

Tokio v1.44.1

1.44.1 (March 13th, 2025)

Fixed

#7216: tokio-rs/tokio#7216

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

Fixed

Changes

Changes to unstable APIs

Documented

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.43.0&new-version=1.44.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- examples/apps/async-github/Cargo.toml | 2 +- ratatui/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 796230d8..edf98606 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3462,9 +3462,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" dependencies = [ "backtrace", "libc", diff --git a/examples/apps/async-github/Cargo.toml b/examples/apps/async-github/Cargo.toml index 32f8d7d8..0ec5c26c 100644 --- a/examples/apps/async-github/Cargo.toml +++ b/examples/apps/async-github/Cargo.toml @@ -18,5 +18,5 @@ color-eyre = "0.6.3" crossterm = { workspace = true, features = ["event-stream"] } octocrab = "0.43.0" ratatui.workspace = true -tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros"] } tokio-stream = "0.1.17" diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 00d5a1ef..94e44a02 100644 --- a/ratatui/Cargo.toml +++ b/ratatui/Cargo.toml @@ -129,7 +129,7 @@ rand = "0.9.0" rand_chacha = "0.9.0" rstest = "0.25.0" serde_json.workspace = true -tokio = { version = "1.43.0", features = ["rt", "macros", "time", "rt-multi-thread"] } +tokio = { version = "1.44.1", features = ["rt", "macros", "time", "rt-multi-thread"] } tracing = "0.1.40" tracing-appender = "0.2.3" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }