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