feat: turn on compiler optimizations for the wasm

This commit is contained in:
Jet Pham 2026-03-05 00:26:21 -08:00
parent 7b726be760
commit 3364a6ae9b
No known key found for this signature in database
3 changed files with 21 additions and 12 deletions

View file

@ -1,2 +1,8 @@
[build]
target = "wasm32-unknown-unknown"
[target.wasm32-unknown-unknown]
rustflags = ["-C", "link-arg=--strip-all"]
[unstable]
build-std = ["core", "alloc", "std", "panic_abort"]