wagahai_lut 0.1.0

CUBE LUT parser and image processing library with SIMD
Documentation
/*
 * SPDX-FileCopyrightText: © 2026 Jinwoo Park (pmnxis@gmail.com)
 *
 * SPDX-License-Identifier: MIT
 */

//! wagahai_lut: A Rust-based CUBE LUT parser and image processing utility
//!
//! This library provides:
//! - CUBE LUT file parsing (1D and 3D LUTs)
//! - Image processing with LUT application
//!
//! # Supported Image Types
//! - `image::DynamicImage`

#![allow(clippy::missing_safety_doc)]

pub mod error;
pub mod lut;
pub mod parser;

pub use error::{CubeError, Result};
pub use lut::{CubeLut, Lut1D, Lut3D, LutType, Rgb};
pub use parser::CubeParser;

/// Version information
pub const VERSION: &str = env!("CARGO_PKG_VERSION");