experiment(spindle-ci): iter 9 — wasm-opt --all-features (replace bulk-memory only)
Iter 8 hit a fresh wasm-validator error after bulk-memory was unblocked:
'i32.trunc_sat_f32_u … all used features should be allowed'
(the nontrapping-fptoint feature, also default-on for wasm32 in Rust 1.82+).
Same pattern: Rust enables defaults; binaryen wasm-validator rejects.
Per utensil/forest#55, replace the explicit flag list with --all-features.
Updates wgputoy-wasm-opt-bulk-memory.patch's hunk: wasm-opt args become
['-O', '--all-features'] in the appended [package.metadata.wasm-pack.
profile.release] block. Verified clean roundtrip apply.