summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-09-28 19:52:34 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-09-28 19:52:34 +0800
commit3e1b8c202638b5067f794f8d3687834eb3d4b450 (patch)
tree86e82d6f9b07da43bfb50035cd1d2b7727767158
parent9a877e2401b1d5f5751047867a7067fd7fdc473c (diff)
update to tui 0.12tui-react-v0.12.0
-rw-r--r--Cargo.lock30
-rw-r--r--tui-react/Cargo.toml4
2 files changed, 23 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2ffbf36..fd73511 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -205,8 +205,8 @@ checksum = "893b2cce6bdffad38cace7e10ada7661a4bcf5f7440bc3bafc403eccdb710eff"
dependencies = [
"crossterm",
"termion",
- "tui",
- "tui-react 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.10.0",
+ "tui-react 0.10.1",
]
[[package]]
@@ -242,8 +242,8 @@ dependencies = [
"petgraph",
"pretty_assertions",
"structopt",
- "tui",
- "tui-react 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.10.0",
+ "tui-react 0.10.1",
"unicode-segmentation",
"wild",
]
@@ -690,11 +690,13 @@ dependencies = [
]
[[package]]
-name = "tui-react"
-version = "0.10.1"
+name = "tui"
+version = "0.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c2eaeee894a1e9b90f80aa466fe59154fdb471980b5e104d8836fcea309ae17e"
dependencies = [
- "log",
- "tui",
+ "bitflags",
+ "cassowary",
"unicode-segmentation",
"unicode-width",
]
@@ -706,7 +708,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a97bea172550957047351f406690772b6fa6244c20b95cbb230228bbb7477c61"
dependencies = [
"log",
- "tui",
+ "tui 0.10.0",
+ "unicode-segmentation",
+ "unicode-width",
+]
+
+[[package]]
+name = "tui-react"
+version = "0.12.0"
+dependencies = [
+ "log",
+ "tui 0.12.0",
"unicode-segmentation",
"unicode-width",
]
diff --git a/tui-react/Cargo.toml b/tui-react/Cargo.toml
index 20a0691..e4fdcfb 100644
--- a/tui-react/Cargo.toml
+++ b/tui-react/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tui-react"
-version = "0.10.1"
+version = "0.12.0"
authors = ["Sebastian Thiel <sthiel@thoughtworks.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"
@@ -9,7 +9,7 @@ readme = "README.md"
license = "MIT"
[dependencies]
-tui = { version = "0.10.0", default-features = false }
+tui = { version = "0.12.0", default-features = false }
log = "0.4.6"
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"