Skip to content

Commit f922a15

Browse files
authored
release: 0.2.1 (#613)
Add wit.toml
1 parent 74a1d20 commit f922a15

34 files changed

+101
-28
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.wasm

wasip2/cli/wit.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file is automatically generated by wit.
2+
# It is not intended for manual editing.
3+
version = 1

wasip2/cli/wit.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version = "0.2.1"
2+
3+
[dependencies]
4+
"wasi:io" = { path = "../io" }
5+
"wasi:clocks" = { path = "../clocks" }
6+
"wasi:filesystem" = { path = "../filesystem" }
7+
"wasi:sockets" = { path = "../sockets" }
8+
"wasi:random" = { path = "../random" }
9+
10+
[registries]
11+
default = "https://ghcr.io/webassembly"

wasip2/clocks/monotonic-clock.wit

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.0;
1+
package wasi:clocks@0.2.1;
22
/// WASI Monotonic Clock is a clock API intended to let users measure elapsed
33
/// time.
44
///
@@ -10,7 +10,7 @@ package wasi:[email protected];
1010
@since(version = 0.2.0)
1111
interface monotonic-clock {
1212
@since(version = 0.2.0)
13-
use wasi:io/poll@0.2.0.{pollable};
13+
use wasi:io/poll@0.2.1.{pollable};
1414

1515
/// An instant in time, in nanoseconds. An instant is relative to an
1616
/// unspecified initial value, and can only be compared to instances from
@@ -35,7 +35,7 @@ interface monotonic-clock {
3535
resolution: func() -> duration;
3636

3737
/// Create a `pollable` which will resolve once the specified instant
38-
/// has occured.
38+
/// has occurred.
3939
@since(version = 0.2.0)
4040
subscribe-instant: func(
4141
when: instant,

wasip2/clocks/timezone.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.0;
1+
package wasi:clocks@0.2.1;
22

33
@unstable(feature = clocks-timezone)
44
interface timezone {

wasip2/clocks/wall-clock.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.0;
1+
package wasi:clocks@0.2.1;
22
/// WASI Wall Clock is a clock API intended to let users query the current
33
/// time. The name "wall" makes an analogy to a "clock on the wall", which
44
/// is not necessarily monotonic as it may be reset.

wasip2/clocks/wit.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file is automatically generated by wit.
2+
# It is not intended for manual editing.
3+
version = 1

wasip2/clocks/wit.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version = "0.2.1"
2+
3+
[dependencies]
4+
"ricochet:io" = { path = "../io" }
5+
6+
[registries]
7+
default = "https://ghcr.io/"

wasip2/clocks/world.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:clocks@0.2.0;
1+
package wasi:clocks@0.2.1;
22

33
@since(version = 0.2.0)
44
world imports {

wasip2/filesystem/preopens.wit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasi:filesystem@0.2.0;
1+
package wasi:filesystem@0.2.1;
22

33
@since(version = 0.2.0)
44
interface preopens {

0 commit comments

Comments
 (0)