File tree Expand file tree Collapse file tree 12 files changed +3
-118
lines changed
crates/example-tests/tests Expand file tree Collapse file tree 12 files changed +3
-118
lines changed Original file line number Diff line number Diff line change @@ -344,10 +344,6 @@ jobs:
344
344
- run : rustup update --no-self-update stable && rustup default stable
345
345
- run : rustup target add wasm32-unknown-unknown
346
346
- run : curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
347
- - run : |
348
- curl -L https://github.com/WebAssembly/binaryen/releases/download/version_112/binaryen-version_112-x86_64-linux.tar.gz -sSf > binaryen-version_112-x86_64-linux.tar.gz
349
- tar -xz -f binaryen-version_112-x86_64-linux.tar.gz binaryen-version_112/bin/wasm2js
350
- echo "$PWD/binaryen-version_112/bin" >> $GITHUB_PATH
351
347
- run : |
352
348
cargo build -p wasm-bindgen-cli
353
349
ln -snf `pwd`/target/debug/wasm-bindgen $(dirname `which cargo`)/wasm-bindgen
Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ members = [
106
106
" examples/wasm-in-wasm" ,
107
107
" examples/wasm-in-wasm-imports" ,
108
108
" examples/wasm-in-web-worker" ,
109
- " examples/wasm2js" ,
110
109
" examples/weather_report" ,
111
110
" examples/webaudio" ,
112
111
" examples/webgl" ,
Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ shell_tests! {
39
39
raytrace_parallel = "raytrace-parallel" ,
40
40
#[ cfg( feature = "stable" ) ]
41
41
synchronous_instantiation = "synchronous-instantiation" ,
42
- #[ cfg( feature = "stable" ) ]
43
- wasm2js = "wasm2js" ,
44
42
#[ cfg( feature = "nightly" ) ]
45
43
#[ "RUSTUP_TOOLCHAIN" = "nightly" ]
46
44
wasm_audio_worklet = "wasm-audio-worklet" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
- [ Small Wasm files] ( ./examples/add.md )
11
11
- [ Without a Bundler] ( ./examples/without-a-bundler.md )
12
12
- [ Synchronous Instantiation] ( ./examples/synchronous-instantiation.md )
13
- - [ Converting WebAssembly to JS] ( ./examples/wasm2js.md )
14
13
- [ Importing functions from JS] ( ./examples/import-js.md )
15
14
- [ Working with ` char ` ] ( ./examples/char.md )
16
15
- [ js-sys: WebAssembly in WebAssembly] ( ./examples/wasm-in-wasm.md )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ also like to be aware of it!
15
15
16
16
* ** IE 11** - ` wasm-bindgen ` by default requires support for
17
17
` WebAssembly ` , but no version of IE currently supports ` WebAssembly ` . You can
18
- support IE by [ compiling Wasm files to JS using ` wasm2js ` ] [ w2js ] (you can [ see
19
- an example of doing this too] ( ../examples/wasm2js.html ) ). Note
20
- that at this time no bundler will do this by default, but we'd love to
21
- document plugins which do this if you are aware of one!
18
+ support IE by [ compiling Wasm files to JS using ` wasm2js ` ] [ w2js ] . Note that
19
+ at this time no bundler will do this by default, but we'd love to document
20
+ plugins which do this if you are aware of one!
22
21
23
22
If you find other incompatibilities please report them to us! We'd love to
24
23
either keep this list up-to-date or fix the underlying bugs :)
You can’t perform that action at this time.
0 commit comments