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