Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/Cargo.toml')
-rw-r--r--helix-view/Cargo.toml11
1 files changed, 4 insertions, 7 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml
index 24dd0f2a..bcee1a0a 100644
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -12,7 +12,7 @@ homepage.workspace = true
[features]
default = []
-term = ["termina", "crossterm"]
+term = ["crossterm"]
unicode-lines = []
[dependencies]
@@ -26,7 +26,7 @@ helix-vcs = { path = "../helix-vcs" }
bitflags.workspace = true
anyhow = "1"
-termina = { workspace = true, optional = true }
+crossterm = { version = "0.28", optional = true }
tempfile.workspace = true
@@ -46,21 +46,18 @@ chardetng = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
-toml.workspace = true
+toml = "0.8"
log = "~0.4"
parking_lot.workspace = true
thiserror.workspace = true
-kstring = "2.0"
-
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "5.4", features = ["std"] }
-crossterm = { version = "0.28", optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
-rustix = { version = "1.1", features = ["fs"] }
+rustix = { version = "1.0", features = ["fs"] }
[dev-dependencies]
helix-tui = { path = "../helix-tui" }