[package]
edition = "2024"
rust-version = "1.93"
name = "glyphore"
version = "0.2.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MapLibre glyph PBF generation library and command-line interface"
homepage = "https://github.com/Kartore/glyphore"
documentation = "https://docs.rs/glyphore"
readme = "README.md"
keywords = [
"maplibre",
"glyphs",
"font",
"pbf",
"cli",
]
categories = [
"command-line-utilities",
"graphics",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Kartore/glyphore"
[features]
cli = ["dep:clap"]
default = ["cli"]
[lib]
name = "glyphore"
path = "src/lib.rs"
[[bin]]
name = "glyphore"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "cli"
path = "tests/cli.rs"
required-features = ["cli"]
[[test]]
name = "library"
path = "tests/library.rs"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
optional = true
[dependencies.glyphore-core]
version = "=0.2.0"