helix-mods/helix-view/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "helix-view"
2021-06-13 15:35:13 +02:00
version = "0.2.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
2021-05-10 18:42:34 +02:00
license = "MPL-2.0"
2021-06-18 16:41:03 +02:00
description = "UI abstractions for use in backends"
categories = ["editor"]
repository = "https://github.com/helix-editor/helix"
homepage = "https://helix-editor.com"
# 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-28 18:00:35 +02:00
anyhow = "1"
helix-core = { version = "0.2", path = "../helix-core" }
helix-lsp = { version = "0.2", path = "../helix-lsp"}
# Conversion traits
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"], optional = true }
crossterm = { version = "0.20", features = ["event-stream"], optional = true }
once_cell = "1.8"
url = "2"
2020-10-30 09:00:30 +01:00
2021-05-06 06:56:34 +02:00
tokio = { version = "1", features = ["full"] }
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
slotmap = "1"
2021-03-25 08:42:14 +01:00
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
log = "~0.4"
which = "4.1"