2020-09-21 18:24:16 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2021-10-28 16:39:17 +09:00
|
|
|
version = "0.5.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"
|
2021-10-28 16:39:17 +09:00
|
|
|
helix-core = { version = "0.5", path = "../helix-core" }
|
|
|
|
helix-lsp = { version = "0.5", path = "../helix-lsp"}
|
2021-10-19 23:57:22 +09:00
|
|
|
crossterm = { version = "0.22", optional = true }
|
2020-09-21 18:24:16 +09:00
|
|
|
|
|
|
|
# Conversion traits
|
2021-12-21 08:48:53 +09:00
|
|
|
once_cell = "1.9"
|
2020-10-22 14:35:07 +09:00
|
|
|
url = "2"
|
2020-10-30 17:00:30 +09: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-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
|
|
|
encoding_rs = "0.8"
|
|
|
|
chardetng = "0.1"
|
|
|
|
|
2021-03-25 16:42:14 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
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]
|
|
|
|
clipboard-win = { version = "4.2", features = ["std"] }
|
|
|
|
|
2021-06-24 20:58:15 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|