Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docs): Missing cargo settings

+2 -1
+2 -1
website/content/docs/performance.md
··· 15 15 We 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. 16 16 17 17 ```toml 18 - 18 + [profile.dev.package."*"] 19 + opt-level = 3 19 20 ``` 20 21 21 22 This 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.