summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-09-19 11:58:50 +0300
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-09-19 11:58:50 +0300
commit4bc53d6ed4acc01c56a8a783909c6656b37ca321 (patch)
tree44ade2403235327d2c641cd930662f4e7c987364
parentdee4a9f2d799c53efd633a764f23db02744034ff (diff)
chore(deps): bump ratatui to 0.23.0
-rw-r--r--Cargo.lock47
-rw-r--r--systeroid-tui/Cargo.toml4
2 files changed, 45 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 07c3509..da1bb17 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -544,6 +544,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
[[package]]
+name = "itertools"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
+dependencies = [
+ "either",
+]
+
+[[package]]
name = "itoa"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -839,14 +848,16 @@ dependencies = [
[[package]]
name = "ratatui"
-version = "0.22.0"
+version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8285baa38bdc9f879d92c0e37cb562ef38aa3aeefca22b3200186bc39242d3d5"
+checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad"
dependencies = [
"bitflags 2.3.3",
"cassowary",
"indoc",
+ "itertools",
"paste",
+ "strum",
"termion",
"unicode-segmentation",
"unicode-width",
@@ -954,6 +965,12 @@ dependencies = [
]
[[package]]
+name = "rustversion"
+version = "1.0.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
+
+[[package]]
name = "ryu"
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1046,6 +1063,28 @@ dependencies = [
]
[[package]]
+name = "strum"
+version = "0.25.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
+dependencies = [
+ "strum_macros",
+]
+
+[[package]]
+name = "strum_macros"
+version = "0.25.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
+dependencies = [
+ "heck",
+ "proc-macro2",
+ "quote",
+ "rustversion",
+ "syn 2.0.28",
+]
+
+[[package]]
name = "supports-color"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1196,9 +1235,9 @@ dependencies = [
[[package]]
name = "tui-logger"
-version = "0.9.5"
+version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e9b303440de7c259d03e113a808f2f8ca3cd9097840663dc484b12f19c6f44a6"
+checksum = "6b1616f71dcb909bb2d6507aabe679547a6b5ec5648fc0da64d524a4f3688e08"
dependencies = [
"chrono",
"fxhash",
diff --git a/systeroid-tui/Cargo.toml b/systeroid-tui/Cargo.toml
index 5081fbf..f547150 100644
--- a/systeroid-tui/Cargo.toml
+++ b/systeroid-tui/Cargo.toml
@@ -30,12 +30,12 @@ version = "0.4.3" # managed by release.sh
path = "../systeroid-core"
[dependencies.ratatui]
-version = "=0.22.0"
+version = "0.23.0"
default-features = false
features = ["termion"]
[dependencies.tui-logger]
-version = "0.9.5"
+version = "0.9.6"
default-features = false
features = ["ratatui-support"]