helix-mods/helix-view/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "helix-view"
2021-08-14 06:31:23 +02:00
version = "0.4.1"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
2021-10-22 05:07:41 +02:00
edition = "2021"
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"
[features]
default = []
term = ["crossterm"]
[dependencies]
bitflags = "1.3"
2020-09-28 18:00:35 +02:00
anyhow = "1"
2021-08-12 18:28:11 +02:00
helix-core = { version = "0.4", path = "../helix-core" }
helix-lsp = { version = "0.4", path = "../helix-lsp"}
crossterm = { version = "0.22", optional = true }
# Conversion traits
once_cell = "1.8"
url = "2"
2020-10-30 09:00:30 +01:00
2021-07-17 16:47:08 +02:00
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
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"
log = "~0.4"
which = "4.2"
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "4.2", features = ["std"] }
[dev-dependencies]
helix-tui = { path = "../helix-tui" }