edtui 0.11.3

A TUI based vim inspired 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 = "edtui"
version = "0.11.3"
authors = ["preiter <phil.reiter93@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A TUI based vim inspired editor"
readme = "README.md"
keywords = [
    "ratatui",
    "tui",
    "editor",
    "text",
    "vim",
]
license = "MIT"
repository = "https://github.com/preiter93/edtui"

[features]
arboard = ["dep:arboard"]
default = [
    "arboard",
    "mouse-support",
    "syntax-highlighting",
]
mouse-support = []
syntax-highlighting = [
    "dep:syntect",
    "dep:once_cell",
]
system-editor = ["dep:edit"]

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

[[example]]
name = "app"
path = "examples/app/main.rs"
required-features = ["syntax-highlighting"]

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

[[example]]
name = "emacs"
path = "examples/emacs/main.rs"

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

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

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

[[example]]
name = "syntax_highlighting"
path = "examples/syntax_highlighting/main.rs"
required-features = ["syntax-highlighting"]

[[example]]
name = "system_editor"
path = "examples/system_editor.rs"
required-features = ["system-editor"]

[[example]]
name = "test_text"
path = "examples/test_text/main.rs"

[dependencies.arbitrary]
version = "1"
features = ["derive"]
optional = true

[dependencies.arboard]
version = "3"
optional = true

[dependencies.crossterm]
version = "0.29"
package = "crossterm"

[dependencies.edit]
version = "0.1.5"
optional = true

[dependencies.enum_dispatch]
version = "0.3"

[dependencies.jagged]
version = "0.1"
package = "edtui-jagged"

[dependencies.once_cell]
version = "1"
optional = true

[dependencies.ratatui-core]
version = "0.1"
package = "ratatui-core"

[dependencies.ratatui-widgets]
version = "0.3.0"
default-features = false

[dependencies.syntect]
version = "5"
optional = true

[dependencies.unicode-width]
version = "0.2.0"

[dev-dependencies.ratatui]
version = "0.30"
package = "ratatui"