diff options
| author | Martin <mhaug@live.de> | 2021-08-19 15:07:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-19 15:07:11 +0200 |
| commit | fdab7158c91c52a4ace211c804fdd8e9110f56de (patch) | |
| tree | 7ec34f942bc89b2ade554618648825654a587ace /src/layout/mod.rs | |
| parent | c44ecbfbd2706bf8e09728f2c85135aa2299d542 (diff) | |
Pattern properties (#42)
Included in this package are:
* Code review I: The unnamed review.
* Code Review II: How I met your review.
* Code Review III: Code, the final frontier. These are the voyages of the USS Review ...
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::*; |
