From a0fb4ef182103e15e023da35a77dd34e1a6113b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 06:33:46 +0000 Subject: [PATCH] build(deps): bump ratatui from 0.28.0 to 0.29.0 Bumps [ratatui](https://github.com/ratatui/ratatui) from 0.28.0 to 0.29.0. - [Release notes](https://github.com/ratatui/ratatui/releases) - [Changelog](https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md) - [Commits](https://github.com/ratatui/ratatui/compare/v0.28.0...v0.29.0) --- updated-dependencies: - dependency-name: ratatui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ all-is-cubes-desktop/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be2a3da85..f7050453f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2412,7 +2412,7 @@ dependencies = [ "vec_map", "wasm-bindgen", "web-sys", - "windows 0.52.0", + "windows 0.54.0", ] [[package]] @@ -3161,7 +3161,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -4581,23 +4581,23 @@ checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab" [[package]] name = "ratatui" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ba6a365afbe5615999275bea2446b970b10a41102500e27ce7678d50d978303" +checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b" dependencies = [ "bitflags 2.6.0", "cassowary", "compact_str", "crossterm 0.28.1", + "indoc", "instability", "itertools 0.13.0", "lru", "paste", "strum", - "strum_macros", "unicode-segmentation", "unicode-truncate", - "unicode-width 0.1.13", + "unicode-width 0.2.0", ] [[package]] diff --git a/all-is-cubes-desktop/Cargo.toml b/all-is-cubes-desktop/Cargo.toml index 548d387b6..70fc970b6 100644 --- a/all-is-cubes-desktop/Cargo.toml +++ b/all-is-cubes-desktop/Cargo.toml @@ -92,7 +92,7 @@ serde_json = { workspace = true } simplelog = { workspace = true } strum = { workspace = true, features = ["derive", "std"] } tokio = { workspace = true, features = ["rt-multi-thread", "sync"] } -ratatui = { version = "0.28.0", optional = true, default-features = false, features = ["crossterm"] } +ratatui = { version = "0.29.0", optional = true, default-features = false, features = ["crossterm"] } unicode-width = { workspace = true, optional = true } # We have no true direct dependency on wgpu, but do need to select backends. # (As of wgpu 0.19, Vulkan is implicitly enabled on Linux.)