Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/quickstart/develop-a-webassembly-component.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ world hello {
import wasi:keyvalue/atomics@0.2.0-draft;
// [!code ++]

export wasi:http/incoming-handler@0.2.6;
export wasi:http/incoming-handler@0.2.9;
Comment thread
ericgregory marked this conversation as resolved.
}
```
</TabItem>
Expand All @@ -198,7 +198,7 @@ world typescript-http-hello-world-hono {
import wasi:keyvalue/atomics@0.2.0-draft;
// [!code ++]

export wasi:http/incoming-handler@0.2.6;
export wasi:http/incoming-handler@0.2.9;
}
```

Expand Down Expand Up @@ -230,6 +230,12 @@ If you prefer working in a language that isn't listed here, let us know!
</TabItem>
</Tabs>

To fetch the new WIT dependencies, we also need to run:

```bash
wash wit fetch
```
Comment thread
ericgregory marked this conversation as resolved.

<Tabs groupId="lang" queryString>

<TabItem value="rust" label="Rust">
Expand Down
Loading