wedi 0.8.7

A cross-platform minimalist lightweight CLI text editor
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "wedi"
version = "0.8.7"
authors = ["wen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cross-platform minimalist lightweight CLI text editor"
homepage = "https://github.com/superyngo/wedi"
documentation = "https://docs.rs/wedi"
readme = "README.md"
keywords = [
    "editor",
    "text-editor",
    "tui",
    "terminal",
    "cli",
]
categories = [
    "text-editors",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/superyngo/wedi"

[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"

[[bin]]
name = "wedi"
path = "src/main.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.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]
version = "0.8.3"
features = ["syntax-highlighting"]

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

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

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

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

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

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