helix/helix-view/Cargo.toml

27 lines
749 B
TOML
Raw Normal View History

[package]
name = "helix-view"
version = "0.1.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
term = ["tui", "crossterm"]
2020-10-01 02:15:42 +03:00
default = ["term"]
[dependencies]
2020-09-28 19:00:35 +03:00
anyhow = "1"
helix-core = { path = "../helix-core" }
helix-lsp = { path = "../helix-lsp"}
# Conversion traits
# tui = { version = "0.12", default-features = false, features = ["crossterm"], optional = true}
tui = { git = "https://github.com/fdehau/tui-rs", default-features = false, features = ["crossterm"], optional = true}
2021-01-06 08:08:23 +03:00
crossterm = { version = "0.19", features = ["event-stream"], optional = true }
2020-09-28 19:00:35 +03:00
once_cell = "1.4"
url = "2"
2020-10-30 11:00:30 +03:00
smol = "1"
futures-util = "0.3"