helix-mirror/helix-term/Cargo.toml

64 lines
1.7 KiB
TOML
Raw Normal View History

2020-05-20 13:14:51 +04:00
[package]
name = "helix-term"
2021-08-14 08:31:23 +04:00
version = "0.4.1"
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>"]
2021-10-22 07:07:41 +04:00
edition = "2021"
2021-05-10 20:42:34 +04:00
license = "MPL-2.0"
2021-06-18 18:41:03 +04:00
categories = ["editor", "command-line-utilities"]
repository = "https://github.com/helix-editor/helix"
homepage = "https://helix-editor.com"
include = ["src/**/*", "README.md"]
2020-05-20 13:14:51 +04:00
[package.metadata.nix]
build = true
app = true
2020-05-20 13:14:51 +04:00
[features]
2020-05-20 13:14:51 +04:00
[[bin]]
name = "hx"
path = "src/main.rs"
[dependencies]
2021-08-12 20:28:11 +04:00
helix-core = { version = "0.4", path = "../helix-core" }
helix-view = { version = "0.4", path = "../helix-view" }
helix-lsp = { version = "0.4", path = "../helix-lsp" }
2021-10-27 05:04:23 +04:00
# Rendering
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"] }
crossterm = { version = "0.22", features = ["event-stream"] }
signal-hook = "0.3"
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
anyhow = "1"
once_cell = "1.8"
2021-07-17 18:47:08 +04:00
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
num_cpus = "1"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
2021-10-27 05:04:23 +04:00
tokio-stream = "0.1.7"
# Logging
fern = "0.6"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
log = "0.4"
# File picker
fuzzy-matcher = "0.3"
ignore = "0.4"
2021-03-05 11:07:46 +04:00
# markdown doc rendering
pulldown-cmark = { version = "0.8", default-features = false }
# config
toml = "0.5"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2021-07-17 18:47:08 +04:00
# ripgrep for global search
grep-regex = "0.1.9"
grep-searcher = "0.1.8"