aarty 0.8.2

Mini-framework to display pictures on your 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 = "2021"
rust-version = "1.85.1"
name = "aarty"
version = "0.8.2"
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
build = false
include = [
    "src/**/*",
    "benches/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mini-framework to display pictures on your terminal"
readme = "README.md"
keywords = [
    "ascii",
    "art",
    "image",
    "pictures",
]
categories = [
    "command-line-utilities",
    "multimedia",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/0x61nas/aarty"

[features]
colors = []
default = [
    "colors",
    "reverse",
    "image",
    "text_image",
]
image = [
    "dep:image",
    "rayon",
    "cfg-if",
]
reverse = []
serde = ["dep:serde"]
text_image = []

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

[[bin]]
name = "aarty"
path = "src/bin/main.rs"
required-features = [
    "image",
    "colors",
]

[[bench]]
name = "convert_to_ascii"
path = "benches/convert_to_ascii.rs"
harness = false
required-features = ["image"]

[[bench]]
name = "text_image"
path = "benches/text_image.rs"
harness = false
required-features = [
    "text_image",
    "image",
]

[dependencies.cfg-if]
version = ">=0.1.2"
optional = true

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

[dependencies.rayon]
version = ">=1.1"
optional = true

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

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

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"