woff2/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2#![doc = include_str!("../README.md")]
3
4extern crate alloc;
5
6#[cfg(test)]
7extern crate std;
8
9pub mod decode;
10
11mod brotli;
12mod buffer;
13mod checksum;
14mod glyf;
15mod magic;
16mod sfnt;
17mod woff2;
18
19#[cfg(test)]
20mod test_data;
21
22pub use decode::convert_woff2_to_ttf;