oximg 0.2.0

High-performance image compression: library, CLI, and self-hostable server (PoC).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod pipeline;

pub(crate) mod resize_kernel;

#[cfg(target_arch = "aarch64")]
pub mod resize_neon;

#[cfg(target_arch = "x86_64")]
pub mod resize_avx2;

#[cfg(feature = "avif")]
pub mod svt;

#[cfg(feature = "avif")]
pub mod avif;

#[cfg(feature = "avif")]
mod yuv;