1 | #[cfg(feature = "textlayout")] |
---|---|
2 | pub(crate) mod paragraph; |
3 | #[cfg(feature = "textlayout")] |
4 | pub mod shaper; |
5 | #[cfg(feature = "svg")] |
6 | pub mod svg; |
7 | #[cfg(feature = "textlayout")] |
8 | pub use shaper::{icu, Shaper}; |
9 | |
10 | // Export everything below paragraph under textlayout |
11 | #[cfg(feature = "textlayout")] |
12 | pub mod textlayout { |
13 | pub use super::paragraph::*; |
14 | } |
15 |