2020-05-20 12:14:51 +03:00
|
|
|
[package]
|
|
|
|
name = "helix-term"
|
2022-01-04 12:54:05 +03:00
|
|
|
version = "0.6.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>"]
|
2021-10-22 06:07:41 +03:00
|
|
|
edition = "2021"
|
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"]
|
2021-12-10 05:04:31 +03:00
|
|
|
default-run = "hx"
|
2022-07-31 11:09:18 +03:00
|
|
|
rust-version = "1.57"
|
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]
|
2022-12-01 11:35:23 +03:00
|
|
|
default = ["git"]
|
2022-03-17 04:52:14 +03:00
|
|
|
unicode-lines = ["helix-core/unicode-lines"]
|
2022-01-18 03:04:40 +03:00
|
|
|
integration = []
|
2022-12-01 11:35:23 +03:00
|
|
|
git = ["helix-vcs/git"]
|
2021-06-03 23:46:56 +03:00
|
|
|
|
2020-05-20 12:14:51 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "hx"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-04 12:54:05 +03: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" }
|
2022-02-13 12:31:51 +03:00
|
|
|
helix-dap = { version = "0.6", path = "../helix-dap" }
|
2022-12-01 11:35:23 +03:00
|
|
|
helix-vcs = { version = "0.6", path = "../helix-vcs" }
|
2022-02-16 16:57:20 +03:00
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
2020-09-09 08:41:12 +03:00
|
|
|
|
2020-09-08 08:32:20 +03:00
|
|
|
anyhow = "1"
|
2022-11-01 03:31:08 +03:00
|
|
|
once_cell = "1.16"
|
2020-05-28 11:47:35 +03:00
|
|
|
|
2022-03-08 08:25:46 +03:00
|
|
|
which = "4.2"
|
|
|
|
|
2021-07-17 17:47:08 +03:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
2021-05-09 11:52:55 +03:00
|
|
|
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"] }
|
2022-08-22 04:29:30 +03:00
|
|
|
crossterm = { version = "0.25", features = ["event-stream"] }
|
2021-07-17 17:47:08 +03:00
|
|
|
signal-hook = "0.3"
|
2021-08-21 17:21:35 +03:00
|
|
|
tokio-stream = "0.1"
|
2021-05-08 05:51:18 +03:00
|
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
2022-08-02 04:06:22 +03:00
|
|
|
arc-swap = { version = "1.5.1" }
|
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-03-05 10:07:46 +03:00
|
|
|
# markdown doc rendering
|
2022-01-18 04:41:44 +03:00
|
|
|
pulldown-cmark = { version = "0.9", default-features = false }
|
2021-11-04 06:24:52 +03:00
|
|
|
# file type detection
|
|
|
|
content_inspector = "0.2.4"
|
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"] }
|
2021-07-17 17:47:08 +03:00
|
|
|
|
2021-09-21 19:03:12 +03:00
|
|
|
# ripgrep for global search
|
2022-07-19 04:45:57 +03:00
|
|
|
grep-regex = "0.1.10"
|
2022-07-19 05:24:03 +03:00
|
|
|
grep-searcher = "0.1.10"
|
2021-09-21 19:03:12 +03:00
|
|
|
|
2021-07-17 17:47:08 +03:00
|
|
|
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
|
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
2022-02-21 15:39:23 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
helix-loader = { version = "0.6", path = "../helix-loader" }
|
2022-01-18 03:04:40 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-04 02:38:24 +03:00
|
|
|
smallvec = "1.10"
|
2022-12-20 02:22:27 +03:00
|
|
|
indoc = "1.0.8"
|
2022-04-18 04:04:59 +03:00
|
|
|
tempfile = "3.3.0"
|