2020-05-20 11:14:51 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-term"
|
2022-01-04 10:54:05 +01:00
|
|
|
version = "0.6.0"
|
2020-10-02 11:16:43 +02:00
|
|
|
description = "A post-modern text editor."
|
2020-05-20 11:14:51 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2021-10-22 05:07:41 +02:00
|
|
|
edition = "2021"
|
2021-05-10 18:42:34 +02:00
|
|
|
license = "MPL-2.0"
|
2021-06-18 16:41:03 +02:00
|
|
|
categories = ["editor", "command-line-utilities"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2021-06-18 15:53:29 +02:00
|
|
|
include = ["src/**/*", "README.md"]
|
2021-12-10 03:04:31 +01:00
|
|
|
default-run = "hx"
|
2020-05-20 11:14:51 +02:00
|
|
|
|
2021-06-13 07:03:42 +02:00
|
|
|
[package.metadata.nix]
|
|
|
|
build = true
|
|
|
|
app = true
|
2020-05-20 11:14:51 +02:00
|
|
|
|
2021-06-03 22:46:56 +02:00
|
|
|
[features]
|
|
|
|
|
2020-05-20 11:14:51 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "hx"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-04 10:54:05 +01:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
|
|
|
helix-view = { version = "0.6", path = "../helix-view" }
|
|
|
|
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
2020-09-09 07:41:12 +02:00
|
|
|
|
2020-09-08 07:32:20 +02:00
|
|
|
anyhow = "1"
|
2021-12-21 00:48:53 +01:00
|
|
|
once_cell = "1.9"
|
2020-05-28 10:47:35 +02:00
|
|
|
|
2021-07-17 16:47:08 +02:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
2020-10-23 07:33:09 +02:00
|
|
|
num_cpus = "1"
|
2021-10-27 17:21:30 +02:00
|
|
|
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"] }
|
|
|
|
crossterm = { version = "0.22", features = ["event-stream"] }
|
|
|
|
signal-hook = "0.3"
|
|
|
|
|
2021-05-08 04:51:18 +02:00
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2020-10-23 07:33:09 +02:00
|
|
|
|
|
|
|
# Logging
|
|
|
|
fern = "0.6"
|
2021-02-22 06:42:12 +01:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
2020-10-23 07:33:09 +02:00
|
|
|
log = "0.4"
|
2020-12-17 10:08:16 +01:00
|
|
|
|
|
|
|
# File picker
|
|
|
|
fuzzy-matcher = "0.3"
|
|
|
|
ignore = "0.4"
|
2021-03-05 08:07:46 +01:00
|
|
|
# markdown doc rendering
|
|
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
2021-11-04 04:24:52 +01:00
|
|
|
# file type detection
|
|
|
|
content_inspector = "0.2.4"
|
2021-03-25 07:26:25 +01:00
|
|
|
|
|
|
|
# config
|
|
|
|
toml = "0.5"
|
2021-03-26 08:02:13 +01:00
|
|
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-07-17 16:47:08 +02:00
|
|
|
|
2021-09-21 18:03:12 +02:00
|
|
|
# ripgrep for global search
|
|
|
|
grep-regex = "0.1.9"
|
|
|
|
grep-searcher = "0.1.8"
|
2021-11-02 01:34:39 +01:00
|
|
|
tokio-stream = "0.1.8"
|
2021-09-21 18:03:12 +02:00
|
|
|
|
2021-10-27 17:21:30 +02:00
|
|
|
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
|
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|