fontkit 0.1.0

A simple library for font loading and indexing
Documentation
1
2
3
4
5
6
7
8
9
10
use cfg_aliases::cfg_aliases;

fn main() {
    // Setup cfg aliases
    cfg_aliases! {
        // Platforms
        wasm: { all(target_arch = "wasm32", target_os = "unknown") },
        wasi: { all(target_arch = "wasm32", target_os = "wasi") },
    }
}