Make Wasm compilable

This commit is contained in:
bakaq
2025-01-31 09:24:39 -03:00
parent 4fc4152eac
commit b32273fc79
2 changed files with 25 additions and 1 deletions

View File

@@ -139,6 +139,17 @@ opt-level = 3
lto = true
opt-level = 3
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
lto = "off"
[profile.wasm-release]
inherits = "release"
lto = "off"
panic = "abort"
codegen-units = 256
[[bench]]
name = "run_criterion"
harness = false