Bump ratatui from 0.26.2 to 0.27.0

Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.2 to 0.27.0.
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ratatui-org/ratatui/compare/v0.26.2...v0.27.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-07-13 22:16:31 +00:00 committed by GitHub
parent f21aabef64
commit 784f8c7344
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 40 deletions

44
Cargo.lock generated
View File

@ -249,12 +249,6 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "indoc"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
[[package]]
name = "ioctl-rs"
version = "0.1.6"
@ -270,15 +264,6 @@ version = "1.70.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.13.0"
@ -452,26 +437,6 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "ratatui"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a564a852040e82671dc50a37d88f3aa83bbc690dfc6844cfe7a2591620206a80"
dependencies = [
"bitflags 2.5.0",
"cassowary",
"compact_str",
"crossterm",
"indoc",
"itertools 0.12.1",
"lru",
"paste",
"stability",
"strum",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "ratatui"
version = "0.27.0"
@ -481,7 +446,8 @@ dependencies = [
"bitflags 2.5.0",
"cassowary",
"compact_str",
"itertools 0.13.0",
"crossterm",
"itertools",
"lru",
"paste",
"stability",
@ -706,7 +672,7 @@ dependencies = [
"ego-tree",
"oneshot",
"portable-pty",
"ratatui 0.26.2",
"ratatui",
"tui-term",
]
@ -716,7 +682,7 @@ version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fac7538a3b9d5e92739253323e169ed25f005669c0e7f9d98f50f697fcada4e8"
dependencies = [
"ratatui 0.27.0",
"ratatui",
"vt100",
]
@ -738,7 +704,7 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
dependencies = [
"itertools 0.13.0",
"itertools",
"unicode-segmentation",
"unicode-width",
]

View File

@ -9,5 +9,5 @@ crossterm = "0.27.0"
ego-tree = "0.6.2"
oneshot = "0.1.8"
portable-pty = "0.8.1"
ratatui = "0.26.2"
ratatui = "0.27.0"
tui-term = "0.1.12"