summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-09-12 09:51:51 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-09-12 09:51:51 +0800
commited0bfc750a59d45fad04cb3a39b73e6f70512cee (patch)
treef7074fc70543b878cf559bb7d5990f6ee6d1d2df
parent50fd2873257a17baa570d5f9826bcb0c83294059 (diff)
Make sure the correct version of `crosstermion` is used
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml2
2 files changed, 6 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 83742eb..1d92b50 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -213,7 +213,9 @@ dependencies = [
[[package]]
name = "crosstermion"
-version = "0.10.0"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "99aabd9b02c2d5f72697f30ffb46f5a9ff4bd240d826049892cf62c31daeed04"
dependencies = [
"crossterm",
"termion",
@@ -780,6 +782,8 @@ dependencies = [
[[package]]
name = "tui-react"
version = "0.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "542c37309aaf01ddaea86891f7845a8b0124194c6ccae6dbae7d223752648f4d"
dependencies = [
"log",
"tui",
diff --git a/Cargo.toml b/Cargo.toml
index 6ce8dda..593427f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -32,7 +32,7 @@ trash = { version = "2.1.5", optional = true, default-features = false, features
# 'tui' related
unicode-segmentation = { version = "1.3.0", optional = true }
-crosstermion = { optional = true, version = "0.10.0", default-features = false }
+crosstermion = { version = "0.10.1", default-features = false, optional = true }
tui = { version = "0.19.0", optional = true, default-features = false }
tui-react = { version = "0.19.0", optional = true }
open = { version = "3.0", optional = true }