Bump ratatui from 0.28.1 to 0.29.0

Bumps [ratatui](https://github.com/ratatui/ratatui) from 0.28.1 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.1...v0.29.0)

---
updated-dependencies:
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-10-21 20:06:29 +00:00 committed by GitHub
parent 79eb752552
commit 9619e3860b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 5 deletions

34
Cargo.lock generated
View File

@ -51,7 +51,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00c4af0bef1b514c9b6a32a773caf604c1390fa7913f4eaa23bfe76f251d6a42"
dependencies = [
"nom",
"ratatui",
"ratatui 0.28.1",
"simdutf8",
"smallvec",
"thiserror",
@ -422,6 +422,12 @@ dependencies = [
"hashbrown",
]
[[package]]
name = "indoc"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
[[package]]
name = "instability"
version = "0.3.2"
@ -509,7 +515,7 @@ dependencies = [
"oneshot",
"portable-pty",
"rand",
"ratatui",
"ratatui 0.29.0",
"temp-dir",
"tree-sitter-bash",
"tree-sitter-highlight",
@ -750,7 +756,6 @@ dependencies = [
"bitflags 2.6.0",
"cassowary",
"compact_str",
"crossterm",
"instability",
"itertools",
"lru",
@ -762,6 +767,27 @@ dependencies = [
"unicode-width 0.1.14",
]
[[package]]
name = "ratatui"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
dependencies = [
"bitflags 2.6.0",
"cassowary",
"compact_str",
"crossterm",
"indoc",
"instability",
"itertools",
"lru",
"paste",
"strum",
"unicode-segmentation",
"unicode-truncate",
"unicode-width 0.2.0",
]
[[package]]
name = "redox_syscall"
version = "0.5.4"
@ -1134,7 +1160,7 @@ version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07f0233f0d4795d2dc6663cfc3ce56b87bebcee66d6bcc088aa6aff5c072361"
dependencies = [
"ratatui",
"ratatui 0.28.1",
"vt100",
]

View File

@ -20,7 +20,7 @@ crossterm = "0.28.1"
ego-tree = { workspace = true }
oneshot = "0.1.8"
portable-pty = "0.8.1"
ratatui = "0.28.1"
ratatui = "0.29.0"
tui-term = "0.1.12"
temp-dir = "0.1.14"
unicode-width = "0.2.0"