2020-09-21 18:24:16 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
2021-05-11 01:42:34 +09:00
|
|
|
license = "MPL-2.0"
|
2020-09-21 18:24:16 +09:00
|
|
|
|
|
|
|
# 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 18:24:16 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-29 01:00:35 +09:00
|
|
|
anyhow = "1"
|
2020-09-21 18:24:16 +09:00
|
|
|
helix-core = { path = "../helix-core" }
|
2020-12-25 17:20:09 +09:00
|
|
|
helix-lsp = { path = "../helix-lsp"}
|
2020-09-21 18:24:16 +09:00
|
|
|
|
|
|
|
# Conversion traits
|
2021-05-09 17:52:55 +09:00
|
|
|
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"], optional = true }
|
2021-01-06 14:08:23 +09:00
|
|
|
crossterm = { version = "0.19", features = ["event-stream"], optional = true }
|
2020-09-29 01:00:35 +09:00
|
|
|
once_cell = "1.4"
|
2020-10-22 14:35:07 +09:00
|
|
|
url = "2"
|
2020-10-30 17:00:30 +09:00
|
|
|
|
2021-05-06 13:56:34 +09:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-02-03 19:36:54 +09:00
|
|
|
|
|
|
|
slotmap = "1"
|
2021-03-25 16:42:14 +09:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
toml = "0.5"
|