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