image-rs / imageproc

Image processing operations
MIT License
723 stars 144 forks source link

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

Closed ripytide closed 1 month ago

ripytide commented 1 month 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 1 month ago

Thanks!