mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
20 lines
340 B
TOML
20 lines
340 B
TOML
[target.wasm32-unknown-unknown]
|
|
rustflags = [
|
|
# Enabled unstable APIs from web_sys
|
|
"--cfg=web_sys_unstable_apis"
|
|
]
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
opt-level = 's'
|
|
debug = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
panic = 'abort'
|
|
|
|
[profile.wasm-release]
|
|
inherits = "release"
|
|
opt-level = 's'
|
|
lto = true
|
|
panic = 'abort'
|