diff --git a/Cargo.lock b/Cargo.lock index 3be00eda..2708978f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3283,9 +3283,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "libc", diff --git a/examples/apps/async-github/Cargo.toml b/examples/apps/async-github/Cargo.toml index 3e01537b..3107acae 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.42.1" ratatui.workspace = true -tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] } tokio-stream = "0.1.17" diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 00380d67..bb2f3c4c 100644 --- a/ratatui/Cargo.toml +++ b/ratatui/Cargo.toml @@ -127,7 +127,7 @@ rand = "0.8.5" rand_chacha = "0.3.1" rstest = "0.23.0" serde_json.workspace = true -tokio = { version = "1.41.1", features = ["rt", "macros", "time", "rt-multi-thread"] } +tokio = { version = "1.42.0", 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"] }