Expand description
Compatibility shims for migration from other WebP crates.
These modules provide API-compatible wrappers to ease migration from:
webp- thewebpcrate (0.3.x)webp_animation- thewebp-animationcrate (0.9.x)
§Migration Example
ⓘ
// Before (webp crate)
use webp::{Encoder, Decoder};
// After (webpx compat)
use webpx::compat::webp::{Encoder, Decoder};Modules§
- webp
- Compatibility shim for the
webpcrate (0.3.x). - webp_
animation - Compatibility shim for the
webp-animationcrate (0.9.x).