inkline 1.1.0

Display colorized ASCII art and images directly in the terminal.
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 = "2024"
name = "inkline"
version = "1.1.0"
authors = ["CELESTIFYX Team <celestifyx@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Display colorized ASCII art and images directly in the terminal."
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://gitlab.com/inkline/inkline-rs"

[features]
ascii = [
    "chromakitx",
    "regex",
    "terminal_size",
    "lazy_static",
]
default = ["ascii"]
image = [
    "anyhow",
    "color_quant",
    "base64",
    "clap",
    "dep:image",
    "rustix",
    "serde",
]

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

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

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

[dependencies.anyhow]
version = "1.0.102"
optional = true

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

[dependencies.chromakitx]
version = "1.0.2"
optional = true

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

[dependencies.color_quant]
version = "1.1.0"
optional = true

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

[dependencies.lazy_static]
version = "1.5.0"
optional = true

[dependencies.regex]
version = "1.12.3"
optional = true

[dependencies.rustix]
version = "1.1.3"
features = [
    "termios",
    "event",
]
optional = true

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

[dependencies.terminal_size]
version = "0.4.3"
optional = true