chore(deps): update ratatui to 0.27 (#2193)

This commit is contained in:
Ellie Huxtable 2024-06-25 09:43:42 +01:00 committed by GitHub
parent 9e36f63c6e
commit 05d1d9b136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 10 deletions

28
Cargo.lock generated
View File

@ -227,7 +227,7 @@ dependencies = [
"fuzzy-matcher",
"indicatif",
"interim",
"itertools",
"itertools 0.12.1",
"log",
"ratatui",
"regex",
@ -269,7 +269,7 @@ dependencies = [
"humantime",
"indicatif",
"interim",
"itertools",
"itertools 0.12.1",
"log",
"memchr",
"minspan",
@ -375,7 +375,7 @@ dependencies = [
"futures-util",
"indicatif",
"interim",
"itertools",
"itertools 0.12.1",
"log",
"semver",
"serde",
@ -1943,6 +1943,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.11"
@ -2694,7 +2703,7 @@ checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
dependencies = [
"bytes",
"heck 0.5.0",
"itertools",
"itertools 0.12.1",
"log",
"multimap",
"once_cell",
@ -2714,7 +2723,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
dependencies = [
"anyhow",
"itertools",
"itertools 0.12.1",
"proc-macro2",
"quote",
"syn 2.0.66",
@ -2826,19 +2835,20 @@ dependencies = [
[[package]]
name = "ratatui"
version = "0.26.3"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef"
checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3"
dependencies = [
"bitflags 2.5.0",
"cassowary",
"compact_str",
"crossterm",
"itertools",
"itertools 0.13.0",
"lru",
"paste",
"stability",
"strum",
"strum_macros",
"unicode-segmentation",
"unicode-truncate",
"unicode-width",
@ -4317,7 +4327,7 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226"
dependencies = [
"itertools",
"itertools 0.12.1",
"unicode-width",
]

View File

@ -78,7 +78,7 @@ tiny-bip39 = "1"
futures-util = "0.3"
fuzzy-matcher = "0.3.7"
colored = "2.0.4"
ratatui = "0.26"
ratatui = "0.27"
tracing = "0.1"
tracing-subscriber = { workspace = true }
uuid = { workspace = true }