I'm trying to use webp alongside other parts of the image crate, but I need to set features of the image crate (particularly, disabling rayon because I am compiling for wasm32). When depending on the webp crate, it pulls in image with all default features.
Can you please change your dependency on image to include default-features = false, and only explicitly enable the features you need in the img feature?
If you'd like, I can send a PR which implements this change.
Hi! Thanks for this crate.
I'm trying to use
webp
alongside other parts of theimage
crate, but I need to set features of theimage
crate (particularly, disabling rayon because I am compiling for wasm32). When depending on the webp crate, it pulls inimage
with all default features.Can you please change your dependency on
image
to includedefault-features = false
, and only explicitly enable the features you need in theimg
feature?If you'd like, I can send a PR which implements this change.