Make the build time faster for development #64

Merged
tipragot merged 1 commit from opti into main 2024-02-22 20:35:10 +00:00
2 changed files with 8 additions and 0 deletions

2
.cargo/config.toml Normal file
View file

@ -0,0 +1,2 @@
[build]
rustflags = ["-Z", "threads=8"]

View file

@ -10,3 +10,9 @@ missing_docs_in_private_items = "warn"
unwrap_in_result = "warn"
unwrap_used = "warn"
nursery = "warn"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3