aboutsummaryrefslogtreecommitdiff
path: root/helix-view/Cargo.toml
blob: df87fafb8c0df195b117d20ae3e2f5a14fb1161d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[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"]
default = ["term"]

[dependencies]
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 }
crossterm = { version = "0.19", features = ["event-stream"], optional = true }
once_cell = "1.4"
url = "2"

tokio = { version = "1", features = ["full"] }

slotmap = "1"

serde = { version = "1.0", features = ["derive"] }
toml = "0.5"