Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/Cargo.toml')
-rw-r--r--helix-view/Cargo.toml58
1 files changed, 22 insertions, 36 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml
index 24dd0f2a..13d5da0e 100644
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -1,66 +1,52 @@
[package]
name = "helix-view"
+version = "0.6.0"
+authors = ["Blaž Hrastnik <[email protected]>"]
+edition = "2021"
+license = "MPL-2.0"
description = "UI abstractions for use in backends"
-version.workspace = true
-authors.workspace = true
-edition.workspace = true
-license.workspace = true
-rust-version.workspace = true
-categories.workspace = true
-repository.workspace = true
-homepage.workspace = true
+categories = ["editor"]
+repository = "https://github.com/helix-editor/helix"
+homepage = "https://helix-editor.com"
[features]
default = []
-term = ["termina", "crossterm"]
-unicode-lines = []
+term = ["crossterm"]
[dependencies]
-helix-stdx = { path = "../helix-stdx" }
-helix-core = { path = "../helix-core" }
-helix-event = { path = "../helix-event" }
-helix-loader = { path = "../helix-loader" }
-helix-lsp = { path = "../helix-lsp" }
-helix-dap = { path = "../helix-dap" }
-helix-vcs = { path = "../helix-vcs" }
-
-bitflags.workspace = true
+bitflags = "1.3"
anyhow = "1"
-termina = { workspace = true, optional = true }
-
-tempfile.workspace = true
+helix-core = { version = "0.6", path = "../helix-core" }
+helix-loader = { version = "0.6", path = "../helix-loader" }
+helix-lsp = { version = "0.6", path = "../helix-lsp" }
+helix-dap = { version = "0.6", path = "../helix-dap" }
+crossterm = { version = "0.25", optional = true }
+helix-vcs = { version = "0.6", path = "../helix-vcs" }
# Conversion traits
-once_cell = "1.21"
-url = "2.5.4"
+once_cell = "1.16"
+url = "2"
-arc-swap = { version = "1.7.1" }
+arc-swap = { version = "1.5.1" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
tokio-stream = "0.1"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
-slotmap.workspace = true
+slotmap = "1"
chardetng = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
-toml.workspace = true
+toml = "0.5"
log = "~0.4"
-parking_lot.workspace = true
-thiserror.workspace = true
+which = "4.2"
-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"] }
+clipboard-win = { version = "4.4", features = ["std"] }
[dev-dependencies]
helix-tui = { path = "../helix-tui" }