This PR overhauls how config.only_stable_features is translated to wasmparser::WasmFeatures.
Now, when only_stable_features == true, only stable features (finished proposals) will be enabled.
In default mode (only_stable_features == false), all supported features will be enabled.
Currently, only multi-memory feature is fully supported.
thread feature needs to be enabled because of a round_trip test.
The skipped tests in non-proposals spec-tests are all removed. Therefore, walrus with only_stable_features == true conforms the current WebAssembly standard.
WebAssemly features/proposals
This PR overhauls how
config.only_stable_features
is translated towasmparser::WasmFeatures
.Now, when
only_stable_features == true
, only stable features (finished proposals) will be enabled.In default mode (
only_stable_features == false
), all supported features will be enabled. Currently, onlymulti-memory
feature is fully supported.thread
feature needs to be enabled because of a round_trip test.The skipped tests in non-proposals spec-tests are all removed. Therefore,
walrus
withonly_stable_features == true
conforms the current WebAssembly standard.Other
Also upgrades dependencies in
fuzz-utils
crate.