unicode_shaper/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5pub mod shape;
6pub mod ubidi;
7
8pub use shape::*;
9pub use ubidi::*;