summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-01-04 09:40:22 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-01-04 09:40:22 +0800
commitd32ab34e2b8521ddbbbaacd08d48b983cb792432 (patch)
tree6c320241c136e706e6f68f52f923359a4d21dd4a
parent523a0c6f44f767115da631b85e479d5cedd75674 (diff)
bump tui version to 0.14tui-react-v0.14.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 61ebb08..b6c29f9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -217,8 +217,8 @@ checksum = "4e8d2d94a8a9afe9773520e636e906dfb4a7dedb2f0f2eb4ad3080dca39892dc"
dependencies = [
"crossterm",
"termion",
- "tui",
- "tui-react 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.13.0",
+ "tui-react 0.13.0",
]
[[package]]
@@ -254,8 +254,8 @@ dependencies = [
"open",
"petgraph",
"pretty_assertions",
- "tui",
- "tui-react 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui 0.13.0",
+ "tui-react 0.13.0",
"unicode-segmentation",
"wild",
]
@@ -694,11 +694,13 @@ dependencies = [
]
[[package]]
-name = "tui-react"
-version = "0.13.0"
+name = "tui"
+version = "0.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ced152a8e9295a5b168adc254074525c17ac4a83c90b2716274cc38118bddc9"
dependencies = [
- "log",
- "tui",
+ "bitflags",
+ "cassowary",
"unicode-segmentation",
"unicode-width",
]
@@ -710,7 +712,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3ae8540a35c71f98407398eae06d55bab6373de612a3f147540293d4a8f10ef"
dependencies = [
"log",
- "tui",
+ "tui 0.13.0",
+ "unicode-segmentation",
+ "unicode-width",
+]
+
+[[package]]
+name = "tui-react"
+version = "0.14.0"
+dependencies = [
+ "log",
+ "tui 0.14.0",
"unicode-segmentation",
"unicode-width",
]
diff --git a/tui-react/Cargo.toml b/tui-react/Cargo.toml
index 925a949..b012471 100644
--- a/tui-react/Cargo.toml
+++ b/tui-react/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tui-react"
-version = "0.13.0"
+version = "0.14.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.13.0", default-features = false }
+tui = { version = "0.14.0", default-features = false }
log = "0.4.6"
unicode-segmentation = "1.6.0"
unicode-width = "0.1.7"