File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ pub struct BuildResult {
101
101
102
102
pub fn do_build ( config : & StateroomConfig ) -> Result < BuildResult > {
103
103
tracing:: info!( "Building service" ) ;
104
- let server_wasm = run_cargo_build_command ( & config. service . package , "wasm32-wasi " , true ) ?;
104
+ let server_wasm = run_cargo_build_command ( & config. service . package , "wasm32-wasip1 " , true ) ?;
105
105
106
106
let client_wasm = if let Some ( client_config) = & config. client {
107
107
tracing:: info!( "Building client" ) ;
Original file line number Diff line number Diff line change @@ -35,15 +35,15 @@ imported from the host environment (like `send_message`).
35
35
## Compiling
36
36
37
37
If you are using the Stateroom command-line interface, ` stateroom dev ` will build the
38
- current crate using the ` wasm32-wasi ` target, and then load and serve the generated
38
+ current crate using the ` wasm32-wasip1 ` target, and then load and serve the generated
39
39
WebAssembly module.
40
40
41
- If you would like to build it manually, make sure you have the ` wasm32-wasi ` target installed
41
+ If you would like to build it manually, make sure you have the ` wasm32-wasip1 ` target installed
42
42
and pass it as a target to ` cargo build ` :
43
43
44
44
``` bash
45
- $ rustup target add wasm32-wasi
46
- $ cargo build --release --target=wasm32-wasi
45
+ $ rustup target add wasm32-wasip1
46
+ $ cargo build --release --target=wasm32-wasip1
47
47
```
48
48
49
49
## Embedding
You can’t perform that action at this time.
0 commit comments