helix/helix-view/Cargo.toml

31 lines
772 B
TOML
Raw Permalink Normal View History

[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"
# 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"]
[dependencies]
2020-09-29 01:00:35 +09:00
anyhow = "1"
helix-core = { path = "../helix-core" }
helix-lsp = { path = "../helix-lsp"}
# Conversion traits
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"
url = "2"
2020-10-30 17:00:30 +09:00
2021-05-06 13:56:34 +09:00
tokio = { version = "1", features = ["full"] }
slotmap = "1"
2021-03-25 16:42:14 +09:00
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"