Skip to main content

rawshift_image/core/
mod.rs

1//! Core types and traits for image processing.
2//!
3//! These types live in the [`rawshift_core`] crate and are re-exported here so
4//! that `rawshift`'s public path `rawshift::core::…` (and internal
5//! `crate::core::…` paths) stay stable. [`IccProfile`] is additionally surfaced
6//! here from the internal `metadata` module.
7
8pub use rawshift_core::*;
9
10// Re-export IccProfile from the internal metadata module so it remains
11// publicly accessible under `core` as before the workspace split.
12pub use crate::metadata::icc::IccProfile;