2020-09-21 17:24:16 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2022-01-04 17:54:05 +08:00
|
|
|
version = "0.6.0"
|
2020-09-21 17:24:16 +08:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 11:07:41 +08:00
|
|
|
edition = "2021"
|
2021-05-11 00:42:34 +08:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 22:41:03 +08:00
|
|
|
description = "UI abstractions for use in backends"
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
[features]
|
2021-06-25 11:58:15 +08:00
|
|
|
default = []
|
|
|
|
term = ["crossterm"]
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-05-23 13:19:50 +08:00
|
|
|
bitflags = "2.3"
|
2020-09-29 00:00:35 +08:00
|
|
|
anyhow = "1"
|
2022-01-04 17:54:05 +08:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
2022-10-03 22:34:29 +08:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
2022-03-25 17:05:20 +08:00
|
|
|
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
|
|
|
helix-dap = { version = "0.6", path = "../helix-dap" }
|
2023-01-11 10:48:26 +08:00
|
|
|
crossterm = { version = "0.26", optional = true }
|
2022-12-01 16:35:23 +08:00
|
|
|
helix-vcs = { version = "0.6", path = "../helix-vcs" }
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
# Conversion traits
|
2023-01-03 11:07:25 +08:00
|
|
|
once_cell = "1.17"
|
2020-10-22 13:35:07 +08:00
|
|
|
url = "2"
|
2020-10-30 16:00:30 +08:00
|
|
|
|
2023-01-03 11:29:23 +08:00
|
|
|
arc-swap = { version = "1.6.0" }
|
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"
|
2023-01-30 22:49:26 +08:00
|
|
|
toml = "0.7"
|
2021-06-06 20:45:59 +08:00
|
|
|
log = "~0.4"
|
2021-06-15 05:37:17 +08:00
|
|
|
|
2023-01-24 07:25:49 +08:00
|
|
|
which = "4.4"
|
2023-03-03 04:56:55 +08:00
|
|
|
parking_lot = "0.12.1"
|
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]
|
2023-01-10 08:09:17 +08:00
|
|
|
clipboard-win = { version = "4.5", 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"
|
|
|
|
|
2021-06-25 11:58:15 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|