Skip to content

Commit

Permalink
Re-export third party crates
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivordir committed Mar 4, 2024
1 parent c015004 commit c6ede63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ pub use types::*;
#[cfg(feature = "pipelines")]
pub use api::*;

// Re-export third party crates with types present in our public API
#[cfg(feature = "image")]
pub use image;
#[cfg(any(feature = "pipelines", feature = "image"))]
pub use palette;

/// The maximum supported image size in number of pixels is `u32::MAX`.
pub const MAX_PIXELS: u32 = u32::MAX;

Expand Down

0 comments on commit c6ede63

Please sign in to comment.