ruffle/.cargo/config.toml

8 lines
344 B
TOML
Raw Normal View History

[target.'cfg(all())']
# NOTE that the web build overrides this setting in package.json via the RUSTFLAGS environment variable
rustflags = [
2023-05-16 09:27:36 +00:00
# We need to specify this flag for all targets because Clippy checks all of our code against all targets
# and our web code does not compile without this flag
"--cfg=web_sys_unstable_apis",
]