From 1a5b9603d9a446911a6e6c786ec59def573428b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 14:48:28 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.51.1 to 1.52.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.51.1 to 1.52.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.51.1...tokio-1.52.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.52.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/ratatui-toaster/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f40981b..3e0a3b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5426,9 +5426,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.51.1" +version = "1.52.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c" +checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6" dependencies = [ "bytes", "libc", diff --git a/Cargo.toml b/Cargo.toml index 913e9f0..37d3bce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ termprofile = { version = "0.2.2", features = ["convert", "ratatui"] } textwrap = { version = "0.16.2", features = ["terminal_size"] } thiserror = "2.0.18" throbber-widgets-tui = "0.11.0" -tokio = { version = "1.51", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.52", features = ["macros", "rt-multi-thread"] } tokio-util = "0.7.18" tracing = "0.1.44" tracing-error = "0.2.1" diff --git a/crates/ratatui-toaster/Cargo.toml b/crates/ratatui-toaster/Cargo.toml index 66342fe..333b41c 100644 --- a/crates/ratatui-toaster/Cargo.toml +++ b/crates/ratatui-toaster/Cargo.toml @@ -14,7 +14,7 @@ categories = ["command-line-utilities", "command-line-interface"] [dependencies] ratatui = { version = "0.30.0", default-features = false, features = ["unstable-widget-ref"] } textwrap = "0.16.2" -tokio = { version = "1.51", features = ["rt-multi-thread"], optional = true } +tokio = { version = "1.52", features = ["rt-multi-thread"], optional = true } [features] tokio = ["dep:tokio"] @@ -25,7 +25,7 @@ path = "examples/simple.rs" [dev-dependencies] anyhow = "1.0.102" -tokio = { version = "1.51", features = ["rt-multi-thread", "sync", "time", "macros"] } +tokio = { version = "1.52", features = ["rt-multi-thread", "sync", "time", "macros"] } ratatui = { version = "0.30.0" } tachyonfx = { version = "0.25.0", default-features = false, features = ["std", "std-duration"] } tokio-util = "0.7.18"