aboutsummaryrefslogtreecommitdiff
path: root/helix-view/Cargo.toml
blob: b2d1a594c325be66ab14c1ad00fb7925f40d6885 (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
30
31
[package]
name = "helix-view"
version = "0.1.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
license = "MPL-2.0"

# 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"
log = "~0.4"