2020-09-21 17:24:16 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2023-12-05 09:54:18 +08:00
|
|
|
description = "UI abstractions for use in backends"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2023-11-27 20:24:57 +08:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2023-12-05 09:54:18 +08:00
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
[features]
|
2021-06-25 11:58:15 +08:00
|
|
|
default = []
|
|
|
|
term = ["crossterm"]
|
2024-05-08 00:14:02 +08:00
|
|
|
unicode-lines = []
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-17 02:59:48 +08:00
|
|
|
helix-stdx = { path = "../helix-stdx" }
|
2023-12-05 09:54:18 +08:00
|
|
|
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" }
|
|
|
|
|
2024-03-19 14:47:05 +08:00
|
|
|
bitflags = "2.5"
|
2020-09-29 00:00:35 +08:00
|
|
|
anyhow = "1"
|
2023-08-22 07:56:16 +08:00
|
|
|
crossterm = { version = "0.27", optional = true }
|
2020-09-21 17:24:16 +08:00
|
|
|
|
2024-04-01 06:43:09 +08:00
|
|
|
tempfile = "3.9"
|
|
|
|
|
2020-09-21 17:24:16 +08:00
|
|
|
# Conversion traits
|
2023-12-12 21:46:11 +08:00
|
|
|
once_cell = "1.19"
|
2024-06-12 00:08:50 +08:00
|
|
|
url = "2.5.1"
|
2020-10-30 16:00:30 +08:00
|
|
|
|
2024-03-26 11:55:58 +08:00
|
|
|
arc-swap = { version = "1.7.1" }
|
2022-03-25 17:05:20 +08:00
|
|
|
|
2021-07-17 22:47:08 +08:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
2021-08-16 17:16:06 +08:00
|
|
|
tokio-stream = "0.1"
|
2021-06-19 11:14:40 +08:00
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2021-02-03 18:36:54 +08:00
|
|
|
|
|
|
|
slotmap = "1"
|
2021-03-25 15:42:14 +08:00
|
|
|
|
2021-06-23 14:03:34 +08:00
|
|
|
chardetng = "0.1"
|
|
|
|
|
2021-03-25 15:42:14 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-03-22 11:53:44 +08:00
|
|
|
serde_json = "1.0"
|
2024-02-13 00:48:45 +08:00
|
|
|
toml = "0.8"
|
2021-06-06 20:45:59 +08:00
|
|
|
log = "~0.4"
|
2021-06-15 05:37:17 +08:00
|
|
|
|
2024-06-03 16:08:51 +08:00
|
|
|
parking_lot = "0.12.3"
|
2021-06-25 11:58:15 +08:00
|
|
|
|
2022-12-01 16:35:23 +08:00
|
|
|
|
2021-06-30 16:11:56 +08:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-03-19 13:08:36 +08:00
|
|
|
clipboard-win = { version = "5.3", features = ["std"] }
|
2021-06-30 16:11:56 +08:00
|
|
|
|
2023-01-16 15:13:48 +08:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2"
|
2023-08-08 20:51:34 +08:00
|
|
|
rustix = { version = "0.38", features = ["fs"] }
|
2023-01-16 15:13:48 +08:00
|
|
|
|
2021-06-25 11:58:15 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|