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