Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/iocraft/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ mod flattened_exports {

pub use flattened_exports::*;

/// Re-exported [`taffy`] crate, which powers flexbox layout in `iocraft`.
///
/// This allows you to reference `taffy` types (e.g. [`taffy::Size`],
/// [`taffy::AvailableSpace`]) in your own code without adding a separate
/// `taffy` dependency to your `Cargo.toml`.
pub use taffy;

/// Components for crafting your UI.
pub mod components;

Expand Down
Loading