2020-05-20 13:14:51 +04:00
|
|
|
[package]
|
|
|
|
name = "helix-term"
|
|
|
|
version = "0.1.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"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[[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
|
|
|
|
2020-09-08 09:32:20 +04:00
|
|
|
smol = "1"
|
2020-12-23 12:03:20 +04:00
|
|
|
smol-timeout = "0.6"
|
2020-10-23 09:33:09 +04:00
|
|
|
num_cpus = "1"
|
2020-10-01 07:23:07 +04:00
|
|
|
# tui = { version = "0.12", default-features = false, features = ["crossterm"] }
|
|
|
|
tui = { git = "https://github.com/fdehau/tui-rs", default-features = false, features = ["crossterm"] }
|
2021-01-06 09:08:23 +04:00
|
|
|
crossterm = { version = "0.19", features = ["event-stream"] }
|
2020-10-02 13:16:43 +04:00
|
|
|
clap = { version = "3.0.0-beta.2 ", default-features = false, features = ["std", "cargo"] }
|
2020-10-20 08:58:34 +04:00
|
|
|
|
|
|
|
futures-util = "0.3"
|
2020-10-23 09:33:09 +04:00
|
|
|
|
|
|
|
# Logging
|
|
|
|
fern = "0.6"
|
|
|
|
chrono = "0.4"
|
|
|
|
log = "0.4"
|
2020-12-17 13:08:16 +04:00
|
|
|
|
|
|
|
# File picker
|
|
|
|
fuzzy-matcher = "0.3"
|
|
|
|
ignore = "0.4"
|