helix-mods/helix-term/Cargo.toml

54 lines
1.3 KiB
TOML
Raw Normal View History

2020-05-20 11:14:51 +02:00
[package]
name = "helix-term"
2021-06-13 15:35:13 +02:00
version = "0.2.0"
2020-10-02 11:16:43 +02:00
description = "A post-modern text editor."
2020-05-20 11:14:51 +02:00
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
edition = "2018"
2021-05-10 18:42:34 +02:00
license = "MPL-2.0"
include = ["src/**/*", "README.md"]
2020-05-20 11:14:51 +02:00
[package.metadata.nix]
build = true
app = true
2020-05-20 11:14:51 +02:00
[features]
embed_runtime = ["helix-core/embed_runtime"]
2020-05-20 11:14:51 +02:00
[[bin]]
name = "hx"
path = "src/main.rs"
[dependencies]
helix-core = { version = "0.2", path = "../helix-core" }
helix-view = { version = "0.2", path = "../helix-view", features = ["term"]}
helix-lsp = { version = "0.2", path = "../helix-lsp"}
anyhow = "1"
once_cell = "1.8"
2021-05-06 06:56:34 +02:00
tokio = { version = "1", features = ["full"] }
num_cpus = "1"
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"] }
crossterm = { version = "0.20", features = ["event-stream"] }
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
# Logging
fern = "0.6"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
log = "0.4"
# File picker
fuzzy-matcher = "0.3"
ignore = "0.4"
# shellexpand = "2.1"
dirs-next = "2.0"
2021-03-05 08:07:46 +01:00
# markdown doc rendering
pulldown-cmark = { version = "0.8", default-features = false }
# config
toml = "0.5"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }