···1515We recommend using the following settings in your `Cargo.toml` to improve subsequent build times during development. This will increase the optimization level of your dependencies without making the compile time of your own crate longer.
16161717```toml
1818-1818+[profile.dev.package."*"]
1919+opt-level = 3
1920```
20212122This is particularly relevant if you are processing a lot of images, as there is a large difference in performance between debug and release builds of the crates Maudit uses for image processing.