summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-11-15 10:29:52 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-11-15 10:29:52 +0800
commit2d11a191fbdccd3e16b6542743854151d4ebbc5d (patch)
tree6eba61c03a5ab51abf195c008e59a08ab1ca0d71
parentdaad3817e314b972294730c880536142521dee30 (diff)
update tui-react to tui v0.13tui-react-v0.13.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 11c89f5..ac468ae 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -258,8 +258,8 @@ checksum = "5147a6e732c07ab18f5792f89925b1ffd2de55888e533a3976fcfc5ccae7ba0b"
dependencies = [
"crossterm",
"termion",
- "tui",
- "tui-react 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.12.0",
+ "tui-react 0.12.0",
]
[[package]]
@@ -295,8 +295,8 @@ dependencies = [
"petgraph",
"pretty_assertions",
"structopt",
- "tui",
- "tui-react 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.12.0",
+ "tui-react 0.12.0",
"unicode-segmentation",
"wild",
]
@@ -741,11 +741,13 @@ dependencies = [
]
[[package]]
-name = "tui-react"
-version = "0.12.0"
+name = "tui"
+version = "0.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d4e6c82bb967df89f20b875fa8835fab5d5622c6a5efa574a1f0b6d0aa6e8f6"
dependencies = [
- "log",
- "tui",
+ "bitflags",
+ "cassowary",
"unicode-segmentation",
"unicode-width",
]
@@ -757,7 +759,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7750e2087df1869b0bf5db57dba0d6361a8ba1419962fa169358a279a9fa6eeb"
dependencies = [
"log",
- "tui",
+ "tui 0.12.0",
+ "unicode-segmentation",
+ "unicode-width",
+]
+
+[[package]]
+name = "tui-react"
+version = "0.13.0"
+dependencies = [
+ "log",
+ "tui 0.13.0",
"unicode-segmentation",
"unicode-width",
]
diff --git a/tui-react/Cargo.toml b/tui-react/Cargo.toml
index e4fdcfb..925a949 100644
--- a/tui-react/Cargo.toml
+++ b/tui-react/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tui-react"
-version = "0.12.0"
+version = "0.13.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.12.0", default-features = false }
+tui = { version = "0.13.0", default-features = false }
log = "0.4.6"
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"