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