aarty/Cargo.toml

39 lines
791 B
TOML

[package]
name = "aarty"
version = "0.4.8"
edition = "2021"
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
description = "A simple CLI tool to convert the images to ASCII art"
repository = "https://github.com/anas-elgarhy/aarty"
license = "MIT"
readme = "README.md"
keywords = [
"ascii",
"art",
"image",
"cli"
]
categories = [
"command-line-utilities",
"multimedia",
"text-processing"
]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
exclude = ["images/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.2", features = ["derive"] }
colored = "2.0.0"
image = "0.24.6"
log = "0.4.18"
pretty_env_logger = "0.5.0"