wedi 0.8.2

A cross-platform minimalist lightweight CLI text editor
Documentation
[[bin]]
name = "wedi"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.crossterm]
version = "0.27"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.pico-args]
version = "0.5"

[dependencies.wedi-core]
features = ["syntax-highlighting"]
version = "0.8.2"

[dependencies.wedi-widget]
features = ["crossterm"]
version = "0.8.2"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.tempfile]
version = "3.8"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[features]
default = ["syntax-highlighting", "mouse-support"]
mouse-support = ["wedi-core/mouse-support"]
syntax-highlighting = ["wedi-core/syntax-highlighting", "wedi-widget/syntax-highlighting"]

[lib]
name = "wedi"
path = "src/lib.rs"

[package]
authors = ["wen"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A cross-platform minimalist lightweight CLI text editor"
edition = "2021"
license = "MIT"
name = "wedi"
readme = "README.md"
version = "0.8.2"

[profile.release]
codegen-units = 1
incremental = false
lto = true
opt-level = "z"
panic = "abort"
strip = true

[target."cfg(windows)".dependencies.winapi]
features = ["winuser", "windef", "winbase", "memoryapi", "winnls", "consoleapi", "handleapi", "processenv", "wincon"]
version = "0.3"