termint 0.7.0

Library for colored printing and Terminal User Interfaces
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 = "termint"
version = "0.7.0"
authors = ["Martin Slezák (github.com/Martan03)"]
build = false
exclude = [
    "src/main.rs",
    ".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for colored printing and Terminal User Interfaces"
documentation = "https://docs.rs/termint/latest/termint/"
readme = "README.md"
keywords = [
    "tui",
    "terminal",
    "termint",
    "ansi-codes",
    "color-printing",
]
license-file = "LICENSE"
repository = "https://github.com/Martan03/termint"

[package.metadata."docs.rs"]
all-features = true

[features]
all = [
    "serde",
    "backend-termal",
    "backend-crossterm",
]
backend-crossterm = ["dep:crossterm"]
backend-termal = ["termal/events"]
default = ["backend-crossterm"]
serde = ["dep:serde"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "buffer"
path = "benches/buffer.rs"

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

[[bench]]
name = "span"
path = "benches/span.rs"

[dependencies.bitflags]
version = "2.9.1"

[dependencies.compact_str]
version = "0.9.0"

[dependencies.crossterm]
version = "0.29.0"
optional = true

[dependencies.serde]
version = "1.0.218"
features = [
    "std",
    "derive",
]
optional = true

[dependencies.termal]
version = "4.1.1"
features = ["raw"]

[dependencies.thiserror]
version = "2.0.18"

[dependencies.unicode-segmentation]
version = "1.12.0"

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

[dev-dependencies.criterion]
version = "0.5.1"