# 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.9.2" authors = ["preiter "] build = 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" [lib] name = "edtui" path = "src/lib.rs" [[example]] name = "app" path = "examples/app/main.rs" required-features = ["syntax-highlighting"] [[example]] name = "syntax_highlighting" path = "examples/syntax_highlighting/main.rs" required-features = ["syntax-highlighting"] [[example]] name = "test_text" path = "examples/test_text/main.rs" [dependencies.arbitrary] version = "1" features = ["derive"] optional = true [dependencies.arboard] version = "3.3.0" optional = true [dependencies.enum_dispatch] version = "0.3.12" [dependencies.jagged] version = "0.1" package = "edtui-jagged" [dependencies.once_cell] version = "1" optional = true [dependencies.ratatui] version = "0.29" features = ["unstable"] package = "ratatui" [dependencies.syntect] version = "5.2.0" optional = true [dependencies.unicode-width] version = "0.2.0" [features] arboard = ["dep:arboard"] default = [ "arboard", "mouse-support", "syntax-highlighting", ] mouse-support = [] syntax-highlighting = [ "dep:syntect", "dep:once_cell", ]