diff --git a/imports.md b/imports.md index b8b1608..4bd886c 100644 --- a/imports.md +++ b/imports.md @@ -2,13 +2,13 @@
wasi:random/random
wasi:random/insecure
wasi:random/insecure-seed
wasi:random/random@0.2.0-rc-2023-11-10
wasi:random/insecure@0.2.0-rc-2023-11-10
wasi:random/insecure-seed@0.2.0-rc-2023-11-10
WASI Random is a random data API.
It is intended to be portable at least between Unix-family platforms and Windows.
@@ -41,7 +41,7 @@ represented as au64
.
-The insecure interface for insecure pseudo-random numbers.
It is intended to be portable at least between Unix-family platforms and Windows.
@@ -70,7 +70,7 @@ a long period. -The insecure-seed interface for seeding hash-map DoS resistance.
It is intended to be portable at least between Unix-family platforms and Windows.
diff --git a/wit/insecure-seed.wit b/wit/insecure-seed.wit index 139aed1..f76e87d 100644 --- a/wit/insecure-seed.wit +++ b/wit/insecure-seed.wit @@ -1,3 +1,4 @@ +package wasi:random@0.2.0-rc-2023-11-10; /// The insecure-seed interface for seeding hash-map DoS resistance. /// /// It is intended to be portable at least between Unix-family platforms and diff --git a/wit/insecure.wit b/wit/insecure.wit index 2ffd223..ec7b997 100644 --- a/wit/insecure.wit +++ b/wit/insecure.wit @@ -1,3 +1,4 @@ +package wasi:random@0.2.0-rc-2023-11-10; /// The insecure interface for insecure pseudo-random numbers. /// /// It is intended to be portable at least between Unix-family platforms and diff --git a/wit/random.wit b/wit/random.wit index 2c3c6a8..7a7dfa2 100644 --- a/wit/random.wit +++ b/wit/random.wit @@ -1,3 +1,4 @@ +package wasi:random@0.2.0-rc-2023-11-10; /// WASI Random is a random data API. /// /// It is intended to be portable at least between Unix-family platforms and diff --git a/wit/world.wit b/wit/world.wit index bb1dd7b..49e5743 100644 --- a/wit/world.wit +++ b/wit/world.wit @@ -1,4 +1,4 @@ -package wasi:random; +package wasi:random@0.2.0-rc-2023-11-10; world imports { import random;