# 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.70" name = "aarty" version = "0.7.0-alpha.4" authors = ["Anas Elgarhy "] include = [ "src/**/*", "benches/**/*", "Cargo.toml", "README.md", "LICENSE", "CHANGELOG.md", ] autobins = 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" [profile.release] lto = true codegen-units = 1 panic = "abort" strip = "symbols" [[bin]] name = "aarty" path = "src/bin/main.rs" required-features = [ "image", "colors", ] [[bench]] name = "text_image" harness = false required-features = [ "text_image", "image", ] [[bench]] name = "convert_to_ascii" harness = false required-features = ["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.5.1" [features] colors = [] default = [ "colors", "reverse", "image", "text_image", ] image = [ "dep:image", "rayon", "cfg-if", ] reverse = [] serde = ["dep:serde"] text_image = []