-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 726 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "ascii-typographer"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Advanced ASCII art generator — CLI and Rust library"
keywords = ["ascii", "graphics", "ascii-art"]
repository = "https://github.com/user-simon/typographer"
categories = ["multimedia::images", "algorithms", "command-line-utilities"]
exclude = ["img/", "README.md", "flake.*", "rust-toolchain.toml"]
readme = "README_LITE.md"
[lib]
name = "typographer"
path = "src/lib.rs"
[[bin]]
name = "typographer"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5", features = ["derive"] }
crossterm = "0.29"
edge-detection = "0.3.0"
image = "0.25.6"
itertools = "0.14.0"
palette = "0.7.6"