2020-09-21 11:24:16 +02:00
|
|
|
[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 01:15:42 +02:00
|
|
|
default = ["term"]
|
2020-09-21 11:24:16 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-28 18:00:35 +02:00
|
|
|
anyhow = "1"
|
2020-09-21 11:24:16 +02:00
|
|
|
helix-core = { path = "../helix-core" }
|
|
|
|
|
|
|
|
# Conversion traits
|
2020-10-01 05:23:07 +02:00
|
|
|
# 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}
|
|
|
|
crossterm = { version = "0.18", features = ["event-stream"], optional = true}
|
2020-09-28 18:00:35 +02:00
|
|
|
once_cell = "1.4"
|
2020-10-22 07:35:07 +02:00
|
|
|
url = "2"
|