2020-09-21 11:24:16 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2021-06-27 06:27:21 +02:00
|
|
|
version = "0.3.0"
|
2020-09-21 11:24:16 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
2021-05-10 18:42:34 +02:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 16:41:03 +02: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 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]
|
2021-06-25 05:58:15 +02:00
|
|
|
bitflags = "1.0"
|
2020-09-28 18:00:35 +02:00
|
|
|
anyhow = "1"
|
2021-06-27 06:27:21 +02:00
|
|
|
helix-core = { version = "0.3", path = "../helix-core" }
|
|
|
|
helix-lsp = { version = "0.3", path = "../helix-lsp"}
|
2021-06-25 05:58:15 +02:00
|
|
|
crossterm = { version = "0.20", optional = true }
|
2020-09-21 11:24:16 +02:00
|
|
|
|
|
|
|
# Conversion traits
|
2021-06-14 10:46:12 +02:00
|
|
|
once_cell = "1.8"
|
2020-10-22 07:35:07 +02:00
|
|
|
url = "2"
|
2020-10-30 09:00:30 +01:00
|
|
|
|
2021-05-06 06:56:34 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
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
|
|
|
encoding_rs = "0.8"
|
|
|
|
chardetng = "0.1"
|
|
|
|
|
2021-03-25 08:42:14 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
toml = "0.5"
|
2021-06-06 14:45:59 +02:00
|
|
|
log = "~0.4"
|
2021-06-14 23:37:17 +02:00
|
|
|
|
|
|
|
which = "4.1"
|
2021-06-25 05:58:15 +02:00
|
|
|
|
2021-06-30 10:11:56 +02:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
clipboard-win = { version = "4.2", features = ["std"] }
|
|
|
|
|
2021-06-25 05:58:15 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
helix-tui = { path = "../helix-tui" }
|