File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ jobs:
263263 run : |
264264 cargo test --doc --workspace --locked --all-features --no-fail-fast --target wasm32-wasip1 \
265265 --config 'target.wasm32-wasip1.rustflags = "-Ctarget-feature=+simd128"' \
266+ --config 'target.wasm32-wasip1.rustdocflags = "-Ctarget-feature=+simd128"' \
266267 --config 'target.wasm32-wasip1.runner = "wasmtime"'
267268
268269
Original file line number Diff line number Diff line change 2020//! To call a function with the best available target features and get the associated `Simd`
2121//! implementation, use the [`dispatch!()`] macro:
2222//!
23- //! ```rust,ignore
23+ //! ```rust
2424//! use fearless_simd::{Level, Simd, dispatch};
2525//!
2626//! #[inline(always)]
Original file line number Diff line number Diff line change 3131///
3232/// # Example
3333///
34- /// ```rust,ignore
34+ /// ```rust
3535/// use fearless_simd::{Level, Simd, dispatch};
3636///
3737/// #[inline(always)]
Original file line number Diff line number Diff line change @@ -24,5 +24,8 @@ cargo install --locked --features simd wasmi_cli
2424Run WebAssembly tests with:
2525
2626``` sh
27- cargo test --target wasm32-wasip1 --config ' target.wasm32-wasip1.rustflags = "-Ctarget-feature=+simd128"' --config ' target.wasm32-wasip1.runner = "wasmtime"' # or "wasmi_cli" if you installed that
27+ cargo test --target wasm32-wasip1 \
28+ --config ' target.wasm32-wasip1.rustflags = "-Ctarget-feature=+simd128"' \
29+ --config ' target.wasm32-wasip1.rustdocflags = "-Ctarget-feature=+simd128"' \
30+ --config ' target.wasm32-wasip1.runner = "wasmtime"' # or "wasmi_cli" if you installed that
2831```
You can’t perform that action at this time.
0 commit comments