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