2020-09-21 13:24:16 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2022-01-04 13:54:05 +04:00
|
|
|
version = "0.6.0"
|
2020-09-21 13:24:16 +04:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 07:07:41 +04:00
|
|
|
edition = "2021"
|
2021-05-10 20:42:34 +04:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 18:41:03 +04: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 13:24:16 +04:00
|
|
|
|
|
|
|
[features]
|
2021-06-25 07:58:15 +04:00
|
|
|
default = []
|
|
|
|
term = ["crossterm"]
|
2020-09-21 13:24:16 +04:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-17 04:23:59 +04:00
|
|
|
bitflags = "1.3"
|
2020-09-28 20:00:35 +04:00
|
|
|
anyhow = "1"
|
2022-01-04 13:54:05 +04:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
2022-03-25 13:05:20 +04:00
|
|
|
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
|
|
|
helix-dap = { version = "0.6", path = "../helix-dap" }
|
2022-02-07 05:47:57 +04:00
|
|
|
crossterm = { version = "0.23", optional = true }
|
2020-09-21 13:24:16 +04:00
|
|
|
|
|
|
|
# Conversion traits
|
2022-05-24 03:13:58 +04:00
|
|
|
once_cell = "1.12"
|
2020-10-22 09:35:07 +04:00
|
|
|
url = "2"
|
2020-10-30 12:00:30 +04:00
|
|
|
|
2022-03-25 13:05:20 +04:00
|
|
|
arc-swap = { version = "1.5.0" }
|
|
|
|
|
2021-07-17 18:47:08 +04:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
2021-08-16 13:16:06 +04:00
|
|
|
tokio-stream = "0.1"
|
2021-06-19 07:14:40 +04:00
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2021-02-03 14:36:54 +04:00
|
|
|
|
|
|
|
slotmap = "1"
|
2021-03-25 11:42:14 +04:00
|
|
|
|
2021-06-23 10:03:34 +04:00
|
|
|
chardetng = "0.1"
|
|
|
|
|
2021-03-25 11:42:14 +04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-03-22 07:53:44 +04:00
|
|
|
serde_json = "1.0"
|
2021-03-25 11:42:14 +04:00
|
|
|
toml = "0.5"
|
2021-06-06 16:45:59 +04:00
|
|
|
log = "~0.4"
|
2021-06-15 01:37:17 +04:00
|
|
|
|
2021-08-03 03:07:33 +04:00
|
|
|
which = "4.2"
|
2021-06-25 07:58:15 +04:00
|
|
|
|
2021-06-30 12:11:56 +04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-01-25 04:42:14 +04:00
|
|
|
clipboard-win = { version = "4.4", features = ["std"] }
|
2021-06-30 12:11:56 +04:00
|
|
|
|
2021-06-25 07:58:15 +04:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|