From 0d6f7b49abcbae0fbfa8aa2df3d8c5da9c1c6df9 Mon Sep 17 00:00:00 2001 From: lukas0008 Date: Sat, 7 Sep 2024 21:21:59 +0200 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9bca5c2e..aa557628 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,20 @@ There are several ways you can contribute to Pumpkin: Ensure your code adheres to our project structure and style guidelines. Write clear and concise commit messages that describe your changes. +### Faster Compiles + +We use extism for our plugins, unfortunately extism has quite a hefty impact on compile times, which can increase it by several minutes on release mode. To run Pumpkin without plugins, run the following: + +```shell +cargo run --no-default-features +``` + +And in release: + +```shell +cargo run --no-default-features --release +``` + ### Project Structure Before contributing, it would be helpful to get to know the project structure, for further information, visit [STRUCTURE.md](STRUCTURE.md)