We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a7f69 commit 2ebb231Copy full SHA for 2ebb231
1 file changed
Cargo.toml
@@ -15,6 +15,12 @@ exclude = [
15
"crates/targets/baseline",
16
]
17
18
+# This compiles external dependencies (outside crates) with full optimization.
19
+# This can improve run time while iterating on development (testing, etc.).
20
+# This has NO EFFECT on end users using windows-* crates.
21
+[profile.dev.package."*"]
22
+opt-level = 2
23
+
24
[workspace.lints.rust]
25
rust_2018_idioms = { level = "warn", priority = -1 }
26
missing_docs = "warn"
0 commit comments