sugarloaf 0.1.4

Sugarloaf is Rio rendering engine, designed to be multiplatform. It is based on WebGPU, Rust library for Desktops and WebAssembly for Web (JavaScript). This project is created and maintained for Rio terminal purposes but feel free to use it.
Documentation
#[cfg(target_os = "macos")]
pub fn external_fallbacks() -> Vec<String> {
    vec![
        // String::from(".SF NS"),
        String::from("Menlo"),
        String::from("Geneva"),
        String::from("Arial Unicode MS"),
        String::from("Apple Color Emoji"),
    ]
}

#[cfg(target_os = "windows")]
pub fn external_fallbacks() -> Vec<String> {
    vec![
        // Lucida Sans Unicode
        // Microsoft JhengHei
        String::from("Segoe UI"),
        String::from("Segoe UI Emoji"),
        String::from("Segoe UI Symbol"),
        String::from("Segoe UI Historic"),
    ]
}

#[cfg(not(any(target_os = "macos", windows)))]
pub fn external_fallbacks() -> Vec<String> {
    vec![
        String::from("Noto Sans"),
        String::from("FreeSans"),
        String::from("Noto Color Emoji"),
    ]
}