diff --git a/imports.md b/imports.md index dbca06e..6900a88 100644 --- a/imports.md +++ b/imports.md @@ -2,13 +2,13 @@
wasi:io/error
wasi:io/poll
wasi:io/streams
wasi:io/error@0.2.0-rc-2023-11-10
wasi:io/poll@0.2.0-rc-2023-11-10
wasi:io/streams@0.2.0-rc-2023-11-10
resource error
A poll API intended to let users wait for I/O events on multiple handles at once.
WASI I/O is an I/O abstraction API which is currently focused on providing stream types.
In the future, the component model is expected to add built-in stream types; diff --git a/wit/error.wit b/wit/error.wit index 66519ef..31918ac 100644 --- a/wit/error.wit +++ b/wit/error.wit @@ -1,4 +1,4 @@ -package wasi:io; +package wasi:io@0.2.0-rc-2023-11-10; interface error { diff --git a/wit/poll.wit b/wit/poll.wit index 0829a7d..bddde3c 100644 --- a/wit/poll.wit +++ b/wit/poll.wit @@ -1,4 +1,4 @@ -package wasi:io; +package wasi:io@0.2.0-rc-2023-11-10; /// A poll API intended to let users wait for I/O events on multiple handles /// at once. diff --git a/wit/streams.wit b/wit/streams.wit index 643d7b7..e7e1b68 100644 --- a/wit/streams.wit +++ b/wit/streams.wit @@ -1,4 +1,4 @@ -package wasi:io; +package wasi:io@0.2.0-rc-2023-11-10; /// WASI I/O is an I/O abstraction API which is currently focused on providing /// stream types. diff --git a/wit/world.wit b/wit/world.wit index 05244a9..8243da2 100644 --- a/wit/world.wit +++ b/wit/world.wit @@ -1,4 +1,4 @@ -package wasi:io; +package wasi:io@0.2.0-rc-2023-11-10; world imports { import streams;