woff2_no_std/
lib.rs

1#![doc = include_str!("../readme.md")]
2pub mod decode;
3
4mod buffer_util;
5mod checksum;
6mod glyf_decoder;
7mod magic_numbers;
8mod ttf_header;
9mod woff2;
10
11#[cfg(test)]
12mod test_resources;
13
14pub use decode::convert_woff2_to_ttf;