superlighttui 0.7.1

Super Light TUI - A lightweight, ergonomic terminal UI library
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"
rust-version = "1.74"
name = "superlighttui"
version = "0.7.1"
build = false
exclude = [
    "examples/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Super Light TUI - A lightweight, ergonomic terminal UI library"
homepage = "https://github.com/subinium/SuperLightTUI"
documentation = "https://docs.rs/superlighttui"
readme = "README.md"
keywords = [
    "tui",
    "terminal",
    "cli",
    "ui",
    "immediate-mode",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/subinium/SuperLightTUI"

[features]
async = ["dep:tokio"]
image = ["dep:image"]
serde = ["dep:serde"]

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

[[test]]
name = "render_check"
path = "tests/render_check.rs"

[[test]]
name = "snapshots"
path = "tests/snapshots.rs"

[[test]]
name = "widgets"
path = "tests/widgets.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.crossterm]
version = "0.28"
features = ["bracketed-paste"]

[dependencies.image]
version = "0.25"
features = [
    "png",
    "jpeg",
]
optional = true
default-features = false

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

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "sync",
    "macros",
    "time",
]
optional = true

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

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.insta]
version = "1"