We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a356cc2 commit 3370bf6Copy full SHA for 3370bf6
Cargo.toml
@@ -64,6 +64,18 @@ resolver = "2"
64
[profile.dev]
65
panic = "abort"
66
67
+# `bindgen` is used by `samael`'s build script; building it with optimizations
68
+# makes that build script run ~5x faster, more than offsetting the additional
69
+# build time added to `bindgen` itself.
70
+[profile.dev.package.bindgen]
71
+opt-level = 3
72
+
73
+# `lalrpop` is used by `polar-core`'s build script; building it with
74
+# optimizations makes that build script run ~20x faster, more than offsetting
75
+# the additional build time added to `lalrpop` itself.
76
+[profile.dev.package.lalrpop]
77
78
79
[profile.release]
80
81
0 commit comments