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