[[example]]
name = "show_chars_in_window"
required-features = ["all"]
[dependencies]
[dev-dependencies.minifb]
version = "~0.25.0"
[features]
all = ["raster_heights_all", "font_weights_all", "unicode_ranges_all"]
bold = []
default = ["raster_heights_default", "font_weights_default", "unicode_ranges_default"]
font_weights_all = ["light", "regular", "bold"]
font_weights_default = ["regular"]
light = []
raster_heights_all = ["size_16", "size_20", "size_24", "size_32"]
raster_heights_default = ["size_16"]
regular = []
size_16 = []
size_20 = []
size_24 = []
size_32 = []
unicode-basic-latin = []
unicode-latin-1-supplement = []
unicode-latin-extended-a = []
unicode-specials = []
unicode_ranges_all = ["unicode-basic-latin", "unicode-latin-1-supplement", "unicode-latin-extended-a", "unicode-specials"]
unicode_ranges_default = ["unicode-basic-latin"]
[package]
categories = ["text-processing", "no-std"]
description = "Provides pre-rasterized characters from the \"Noto Sans Mono\" font in different sizes and font\nweights for multiple unicode ranges. This crate is `no_std` and needs no allocations or floating\npoint operations. Useful in kernels and bootloaders when only \"soft-float\" is available. Strictly\nspeaking, this crate is more than a basic bitmap font, because it encodes each pixel as a byte\nand not as a bit, which results in a much nicer result on the screen.\n"
documentation = "https://docs.rs/noto-sans-mono-bitmap"
edition = "2021"
exclude = [".direnv", ".github", ".editorconfig", ".envrc", "/external", "shell.nix"]
homepage = "https://github.com/phip1611/noto-sans-mono-bitmap-rs"
keywords = ["bitmap", "font", "noto-sans-mono"]
license = "MIT"
name = "noto-sans-mono-bitmap"
readme = "README.md"
repository = "https://github.com/phip1611/noto-sans-mono-bitmap-rs"
version = "0.3.0"