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"] }