Skip to content

Commit b8c35c2

Browse files
committed
wasmp1 support
1 parent 919bbd4 commit b8c35c2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

stateroom-cli/src/build_util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pub struct BuildResult {
101101

102102
pub fn do_build(config: &StateroomConfig) -> Result<BuildResult> {
103103
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)?;
105105

106106
let client_wasm = if let Some(client_config) = &config.client {
107107
tracing::info!("Building client");

stateroom-wasm/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ imported from the host environment (like `send_message`).
3535
## Compiling
3636

3737
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
3939
WebAssembly module.
4040

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
4242
and pass it as a target to `cargo build`:
4343

4444
```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
4747
```
4848

4949
## Embedding

0 commit comments

Comments
 (0)