2020-09-21 18:24:16 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2022-01-04 18:54:05 +09:00
|
|
|
version = "0.6.0"
|
2020-09-21 18:24:16 +09:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 12:07:41 +09:00
|
|
|
edition = "2021"
|
2021-05-11 01:42:34 +09:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 10: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 18:24:16 +09:00
|
|
|
|
|
|
|
[features]
|
2021-06-24 20:58:15 -07:00
|
|
|
default = []
|
|
|
|
term = ["crossterm"]
|
2020-09-21 18:24:16 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-17 09:23:59 +09:00
|
|
|
bitflags = "1.3"
|
2020-09-29 01:00:35 +09:00
|
|
|
anyhow = "1"
|
2022-01-04 18:54:05 +09:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
2022-10-03 16:34:29 +02:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
2022-03-25 05:05:20 -04:00
|
|
|
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
|
|
|
helix-dap = { version = "0.6", path = "../helix-dap" }
|
2022-08-22 01:29:30 +00:00
|
|
|
crossterm = { version = "0.25", optional = true }
|
2020-09-21 18:24:16 +09:00
|
|
|
|
|
|
|
# Conversion traits
|
2022-09-26 18:19:50 -05:00
|
|
|
once_cell = "1.15"
|
2020-10-22 14:35:07 +09:00
|
|
|
url = "2"
|
2020-10-30 17:00:30 +09:00
|
|
|
|
2022-08-02 10:06:22 +09:00
|
|
|
arc-swap = { version = "1.5.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"
|
2021-03-25 16:42:14 +09:00
|
|
|
toml = "0.5"
|
2021-06-06 14:45:59 +02:00
|
|
|
log = "~0.4"
|
2021-06-14 17:37:17 -04:00
|
|
|
|
2021-08-02 23:07:33 +00:00
|
|
|
which = "4.2"
|
2021-06-24 20:58:15 -07:00
|
|
|
|
2021-06-30 04:11:56 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-01-25 09:42:14 +09:00
|
|
|
clipboard-win = { version = "4.4", features = ["std"] }
|
2021-06-30 04:11:56 -04:00
|
|
|
|
2021-06-24 20:58:15 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|