# 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" rust-version = "1.61" name = "embedded-text" version = "0.7.2" authors = ["Dániel Buga "] build = false exclude = [ ".gitignore", ".github/", ] autobins = false autoexamples = false autotests = false autobenches = false description = "TextBox for embedded-graphics" readme = "README.md" keywords = [ "embedded-graphics", "textbox", "text", ] categories = [ "no-std", "embedded", "graphics", ] license = "MIT" repository = "https://github.com/embedded-graphics/embedded-text" [lib] name = "embedded_text" path = "src/lib.rs" [[example]] name = "interactive-editor" path = "examples/interactive-editor.rs" required-features = ["plugin"] [[example]] name = "plugin" path = "examples/plugin.rs" required-features = ["plugin"] [[example]] name = "plugin-ansi" path = "examples/plugin-ansi.rs" required-features = ["ansi"] [[example]] name = "special-characters-tabs" path = "examples/special-characters-tabs.rs" required-features = ["ansi"] [[example]] name = "styles-plugin" path = "examples/styles-plugin.rs" required-features = ["plugin"] [[example]] name = "alignment-horizontal" path = "examples/alignment-horizontal.rs" [[example]] name = "alignment-vertical" path = "examples/alignment-vertical.rs" [[example]] name = "interactive-alignments" path = "examples/interactive-alignments.rs" [[example]] name = "interactive-columns" path = "examples/interactive-columns.rs" [[example]] name = "paragraph_spacing" path = "examples/paragraph_spacing.rs" [[example]] name = "plugin-tail" path = "examples/plugin-tail.rs" [[example]] name = "special-characters" path = "examples/special-characters.rs" [[example]] name = "styles-static" path = "examples/styles-static.rs" [[example]] name = "whitespace_control" path = "examples/whitespace_control.rs" [dependencies.ansi-parser] version = "0.8.0" optional = true default-features = false [dependencies.az] version = "1.1" [dependencies.embedded-graphics] version = "0.8.0" [dependencies.object-chain] version = "0.1" [dev-dependencies.embedded-graphics-simulator] version = "0.5.0" [dev-dependencies.rayon-core] version = "=1.11" [dev-dependencies.sdl2] version = "0.35.2" [features] ansi = ["ansi-parser"] default = [] plugin = []