Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/Cargo.toml')
| -rw-r--r-- | helix-view/Cargo.toml | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index 24dd0f2a..2e689341 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -12,8 +12,7 @@ homepage.workspace = true [features] default = [] -term = ["termina", "crossterm"] -unicode-lines = [] +term = ["crossterm"] [dependencies] helix-stdx = { path = "../helix-stdx" } @@ -24,43 +23,38 @@ helix-lsp = { path = "../helix-lsp" } helix-dap = { path = "../helix-dap" } helix-vcs = { path = "../helix-vcs" } -bitflags.workspace = true +bitflags = "2.4" anyhow = "1" -termina = { workspace = true, optional = true } - -tempfile.workspace = true +crossterm = { version = "0.27", optional = true } # Conversion traits -once_cell = "1.21" -url = "2.5.4" +once_cell = "1.19" +url = "2.5.0" -arc-swap = { version = "1.7.1" } +arc-swap = { version = "1.6.0" } 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.7" log = "~0.4" -parking_lot.workspace = true -thiserror.workspace = true +parking_lot = "0.12.1" -kstring = "2.0" [target.'cfg(windows)'.dependencies] -clipboard-win = { version = "5.4", features = ["std"] } -crossterm = { version = "0.28", optional = true } +clipboard-win = { version = "5.0", features = ["std"] } [target.'cfg(unix)'.dependencies] libc = "0.2" -rustix = { version = "1.1", features = ["fs"] } +rustix = { version = "0.38", features = ["fs"] } [dev-dependencies] helix-tui = { path = "../helix-tui" } |