2020-05-20 18:14:51 +09:00
|
|
|
[package]
|
|
|
|
name = "helix-term"
|
2021-10-28 16:39:17 +09:00
|
|
|
version = "0.5.0"
|
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>"]
|
2021-10-22 12:07:41 +09:00
|
|
|
edition = "2021"
|
2021-05-11 01:42:34 +09:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 10:41:03 -04:00
|
|
|
categories = ["editor", "command-line-utilities"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2021-06-18 09:53:29 -04:00
|
|
|
include = ["src/**/*", "README.md"]
|
2020-05-20 18:14:51 +09:00
|
|
|
|
2021-06-13 08:03:42 +03:00
|
|
|
[package.metadata.nix]
|
|
|
|
build = true
|
|
|
|
app = true
|
2020-05-20 18:14:51 +09:00
|
|
|
|
2021-06-03 15:46:56 -05:00
|
|
|
[features]
|
|
|
|
|
2020-05-20 18:14:51 +09:00
|
|
|
[[bin]]
|
|
|
|
name = "hx"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-28 16:39:17 +09:00
|
|
|
helix-core = { version = "0.5", path = "../helix-core" }
|
|
|
|
helix-view = { version = "0.5", path = "../helix-view" }
|
|
|
|
helix-lsp = { version = "0.5", path = "../helix-lsp" }
|
2021-11-07 00:28:19 +09:00
|
|
|
helix-dap = { version = "0.5", path = "../helix-dap" }
|
2020-09-09 14:41:12 +09:00
|
|
|
|
2020-09-08 14:32:20 +09:00
|
|
|
anyhow = "1"
|
2021-06-14 17:46:12 +09:00
|
|
|
once_cell = "1.8"
|
2020-05-28 17:47:35 +09:00
|
|
|
|
2021-07-17 22:47:08 +08:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
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-10-28 00:21:30 +09:00
|
|
|
crossterm = { version = "0.22", features = ["event-stream"] }
|
2021-07-17 22:47:08 +08:00
|
|
|
signal-hook = "0.3"
|
2021-08-21 17:21:35 +03:00
|
|
|
tokio-stream = "0.1"
|
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-03-05 16:07:46 +09:00
|
|
|
# markdown doc rendering
|
|
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
2021-11-04 12:24:52 +09:00
|
|
|
# file type detection
|
|
|
|
content_inspector = "0.2.4"
|
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"] }
|
2021-07-17 22:47:08 +08:00
|
|
|
|
2021-09-22 00:03:12 +08:00
|
|
|
# ripgrep for global search
|
|
|
|
grep-regex = "0.1.9"
|
|
|
|
grep-searcher = "0.1.8"
|
|
|
|
|
2021-07-17 22:47:08 +08:00
|
|
|
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
|
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|