2020-09-21 17:24:16 +08:00
|
|
|
[package]
|
|
|
|
name = "helix-view"
|
2021-06-13 21:35:13 +08:00
|
|
|
version = "0.2.0"
|
2020-09-21 17:24:16 +08:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
edition = "2018"
|
2021-05-11 00:42:34 +08:00
|
|
|
license = "MPL-2.0"
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[features]
|
|
|
|
term = ["tui", "crossterm"]
|
2020-10-01 07:15:42 +08:00
|
|
|
default = ["term"]
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-29 00:00:35 +08:00
|
|
|
anyhow = "1"
|
2021-06-18 21:48:31 +08:00
|
|
|
helix-core = { version = "0.2", path = "../helix-core" }
|
|
|
|
helix-lsp = { version = "0.2", path = "../helix-lsp"}
|
2020-09-21 17:24:16 +08:00
|
|
|
|
|
|
|
# Conversion traits
|
2021-05-09 16:52:55 +08:00
|
|
|
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"], optional = true }
|
2021-06-14 15:00:01 +08:00
|
|
|
crossterm = { version = "0.20", features = ["event-stream"], optional = true }
|
2021-06-14 16:46:12 +08:00
|
|
|
once_cell = "1.8"
|
2020-10-22 13:35:07 +08:00
|
|
|
url = "2"
|
2020-10-30 16:00:30 +08:00
|
|
|
|
2021-05-06 12:56:34 +08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-02-03 18:36:54 +08:00
|
|
|
|
|
|
|
slotmap = "1"
|
2021-03-25 15:42:14 +08:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
toml = "0.5"
|
2021-06-06 20:45:59 +08:00
|
|
|
log = "~0.4"
|