web: No longer set the `web_sys_unstable_apis` config variable

This commit is contained in:
TÖRÖK Attila 2024-03-02 00:56:20 +01:00 committed by Nathan Adams
parent c2179e88db
commit 5b7c48e43d
2 changed files with 1 additions and 9 deletions

View File

@ -1,11 +1,3 @@
[target.'cfg(all())']
# NOTE that the web build overrides this setting in package.json via the RUSTFLAGS environment variable
rustflags = [
# 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",
]
[target.x86_64-pc-windows-msvc]
# Use the LLD linker, it should be faster than the default.
# See: https://github.com/rust-lang/rust/issues/71520

View File

@ -60,7 +60,7 @@ function cargoBuild({ profile, features, rustFlags }) {
});
}
function buildWasm(profile, filename, optimise, extensions, wasmSource) {
const rustFlags = ["--cfg=web_sys_unstable_apis", "-Aunknown_lints"];
const rustFlags = ["-Aunknown_lints"];
const wasmBindgenFlags = [];
const wasmOptFlags = [];
const flavor = extensions ? "extensions" : "vanilla";