aarty/Cargo.toml

39 lines
791 B
TOML
Raw Permalink Normal View History

2022-10-03 11:09:12 +00:00
[package]
name = "aarty"
2023-06-03 15:15:55 +00:00
version = "0.4.8"
2022-10-03 11:09:12 +00:00
edition = "2021"
2022-10-03 14:04:38 +00:00
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
2022-10-03 19:15:22 +00:00
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/*"]
2022-10-03 11:09:12 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.2", features = ["derive"] }
2022-10-03 11:09:12 +00:00
colored = "2.0.0"
image = "0.24.6"
log = "0.4.18"
pretty_env_logger = "0.5.0"