diff --git a/Cargo.lock b/Cargo.lock index 83b7aba..147f48f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -163,7 +163,7 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" [[package]] name = "colorutils-rs" -version = "0.2.10" +version = "0.2.11" dependencies = [ "half", ] diff --git a/Cargo.toml b/Cargo.toml index aaa690e..ae7a694 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { members = ["src/app"] } [package] name = "colorutils-rs" -version = "0.2.10" +version = "0.2.11" edition = "2021" description = "High performance utilities for color format handling and conversion." readme = "README.md" diff --git a/src/sse_to_xyz_lab.rs b/src/sse_to_xyz_lab.rs index 36dba83..5c728bb 100644 --- a/src/sse_to_xyz_lab.rs +++ b/src/sse_to_xyz_lab.rs @@ -17,6 +17,7 @@ use crate::x86_64_simd_support::*; use std::arch::x86_64::*; #[cfg(target_arch = "x86")] use std::arch::x86::*; +#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] use crate::luv::{LUV_CUTOFF_FORWARD_Y, LUV_MULTIPLIER_FORWARD_Y}; #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]