Skip to content

Commit

Permalink
crates/png/lib: Feature gate post_process_image
Browse files Browse the repository at this point in the history
  • Loading branch information
etemesi254 committed Nov 4, 2023
1 parent ef0dad1 commit f4031c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/zune-png/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,10 @@
extern crate alloc;
extern crate core;

pub use apng::{post_process_image, BlendOp, DisposeOp};
#[cfg(feature = "std")]
pub use apng::post_process_image;

pub use apng::{BlendOp, DisposeOp};
pub use decoder::{ItxtChunk, PngDecoder, PngInfo, TextChunk, TimeInfo, ZtxtChunk};
pub use encoder::PngEncoder;
pub use enums::InterlaceMethod;
Expand Down

0 comments on commit f4031c7

Please sign in to comment.