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 292442b commit b07369dCopy full SHA for b07369d
Cargo.toml
@@ -77,6 +77,14 @@ ssr = [
77
"dep:worker-macros",
78
]
79
80
+# https://doc.rust-lang.org/stable/cargo/guide/build-performance.html#reduce-amount-of-generated-debug-information
81
+[profile.dev]
82
+debug = "line-tables-only"
83
+
84
+# Avoid generating any debug information for dependencies
85
+[profile.dev.package."*"]
86
+debug = false
87
88
[profile.release]
89
lto = true
90
opt-level = 's'
rust-toolchain.toml
@@ -1,4 +1,4 @@
1
[toolchain]
2
-channel = "1.91.0"
+channel = "1.92.0"
3
components = ["clippy", "rustfmt"]
4
targets = ["wasm32-unknown-unknown"]
0 commit comments