sugarloaf 0.2.16

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
// font_introspector was retired from https://github.com/dfrg/swash
// which is licensed under MIT license

/*!
Character properties and textual analysis.
*/

// Avoid errors for generated Unicode data.
#![allow(clippy::upper_case_acronyms)]

mod analyze;
mod compose;
mod lang;
mod lang_data;
mod unicode;
mod unicode_data;

pub mod cluster;

#[allow(unused)]
pub use analyze::{analyze, Analyze};
#[allow(unused)]
pub use lang::{Cjk, Language};
pub use unicode::*;