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

View File

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