aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-05-09 08:52:55 +0000
committerBlaž Hrastnik2021-05-09 08:52:55 +0000
commit35606a3daa7ee273845a12f3e03728e0ae23928e (patch)
tree643684eaff6627dbebc4156d33fdb541bf87bbd9 /Cargo.lock
parent6c705f09e88a4b63c4ed854bc9e956b0539ca8af (diff)
Inline tui as helix-tui fork.
We only rely on some of the rendering primitives and implement our Cursive-style compositor on top.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock29
1 files changed, 14 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 228f3873..d1bb9374 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -330,6 +330,7 @@ dependencies = [
"fuzzy-matcher",
"helix-core",
"helix-lsp",
+ "helix-tui",
"helix-view",
"ignore",
"log",
@@ -340,7 +341,18 @@ dependencies = [
"serde_json",
"tokio",
"toml",
- "tui",
+]
+
+[[package]]
+name = "helix-tui"
+version = "0.1.0"
+dependencies = [
+ "bitflags",
+ "cassowary",
+ "crossterm",
+ "serde",
+ "unicode-segmentation",
+ "unicode-width",
]
[[package]]
@@ -351,12 +363,12 @@ dependencies = [
"crossterm",
"helix-core",
"helix-lsp",
+ "helix-tui",
"once_cell",
"serde",
"slotmap",
"tokio",
"toml",
- "tui",
"url",
]
@@ -956,19 +968,6 @@ dependencies = [
]
[[package]]
-name = "tui"
-version = "0.15.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "861d8f3ad314ede6219bcb2ab844054b1de279ee37a9bc38e3d606f9d3fb2a71"
-dependencies = [
- "bitflags",
- "cassowary",
- "crossterm",
- "unicode-segmentation",
- "unicode-width",
-]
-
-[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"