summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-09-28 20:01:05 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-09-28 20:01:05 +0800
commit872bbbc0d630ce5ccf17a6847c6b12846f745997 (patch)
tree8cb6a2130fe92854456c9b97cc9aad8237b0f535
parent3e1b8c202638b5067f794f8d3687834eb3d4b450 (diff)
upgrade to latest version of tui
-rw-r--r--Cargo.lock38
-rw-r--r--Cargo.toml6
-rw-r--r--Makefile2
3 files changed, 17 insertions, 29 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fd73511..83ea983 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -199,14 +199,14 @@ dependencies = [
[[package]]
name = "crosstermion"
-version = "0.3.2"
+version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "893b2cce6bdffad38cace7e10ada7661a4bcf5f7440bc3bafc403eccdb710eff"
+checksum = "5147a6e732c07ab18f5792f89925b1ffd2de55888e533a3976fcfc5ccae7ba0b"
dependencies = [
"crossterm",
"termion",
- "tui 0.10.0",
- "tui-react 0.10.1",
+ "tui",
+ "tui-react 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -242,8 +242,8 @@ dependencies = [
"petgraph",
"pretty_assertions",
"structopt",
- "tui 0.10.0",
- "tui-react 0.10.1",
+ "tui",
+ "tui-react 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-segmentation",
"wild",
]
@@ -677,38 +677,24 @@ dependencies = [
[[package]]
name = "tui"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a977b0bb2e2033a6fef950f218f13622c3c34e59754b704ce3492dedab1dfe95"
-dependencies = [
- "bitflags",
- "cassowary",
- "crossterm",
- "termion",
- "unicode-segmentation",
- "unicode-width",
-]
-
-[[package]]
-name = "tui"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2eaeee894a1e9b90f80aa466fe59154fdb471980b5e104d8836fcea309ae17e"
dependencies = [
"bitflags",
"cassowary",
+ "crossterm",
+ "termion",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "tui-react"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a97bea172550957047351f406690772b6fa6244c20b95cbb230228bbb7477c61"
+version = "0.12.0"
dependencies = [
"log",
- "tui 0.10.0",
+ "tui",
"unicode-segmentation",
"unicode-width",
]
@@ -716,9 +702,11 @@ dependencies = [
[[package]]
name = "tui-react"
version = "0.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7750e2087df1869b0bf5db57dba0d6361a8ba1419962fa169358a279a9fa6eeb"
dependencies = [
"log",
- "tui 0.12.0",
+ "tui",
"unicode-segmentation",
"unicode-width",
]
diff --git a/Cargo.toml b/Cargo.toml
index 547d587..4b5df67 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.3.0", default-features = false }
-tui = { version = "0.10.0", optional = true, default-features = false }
-tui-react = { version = "0.10", optional = true }
+crosstermion = { optional = true, version = "0.4.0", default-features = false }
+tui = { version = "0.12.0", optional = true, default-features = false }
+tui-react = { version = "0.12", optional = true }
open = { version = "1.2.2", optional = true }
wild = "2.0.4"
diff --git a/Makefile b/Makefile
index eda6156..2172c42 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ benchmark: target/release/dua ## see how fast things are, powered by hyperfine
tests: check unit-tests journey-tests ## run all tests
-check:## run all unit tests
+check:## run cargo-check with various features
cargo check --all
cargo check --all-features
cargo check --no-default-features