summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJake Gallow <Ragnyll@users.noreply.github.com>2023-05-04 21:56:55 -0500
committerGitHub <noreply@github.com>2023-05-04 22:56:55 -0400
commitdaf25df2692d2aa910af87886061beb0107fd8f1 (patch)
treeb4d33e9bb1d8711609b83d8746b2efb447256d1f /Cargo.lock
parent79cd6b05afdc10a1b1383844d403e4ef9fbbcbcd (diff)
convert to using ratatui (#290)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock48
1 files changed, 30 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bafe3e4..42174a7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -28,13 +28,13 @@ dependencies = [
[[package]]
name = "ansi-to-tui"
-version = "2.0.0"
+version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3460d7beaf8b192c09a55933da038ccd514f00efdb37d7d87f3ce078336b47e9"
+checksum = "5f3d156989cd98fb225b1a83e82e133e95a151774a420c884f6a65c5f6fb1ee2"
dependencies = [
"nom",
+ "ratatui",
"thiserror",
- "tui",
]
[[package]]
@@ -493,6 +493,7 @@ dependencies = [
"open",
"phf",
"rand",
+ "ratatui",
"rustyline",
"serde",
"serde_derive",
@@ -500,10 +501,9 @@ dependencies = [
"shellexpand",
"signal-hook",
"structopt",
- "termion",
+ "termion 1.5.6",
"toml",
"trash",
- "tui",
"unicode-segmentation",
"unicode-width",
"users",
@@ -872,6 +872,19 @@ dependencies = [
]
[[package]]
+name = "ratatui"
+version = "0.20.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d690717aac4aca6e901da642fafcceff63ded0ab4c65c18ceff39c9a27f21508"
+dependencies = [
+ "bitflags",
+ "cassowary",
+ "termion 2.0.1",
+ "unicode-segmentation",
+ "unicode-width",
+]
+
+[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1117,6 +1130,18 @@ dependencies = [
]
[[package]]
+name = "termion"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "659c1f379f3408c7e5e84c7d0da6d93404e3800b6b9d063ba24436419302ec90"
+dependencies = [
+ "libc",
+ "numtoa",
+ "redox_syscall",
+ "redox_termios",
+]
+
+[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1222,19 +1247,6 @@ dependencies = [
]
[[package]]
-name = "tui"
-version = "0.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
-dependencies = [
- "bitflags",
- "cassowary",
- "termion",
- "unicode-segmentation",
- "unicode-width",
-]
-
-[[package]]
name = "unicode-bidi"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"