Build rten-simd docs for Wasm
The rten-simd documentation is missing docs for architecture-specific types except for x64. The Isa page for example is missing the structs for Isa types used on Arm and WASM.
I was reminded of this by https://internals.rust-lang.org/t/make-aarch64-apple-darwin-one-of-the-default-targets-for-docs-rs/23583.
The Arm issue has been resolved by https://blog.rust-lang.org/2025/10/16/docsrs-changed-default-targets/. Selecting the aarch64-apple-darwin platform in the "Platform" dropdown will now show Arm-specific docs. That leaves WASM.
On wasm32 it isn't sufficient to just build for the wasm32-unknown-unknown target. SIMD support requires the simd128 target feature is enabled.
Building the docs with:
cargo doc -p rten-simd --target wasm32-unknown-unknown
Does not list the Wasm32Isa struct under implementors of the Isa trait, which needs to be solved somehow.