summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-01-04 09:46:57 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-01-04 09:46:57 +0800
commit27e65a2fc91b22cb5816864f51d1d3a3ce11a94a (patch)
treeaa5a5be5d4dddb2e259dba2b12041c5b5867e00a
parentd32ab34e2b8521ddbbbaacd08d48b983cb792432 (diff)
upgrade to tui 14
-rw-r--r--Cargo.lock38
-rw-r--r--Cargo.toml6
2 files changed, 16 insertions, 28 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b6c29f9..80c6f98 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -211,14 +211,14 @@ dependencies = [
[[package]]
name = "crosstermion"
-version = "0.5.0"
+version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4e8d2d94a8a9afe9773520e636e906dfb4a7dedb2f0f2eb4ad3080dca39892dc"
+checksum = "2f7178f7bf5b76e0807edbd7fd2bb40755b0c7d27aa5c68a6e32e894d8460272"
dependencies = [
"crossterm",
"termion",
- "tui 0.13.0",
- "tui-react 0.13.0",
+ "tui",
+ "tui-react 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -254,8 +254,8 @@ dependencies = [
"open",
"petgraph",
"pretty_assertions",
- "tui 0.13.0",
- "tui-react 0.13.0",
+ "tui",
+ "tui-react 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-segmentation",
"wild",
]
@@ -681,38 +681,24 @@ dependencies = [
[[package]]
name = "tui"
-version = "0.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d4e6c82bb967df89f20b875fa8835fab5d5622c6a5efa574a1f0b6d0aa6e8f6"
-dependencies = [
- "bitflags",
- "cassowary",
- "crossterm",
- "termion",
- "unicode-segmentation",
- "unicode-width",
-]
-
-[[package]]
-name = "tui"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ced152a8e9295a5b168adc254074525c17ac4a83c90b2716274cc38118bddc9"
dependencies = [
"bitflags",
"cassowary",
+ "crossterm",
+ "termion",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "tui-react"
-version = "0.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3ae8540a35c71f98407398eae06d55bab6373de612a3f147540293d4a8f10ef"
+version = "0.14.0"
dependencies = [
"log",
- "tui 0.13.0",
+ "tui",
"unicode-segmentation",
"unicode-width",
]
@@ -720,9 +706,11 @@ dependencies = [
[[package]]
name = "tui-react"
version = "0.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fe492db1ef5abbac0d46d1fe6a53881c77fd53c1be03ee45d366e2a8ef83f4fa"
dependencies = [
"log",
- "tui 0.14.0",
+ "tui",
"unicode-segmentation",
"unicode-width",
]
diff --git a/Cargo.toml b/Cargo.toml
index c66bcaa..ebc8758 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -30,9 +30,9 @@ colored = "2.0.0"
# 'tui' related
unicode-segmentation = { version = "1.3.0", optional = true }
-crosstermion = { optional = true, version = "0.5.0", default-features = false }
-tui = { version = "0.13.0", optional = true, default-features = false }
-tui-react = { version = "0.13", optional = true }
+crosstermion = { optional = true, version = "0.6.0", default-features = false }
+tui = { version = "0.14.0", optional = true, default-features = false }
+tui-react = { version = "0.14", optional = true }
open = { version = "1.2.2", optional = true }
wild = "2.0.4"