# 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 = "egui_code_editor" version = "0.2.10" authors = ["Roman Chumak "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "egui Code Editor widget with numbered lines and syntax highlighting.." readme = "README.md" keywords = [ "egui", "GUI", "editor", "syntax", "highlighting", ] categories = [ "gui", "text-editors", ] license = "MIT" repository = "https://github.com/p4ymak/egui_code_editor" [lib] name = "egui_code_editor" path = "src/lib.rs" doctest = false [[example]] name = "demo" path = "examples/demo.rs" test = true [[example]] name = "tui" path = "examples/tui.rs" test = true [dependencies.egui] version = "0.29" optional = true [dependencies.serde] version = "1" optional = true [dev-dependencies.colorful] version = "0.3" [dev-dependencies.eframe] version = "0.29" [features] default = [ "egui", "editor", ] editor = [] egui = ["dep:egui"] serde = ["dep:serde"]