Browse Source

When doing a debug build, build the deps with -O2, not -O3 which is self-defeating

Caleb James DeLisle 1 year ago
parent
commit
1cfa063e49
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Cargo.toml

+ 1 - 1
Cargo.toml

@@ -7,4 +7,4 @@ panic = "unwind"
 
 # In debug mode, enable optimizations for dependencies, but not for our code
 [profile.dev.package."*"]
-opt-level = 3
+opt-level = 2