image-rs / imageproc

Image processing operations
MIT License
758 stars 149 forks source link

Fix Cargo.toml `rayon` feature and Update Dependencies #627

Closed ripytide closed 6 months ago

ripytide commented 6 months ago

The way the features were defined meant that using imageproc with default-features = false, features = ["rayon"] would fail to compile as that wouldn't force image to use its rayon feature. This PR fixes that and updates the cargo dependencies while at it.

theotherphil commented 6 months ago

Thanks!