summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 14:43:16 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 14:43:16 +0800
commitd57cdca7e57c40e51fdaec760e92b111dc69ad0f (patch)
treeda6478ff456366ba85258faef5ab4959ac1ea2a9
parent676c6a99be6a604fa0508a8335e3a2f9dad206e7 (diff)
Don't implicitly pull in termion! Kills windows build reliably…
-rw-r--r--Cargo.toml2
-rw-r--r--Cargo.toml.windows-suffix3
2 files changed, 1 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9767861..795e6c5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -32,7 +32,7 @@ colored = "1.9.3"
# 'tui' related
unicode-segmentation = { version = "1.3.0", optional = true }
crosstermion = { optional = true, version = "0.1.3", default-features = false }
-tui = { version = "0.9.1", optional = true }
+tui = { version = "0.9.1", optional = true, default-features = false }
tui-react = { version = "0.4", optional = true }
open = { version = "1.2.2", optional = true }
diff --git a/Cargo.toml.windows-suffix b/Cargo.toml.windows-suffix
deleted file mode 100644
index e3c7634..0000000
--- a/Cargo.toml.windows-suffix
+++ /dev/null
@@ -1,3 +0,0 @@
-
-[patch.crates-io]
-termion = { git = "https://gitlab.redox-os.org/Jezza/termion.git", branch = "windows-support" }