chore(deps): switch to ratatui

This commit is contained in:
Pavel Fomchenkov 2023-04-02 02:28:23 +02:00 committed by GitHub
parent f6cfc6e42a
commit 7cea83cf0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 28 deletions

42
Cargo.lock generated
View file

@ -589,6 +589,19 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "ratatui"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcc0d032bccba900ee32151ec0265667535c230169f5a011154cdcd984e16829"
dependencies = [
"bitflags",
"cassowary",
"termion",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "rayon"
version = "1.6.1"
@ -826,25 +839,13 @@ dependencies = [
"colorsys",
"copypasta-ext",
"getopts",
"ratatui",
"systeroid-core",
"termion 2.0.1",
"termion",
"thiserror",
"tui",
"unicode-width",
]
[[package]]
name = "termion"
version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
dependencies = [
"libc",
"numtoa",
"redox_syscall",
"redox_termios",
]
[[package]]
name = "termion"
version = "2.0.1"
@ -886,19 +887,6 @@ dependencies = [
"once_cell",
]
[[package]]
name = "tui"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
dependencies = [
"bitflags",
"cassowary",
"termion 1.5.6",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "unicode-ident"
version = "1.0.6"

View file

@ -30,7 +30,8 @@ version = "0.3.1" # managed by release.sh
path = "../systeroid-core"
[dependencies.tui]
version = "0.19.0"
package = "ratatui"
version = "0.20.1"
default-features = false
features = ["termion"]