Browse Source
* WASI: copy in the version 0.2.0 wits * wasmtime's wits: use versions 0.2.0 of wasi packages * bindgens and other fixed version strings: change 0.2.0-rc-etc to 0.2.0pull/7823/head
Pat Hickey
10 months ago
committed by
GitHub
55 changed files with 120 additions and 120 deletions
@ -1,6 +1,6 @@ |
|||||
// All of the same imports and exports available in the wasi:cli/command world |
// All of the same imports and exports available in the wasi:cli/command world |
||||
// with addition of HTTP proxy related imports: |
// with addition of HTTP proxy related imports: |
||||
world command-extended { |
world command-extended { |
||||
include wasi:cli/command@0.2.0-rc-2024-01-16; |
include wasi:cli/command@0.2.0; |
||||
import wasi:http/outgoing-handler@0.2.0-rc-2024-01-16; |
import wasi:http/outgoing-handler@0.2.0; |
||||
} |
} |
||||
|
@ -1,17 +1,17 @@ |
|||||
interface stdin { |
interface stdin { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{input-stream}; |
use wasi:io/streams@0.2.0.{input-stream}; |
||||
|
|
||||
get-stdin: func() -> input-stream; |
get-stdin: func() -> input-stream; |
||||
} |
} |
||||
|
|
||||
interface stdout { |
interface stdout { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{output-stream}; |
use wasi:io/streams@0.2.0.{output-stream}; |
||||
|
|
||||
get-stdout: func() -> output-stream; |
get-stdout: func() -> output-stream; |
||||
} |
} |
||||
|
|
||||
interface stderr { |
interface stderr { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{output-stream}; |
use wasi:io/streams@0.2.0.{output-stream}; |
||||
|
|
||||
get-stderr: func() -> output-stream; |
get-stderr: func() -> output-stream; |
||||
} |
} |
||||
|
@ -1,6 +1,6 @@ |
|||||
// All of the same imports and exports available in the wasi:cli/command world |
// All of the same imports and exports available in the wasi:cli/command world |
||||
// with addition of HTTP proxy related imports: |
// with addition of HTTP proxy related imports: |
||||
world command-extended { |
world command-extended { |
||||
include wasi:cli/command@0.2.0-rc-2024-01-16; |
include wasi:cli/command@0.2.0; |
||||
import wasi:http/outgoing-handler@0.2.0-rc-2024-01-16; |
import wasi:http/outgoing-handler@0.2.0; |
||||
} |
} |
||||
|
@ -1,17 +1,17 @@ |
|||||
interface stdin { |
interface stdin { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{input-stream}; |
use wasi:io/streams@0.2.0.{input-stream}; |
||||
|
|
||||
get-stdin: func() -> input-stream; |
get-stdin: func() -> input-stream; |
||||
} |
} |
||||
|
|
||||
interface stdout { |
interface stdout { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{output-stream}; |
use wasi:io/streams@0.2.0.{output-stream}; |
||||
|
|
||||
get-stdout: func() -> output-stream; |
get-stdout: func() -> output-stream; |
||||
} |
} |
||||
|
|
||||
interface stderr { |
interface stderr { |
||||
use wasi:io/streams@0.2.0-rc-2023-11-10.{output-stream}; |
use wasi:io/streams@0.2.0.{output-stream}; |
||||
|
|
||||
get-stderr: func() -> output-stream; |
get-stderr: func() -> output-stream; |
||||
} |
} |
||||
|
Loading…
Reference in new issue