diff options
Diffstat (limited to 'src/layout/mod.rs')
| -rw-r--r-- | src/layout/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 246db714..9700004d 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -1,10 +1,12 @@ //! Layouting. mod background; +mod constraints; mod fixed; mod frame; mod grid; mod image; +#[cfg(feature = "layout-cache")] mod incremental; mod pad; mod par; @@ -14,9 +16,11 @@ mod tree; pub use self::image::*; pub use background::*; +pub use constraints::*; pub use fixed::*; pub use frame::*; pub use grid::*; +#[cfg(feature = "layout-cache")] pub use incremental::*; pub use pad::*; pub use par::*; |
