bee05dd32a
* Add refresh-config and open-config command * clippy * Use dynamic dispatch for editor config * Refactor Result::Ok to Ok * Remove unused import * cargo fmt * Modify config error handling * cargo xtask docgen * impl display for ConfigLoadError * cargo fmt * Put keymaps behind dyn access, refactor config.load() * Update command names * Update helix-term/src/application.rs Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> * Switch to unbounded_channel * Remove --edit-config command * Update configuration docs * Revert "Put keymaps behind dyn access", too hard This reverts commit 06bad8cf492b9331d0a2d1e9242f3ad4e2c1cf79. * Add refresh for keys * Refactor default_keymaps, fix config default, add test * swap -> store, remove unneeded clone * cargo fmt * Rename default_keymaps to default Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "helix-view"
|
|
version = "0.6.0"
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "UI abstractions for use in backends"
|
|
categories = ["editor"]
|
|
repository = "https://github.com/helix-editor/helix"
|
|
homepage = "https://helix-editor.com"
|
|
|
|
[features]
|
|
default = []
|
|
term = ["crossterm"]
|
|
|
|
[dependencies]
|
|
bitflags = "1.3"
|
|
anyhow = "1"
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
|
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
|
helix-dap = { version = "0.6", path = "../helix-dap" }
|
|
crossterm = { version = "0.23", optional = true }
|
|
|
|
# Conversion traits
|
|
once_cell = "1.10"
|
|
url = "2"
|
|
|
|
arc-swap = { version = "1.5.0" }
|
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
|
tokio-stream = "0.1"
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
|
|
|
slotmap = "1"
|
|
|
|
chardetng = "0.1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5"
|
|
log = "~0.4"
|
|
|
|
which = "4.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
clipboard-win = { version = "4.4", features = ["std"] }
|
|
|
|
[dev-dependencies]
|
|
helix-tui = { path = "../helix-tui" }
|