[package]
edition = "2024"
name = "ansimage"
version = "0.2.1"
authors = ["Cody Wyatt Neiman (xangelix) <neiman@cody.to>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Converting images into colorful terminal ANSI art."
documentation = "https://docs.rs/ansimage"
readme = "README.md"
keywords = [
"image",
"terminal",
"ansi",
"art",
"ascii-art",
]
categories = [
"command-line-utilities",
"multimedia::images",
"visualization",
"graphics",
"value-formatting",
]
license = "MIT"
repository = "https://github.com/xangelix/ansimage"
[lib]
name = "ansimage"
path = "src/lib.rs"
[[bin]]
name = "ansimage"
path = "src/bin/main.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.fast_image_resize]
version = "6.0.0"
[dependencies.image]
version = "0.25.10"
[dependencies.imagequant]
version = "4.4.1"
[dependencies.palette]
version = "0.7.6"
features = ["serializing"]
[dependencies.rayon]
version = "1.12.0"
[dependencies.thiserror]
version = "2.0.18"