helix/helix-view/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "helix-view"
2022-01-04 12:54:05 +03:00
version = "0.6.0"
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"
[features]
default = []
term = ["crossterm"]
[dependencies]
bitflags = "1.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" }
helix-lsp = { version = "0.6", path = "../helix-lsp" }
helix-dap = { version = "0.6", path = "../helix-dap" }
crossterm = { version = "0.23", optional = true }
# Conversion traits
once_cell = "1.10"
url = "2"
2020-10-30 11:00:30 +03:00
arc-swap = { version = "1.5.0" }
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"] }
tokio-stream = "0.1"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
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"] }
toml = "0.5"
log = "~0.4"
which = "4.2"
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "4.4", features = ["std"] }
[dev-dependencies]
helix-tui = { path = "../helix-tui" }