[package]
name = "bitmap2ttf-cli"
version = "0.1.0"
edition = "2024"
authors = ["Michael Lohr <michael@lohr.dev>"]
description = "CLI tool to convert bitmap fonts (BMFont format) into TrueType (.ttf) vector fonts"
readme = "../README.md"
repository = "https://github.com/michidk/bitmap2ttf"
documentation = "https://github.com/michidk/bitmap2ttf"
homepage = "https://github.com/michidk/bitmap2ttf"
license = "MIT"
keywords = ["bitmap", "font", "ttf", "truetype", "pixel-font"]
categories = ["graphics", "command-line-utilities"]
[[bin]]
name = "bitmap2ttf"
path = "src/main.rs"
[dependencies]
bitmap2ttf = { version = "0.1.0", path = "../bitmap2ttf" }
clap = { version = "4.6.0", features = ["derive", "color", "help", "usage", "suggestions", "wrap_help"] }
image = { version = "0.25.8", default-features = false, features = ["png"] }
thiserror = "2.0.18"