diff --git a/Cargo.lock b/Cargo.lock index 3918e243d..4dadbcb99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,9 +116,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" +checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" [[package]] name = "approx" @@ -396,9 +396,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.21" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f" +checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" dependencies = [ "clap_builder", "clap_derive", @@ -406,9 +406,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.21" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec" +checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" dependencies = [ "anstream", "anstyle", @@ -433,9 +433,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "cloudabi" @@ -3270,9 +3270,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" dependencies = [ "deranged", "itoa", @@ -3293,9 +3293,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" dependencies = [ "num-conv", "time-core", @@ -3337,9 +3337,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[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", "bytes", @@ -3377,9 +3377,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.12" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" +checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" dependencies = [ "bytes", "futures-core", diff --git a/code/examples/ratatui-examples/Cargo.toml b/code/examples/ratatui-examples/Cargo.toml index 9e2334594..7ac273a6e 100644 --- a/code/examples/ratatui-examples/Cargo.toml +++ b/code/examples/ratatui-examples/Cargo.toml @@ -23,7 +23,7 @@ crossterm = "0.28.1" ratatui = { version = "0.29.0", features = ["widget-calendar"] } [dev-dependencies] -anyhow = "1.0.93" +anyhow = "1.0.94" argh = "0.1.12" better-panic = "0.3.0" color-eyre = "0.6.2" @@ -42,8 +42,8 @@ rstest = "0.23.0" serde_json = "1.0.133" itertools = "0.13" strum = { version = "0.26.3", features = ["derive"] } -time = { version = "0.3.11", features = ["local-offset"] } -tokio = { version = "1.41.1" } +time = { version = "0.3.37", features = ["local-offset"] } +tokio = { version = "1.42.0" } tracing = "0.1.41" tracing-subscriber = "0.3.19" tracing-appender = "0.2.3" diff --git a/code/showcase/widget-showcase/Cargo.toml b/code/showcase/widget-showcase/Cargo.toml index 7ac9ef352..b87e95a13 100644 --- a/code/showcase/widget-showcase/Cargo.toml +++ b/code/showcase/widget-showcase/Cargo.toml @@ -14,7 +14,7 @@ publish.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "4.5.21", features = ["derive"] } +clap = { version = "4.5.23", features = ["derive"] } color-eyre = "0.6.3" ratatui = { version = "0.29.0", features = ["all-widgets"] } -time = "0.3.36" +time = "0.3.37" diff --git a/code/tutorials/ratatui-counter-async-app/Cargo.toml b/code/tutorials/ratatui-counter-async-app/Cargo.toml index 602ae5053..352691466 100644 --- a/code/tutorials/ratatui-counter-async-app/Cargo.toml +++ b/code/tutorials/ratatui-counter-async-app/Cargo.toml @@ -10,7 +10,7 @@ publish.workspace = true [dependencies] better-panic = "0.3.0" -clap = { version = "4.5.21", features = [ +clap = { version = "4.5.23", features = [ "derive", "cargo", "wrap_help", @@ -35,8 +35,8 @@ serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.133" signal-hook = "0.3.17" strip-ansi-escapes = "0.2.0" -tokio = { version = "1.41.1", features = ["full"] } -tokio-util = "0.7.12" +tokio = { version = "1.42.0", features = ["full"] } +tokio-util = "0.7.13" tracing = "0.1.41" tracing-error = "0.2.1" tracing-subscriber = { version = "0.3.19", features = ["env-filter", "serde"] } diff --git a/code/tutorials/ratatui-stopwatch-app/Cargo.toml b/code/tutorials/ratatui-stopwatch-app/Cargo.toml index 21328aec9..737cfc93e 100644 --- a/code/tutorials/ratatui-stopwatch-app/Cargo.toml +++ b/code/tutorials/ratatui-stopwatch-app/Cargo.toml @@ -20,6 +20,6 @@ log = "0.4.22" ratatui = "0.29.0" strip-ansi-escapes = "0.2.0" strum = "0.26.3" -tokio = { version = "1.41.1", features = ["full"] } -tokio-util = "0.7.12" +tokio = { version = "1.42.0", features = ["full"] } +tokio-util = "0.7.13" tui-big-text = "0.7.0"