artbox 0.2.0

Render text and ascii art into a bounded rectangle with colors and gradients
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 = "artbox"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Render text and ascii art into a bounded rectangle with colors and gradients"
documentation = "https://dmk.github.io/artbox/"
readme = "README.md"
keywords = [
    "figlet",
    "ascii-art",
    "tui",
    "ratatui",
]
categories = [
    "command-line-interface",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/dmk/artbox"

[features]
cli = ["dep:clap"]
default = []
images = [
    "dep:base64",
    "dep:image",
    "dep:resvg",
]
ratatui = ["dep:ratatui"]

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

[[bin]]
name = "artbox"
path = "src/bin/artbox.rs"
required-features = [
    "cli",
    "images",
]

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

[[example]]
name = "gradient"
path = "examples/gradient.rs"
required-features = ["cli"]

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

[[example]]
name = "playground"
path = "examples/playground.rs"
required-features = [
    "cli",
    "images",
    "ratatui",
]

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

[[example]]
name = "tui"
path = "examples/tui.rs"
required-features = ["ratatui"]

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.clap]
version = "4.5.23"
features = ["derive"]
optional = true

[dependencies.figlet-rs]
version = "0.1"

[dependencies.image]
version = "0.25"
optional = true

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.resvg]
version = "0.43"
optional = true

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

[dev-dependencies.crossterm]
version = "0.28"

[dev-dependencies.tui-dispatch]
version = "0.5.4"