summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-05-03 06:54:17 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-05-03 07:03:02 +0800
commita9ce7578bcbc088c8b18e33de83860e10991bf85 (patch)
tree0ffb90182f99177cf3bef318117d4ca9b50f1fbf
parent27fb5214e8f2c4669faf093a2ca570da17deca37 (diff)
[dua] upgrade to tui 0.15
-rw-r--r--Cargo.lock14
-rw-r--r--Cargo.toml3
-rw-r--r--tui-react/Cargo.toml2
3 files changed, 9 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 532fd83..06ceabb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -205,7 +205,7 @@ dependencies = [
"crossterm",
"termion",
"tui 0.14.0",
- "tui-react 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui-react 0.14.0",
]
[[package]]
@@ -242,7 +242,7 @@ dependencies = [
"petgraph",
"pretty_assertions",
"tui 0.14.0",
- "tui-react 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tui-react 0.14.0",
"unicode-segmentation",
"wild",
]
@@ -687,21 +687,21 @@ 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.15.0",
+ "tui 0.14.0",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "tui-react"
-version = "0.14.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fe492db1ef5abbac0d46d1fe6a53881c77fd53c1be03ee45d366e2a8ef83f4fa"
+version = "0.15.0"
dependencies = [
"log",
- "tui 0.14.0",
+ "tui 0.15.0",
"unicode-segmentation",
"unicode-width",
]
diff --git a/Cargo.toml b/Cargo.toml
index 115533b..f3f5d89 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,6 @@ readme = "README.md"
description = "A tool to conveniently learn about the disk usage of directories, fast!"
license = "MIT"
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md", "!**/*_test/*"]
-resolver = "2"
[features]
default = ["tui-crossplatform"]
@@ -33,7 +32,7 @@ colored = "2.0.0"
unicode-segmentation = { version = "1.3.0", 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 }
+tui-react = { version = "0.14.0", optional = true }
open = { version = "1.2.2", optional = true }
wild = "2.0.4"
diff --git a/tui-react/Cargo.toml b/tui-react/Cargo.toml
index 9ccfc5d..aa55aad 100644
--- a/tui-react/Cargo.toml
+++ b/tui-react/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tui-react"
-version = "0.14.0"
+version = "0.15.0"
authors = ["Sebastian Thiel <sthiel@thoughtworks.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"