diff --git a/Cargo.lock b/Cargo.lock index c488c92e..fee86210 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3318,9 +3318,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "libc", @@ -3333,9 +3333,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/examples/apps/async-github/Cargo.toml b/examples/apps/async-github/Cargo.toml index 3107acae..0126a6f4 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.42.0", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros"] } tokio-stream = "0.1.17" diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 2ddb7c7b..5fec3e2f 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.42.0", features = ["rt", "macros", "time", "rt-multi-thread"] } +tokio = { version = "1.43.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"] }