├── .github └── workflows │ └── main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── COPYRIGHT ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-Apache-2.0_WITH_LLVM-exception ├── LICENSE-MIT ├── ORG_CODE_OF_CONDUCT.md ├── README.md ├── SECURITY.md ├── crates └── wasi-preview1-component-adapter │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── byte-array-literals │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs │ ├── src │ ├── descriptors.rs │ ├── lib.rs │ └── macros.rs │ ├── verify │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs │ └── wit │ ├── command.wit │ ├── deps.lock │ ├── deps.toml │ ├── deps │ ├── clocks │ │ ├── monotonic-clock.wit │ │ ├── timezone.wit │ │ └── wall-clock.wit │ ├── filesystem │ │ └── filesystem.wit │ ├── http │ │ ├── incoming-handler.wit │ │ ├── outgoing-handler.wit │ │ └── types.wit │ ├── io │ │ └── streams.wit │ ├── logging │ │ └── handler.wit │ ├── poll │ │ └── poll.wit │ ├── preview │ │ ├── command-extended.wit │ │ ├── command.wit │ │ ├── proxy.wit │ │ └── reactor.wit │ ├── random │ │ └── random.wit │ ├── sockets │ │ ├── instance-network.wit │ │ ├── ip-name-lookup.wit │ │ ├── network.wit │ │ ├── tcp-create-socket.wit │ │ ├── tcp.wit │ │ ├── udp-create-socket.wit │ │ └── udp.wit │ └── wasi-cli-base │ │ ├── environment.wit │ │ ├── exit.wit │ │ └── preopens.wit │ └── reactor.wit ├── host ├── Cargo.toml ├── src │ └── main.rs └── tests │ ├── command.rs │ ├── reactor.rs │ ├── wasi_component.rs │ └── wasi_module.rs ├── test-programs ├── Cargo.toml ├── build.rs ├── command-tests │ ├── Cargo.toml │ └── src │ │ └── bin │ │ ├── args.rs │ │ ├── default_clocks.rs │ │ ├── directory_list.rs │ │ ├── env.rs │ │ ├── exit_default.rs │ │ ├── exit_failure.rs │ │ ├── exit_panic.rs │ │ ├── exit_success.rs │ │ ├── export_cabi_realloc.rs │ │ ├── file_append.rs │ │ ├── file_dir_sync.rs │ │ ├── file_read.rs │ │ ├── hello_stdout.rs │ │ ├── panic.rs │ │ ├── poll_stdin.rs │ │ ├── random.rs │ │ ├── read_only.rs │ │ ├── stdin.rs │ │ └── time.rs ├── reactor-tests │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── wit │ │ ├── deps.lock │ │ ├── deps.toml │ │ ├── deps │ │ ├── clocks │ │ │ ├── monotonic-clock.wit │ │ │ ├── timezone.wit │ │ │ └── wall-clock.wit │ │ ├── filesystem │ │ │ └── filesystem.wit │ │ ├── http │ │ │ ├── incoming-handler.wit │ │ │ ├── outgoing-handler.wit │ │ │ └── types.wit │ │ ├── io │ │ │ └── streams.wit │ │ ├── logging │ │ │ └── handler.wit │ │ ├── poll │ │ │ └── poll.wit │ │ ├── preview │ │ │ ├── command-extended.wit │ │ │ ├── command.wit │ │ │ ├── proxy.wit │ │ │ └── reactor.wit │ │ ├── random │ │ │ └── random.wit │ │ ├── sockets │ │ │ ├── instance-network.wit │ │ │ ├── ip-name-lookup.wit │ │ │ ├── network.wit │ │ │ ├── tcp-create-socket.wit │ │ │ ├── tcp.wit │ │ │ ├── udp-create-socket.wit │ │ │ └── udp.wit │ │ └── wasi-cli-base │ │ │ ├── environment.wit │ │ │ ├── exit.wit │ │ │ └── preopens.wit │ │ └── test-reactor.wit ├── src │ └── lib.rs └── wasi-tests │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── bin │ ├── big_random_buf.rs │ ├── clock_time_get.rs │ ├── close_preopen.rs │ ├── dangling_fd.rs │ ├── dangling_symlink.rs │ ├── dir_fd_op_failures.rs │ ├── directory_seek.rs │ ├── environment.rs │ ├── fd_advise.rs │ ├── fd_filestat_get.rs │ ├── fd_filestat_set.rs │ ├── fd_flags_set.rs │ ├── fd_readdir.rs │ ├── file_allocate.rs │ ├── file_pread_pwrite.rs │ ├── file_seek_tell.rs │ ├── file_truncation.rs │ ├── file_unbuffered_write.rs │ ├── interesting_paths.rs │ ├── isatty.rs │ ├── nofollow_errors.rs │ ├── overwrite_preopen.rs │ ├── path_exists.rs │ ├── path_filestat.rs │ ├── path_link.rs │ ├── path_open_create_existing.rs │ ├── path_open_dirfd_not_dir.rs │ ├── path_open_missing.rs │ ├── path_rename.rs │ ├── path_rename_dir_trailing_slashes.rs │ ├── path_rename_file_trailing_slashes.rs │ ├── path_symlink_trailing_slashes.rs │ ├── poll_oneoff_files.rs │ ├── poll_oneoff_stdio.rs │ ├── readlink.rs │ ├── remove_directory_trailing_slashes.rs │ ├── remove_nonempty_directory.rs │ ├── renumber.rs │ ├── sched_yield.rs │ ├── stdio.rs │ ├── symlink_create.rs │ ├── symlink_filestat.rs │ ├── symlink_loop.rs │ └── unlink_file_trailing_slashes.rs │ ├── config.rs │ └── lib.rs ├── wasi-common ├── Cargo.toml ├── LICENSE ├── README.md ├── src │ ├── clocks.rs │ ├── clocks │ │ └── host.rs │ ├── ctx.rs │ ├── error.rs │ ├── filesystem.rs │ ├── lib.rs │ ├── pipe.rs │ ├── preview1 │ │ └── mod.rs │ ├── preview2 │ │ ├── clocks.rs │ │ ├── default_outgoing_http.rs │ │ ├── env.rs │ │ ├── exit.rs │ │ ├── filesystem.rs │ │ ├── http_types.rs │ │ ├── io.rs │ │ ├── logging.rs │ │ ├── mod.rs │ │ ├── poll.rs │ │ └── random.rs │ ├── random.rs │ ├── sched.rs │ ├── sched │ │ ├── subscription.rs │ │ └── sync.rs │ ├── stdio.rs │ ├── stream.rs │ ├── table.rs │ └── wasi │ │ ├── command.rs │ │ ├── mod.rs │ │ └── proxy.rs └── witx │ ├── typenames.witx │ └── wasi_snapshot_preview1.witx ├── wasi-sockets ├── Cargo.toml ├── src │ ├── ip_name_lookup.rs │ ├── lib.rs │ ├── network.rs │ ├── network_impl.rs │ ├── tcp.rs │ ├── tcp_socket.rs │ ├── udp.rs │ ├── udp_socket.rs │ └── wasi.rs └── sync │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── net.rs ├── wasi ├── Cargo.toml ├── src │ ├── http_client.rs │ └── lib.rs └── wit │ ├── deps.toml │ ├── deps │ ├── cli │ │ ├── command.wit │ │ ├── environment.wit │ │ ├── exit.wit │ │ ├── run.wit │ │ ├── stdio.wit │ │ └── terminal.wit │ ├── clocks │ │ ├── monotonic-clock.wit │ │ ├── timezone.wit │ │ └── wall-clock.wit │ ├── filesystem │ │ ├── preopens.wit │ │ ├── types.wit │ │ └── world.wit │ ├── http │ │ ├── incoming-handler.wit │ │ ├── outgoing-handler.wit │ │ ├── proxy.wit │ │ └── types.wit │ ├── io │ │ └── streams.wit │ ├── logging │ │ └── logging.wit │ ├── poll │ │ └── poll.wit │ ├── preview │ │ ├── command-extended.wit │ │ ├── main.wit │ │ └── test.wit │ ├── random │ │ ├── insecure-seed.wit │ │ ├── insecure.wit │ │ └── random.wit │ └── sockets │ │ ├── instance-network.wit │ │ ├── ip-name-lookup.wit │ │ ├── network.wit │ │ ├── tcp-create-socket.wit │ │ ├── tcp.wit │ │ ├── udp-create-socket.wit │ │ └── udp.wit │ └── reactor.wit └── wit ├── command-extended.wit ├── command.wit ├── deps ├── clocks │ ├── monotonic-clock.wit │ ├── timezone.wit │ └── wall-clock.wit ├── filesystem │ └── filesystem.wit ├── http │ ├── incoming-handler.wit │ ├── outgoing-handler.wit │ └── types.wit ├── io │ └── streams.wit ├── logging │ └── handler.wit ├── poll │ └── poll.wit ├── random │ └── random.wit ├── sockets │ ├── instance-network.wit │ ├── ip-name-lookup.wit │ ├── network.wit │ ├── tcp-create-socket.wit │ ├── tcp.wit │ ├── udp-create-socket.wit │ └── udp.wit └── wasi-cli-base │ ├── environment.wit │ ├── exit.wit │ └── preopens.wit ├── proxy.wit └── reactor.wit /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-Apache-2.0_WITH_LLVM-exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/LICENSE-Apache-2.0_WITH_LLVM-exception -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /ORG_CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/ORG_CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/SECURITY.md -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/Cargo.lock -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/Cargo.toml -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/README.md -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/build.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/byte-array-literals/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/byte-array-literals/Cargo.toml -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/byte-array-literals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/byte-array-literals/README.md -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/byte-array-literals/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/byte-array-literals/src/lib.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/src/descriptors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/src/descriptors.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/src/lib.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/src/macros.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/verify/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/verify/Cargo.toml -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/verify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/verify/README.md -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/verify/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/verify/src/main.rs -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/command.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps.lock -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps.toml -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/filesystem/filesystem.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/filesystem/filesystem.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/http/incoming-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/http/incoming-handler.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/http/outgoing-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/http/outgoing-handler.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/http/types.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/logging/handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/logging/handler.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/poll/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/poll/poll.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/preview/command-extended.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/preview/command-extended.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/preview/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/preview/command.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/preview/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/preview/proxy.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/preview/reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/preview/reactor.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/random/random.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/environment.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/exit.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/deps/wasi-cli-base/preopens.wit -------------------------------------------------------------------------------- /crates/wasi-preview1-component-adapter/wit/reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/crates/wasi-preview1-component-adapter/wit/reactor.wit -------------------------------------------------------------------------------- /host/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/Cargo.toml -------------------------------------------------------------------------------- /host/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/src/main.rs -------------------------------------------------------------------------------- /host/tests/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/tests/command.rs -------------------------------------------------------------------------------- /host/tests/reactor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/tests/reactor.rs -------------------------------------------------------------------------------- /host/tests/wasi_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/tests/wasi_component.rs -------------------------------------------------------------------------------- /host/tests/wasi_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/host/tests/wasi_module.rs -------------------------------------------------------------------------------- /test-programs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/Cargo.toml -------------------------------------------------------------------------------- /test-programs/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/build.rs -------------------------------------------------------------------------------- /test-programs/command-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/Cargo.toml -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/args.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/default_clocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/default_clocks.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/directory_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/directory_list.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/env.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/exit_default.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/exit_failure.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | std::process::exit(1) 3 | } 4 | -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/exit_panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/exit_panic.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/exit_success.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | std::process::exit(0) 3 | } 4 | -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/export_cabi_realloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/export_cabi_realloc.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/file_append.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/file_append.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/file_dir_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/file_dir_sync.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/file_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/file_read.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/hello_stdout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/hello_stdout.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/panic.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | panic!("idk!!!"); 3 | } 4 | -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/poll_stdin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/poll_stdin.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/random.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/read_only.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/read_only.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/stdin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/stdin.rs -------------------------------------------------------------------------------- /test-programs/command-tests/src/bin/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/command-tests/src/bin/time.rs -------------------------------------------------------------------------------- /test-programs/reactor-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/Cargo.toml -------------------------------------------------------------------------------- /test-programs/reactor-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/src/lib.rs -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps.lock -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps.toml -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/filesystem/filesystem.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/filesystem/filesystem.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/http/incoming-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/http/incoming-handler.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/http/outgoing-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/http/outgoing-handler.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/http/types.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/logging/handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/logging/handler.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/poll/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/poll/poll.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/preview/command-extended.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/preview/command-extended.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/preview/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/preview/command.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/preview/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/preview/proxy.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/preview/reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/preview/reactor.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/random/random.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/wasi-cli-base/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/wasi-cli-base/environment.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/wasi-cli-base/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/wasi-cli-base/exit.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/deps/wasi-cli-base/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/deps/wasi-cli-base/preopens.wit -------------------------------------------------------------------------------- /test-programs/reactor-tests/wit/test-reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/reactor-tests/wit/test-reactor.wit -------------------------------------------------------------------------------- /test-programs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/src/lib.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/Cargo.lock -------------------------------------------------------------------------------- /test-programs/wasi-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/Cargo.toml -------------------------------------------------------------------------------- /test-programs/wasi-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/README.md -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/big_random_buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/big_random_buf.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/clock_time_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/clock_time_get.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/close_preopen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/close_preopen.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/dangling_fd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/dangling_fd.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/dangling_symlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/dangling_symlink.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/dir_fd_op_failures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/dir_fd_op_failures.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/directory_seek.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/directory_seek.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/environment.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/fd_advise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/fd_advise.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/fd_filestat_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/fd_filestat_get.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/fd_filestat_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/fd_filestat_set.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/fd_flags_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/fd_flags_set.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/fd_readdir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/fd_readdir.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/file_allocate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/file_allocate.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/file_pread_pwrite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/file_pread_pwrite.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/file_seek_tell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/file_seek_tell.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/file_truncation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/file_truncation.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/file_unbuffered_write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/file_unbuffered_write.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/interesting_paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/interesting_paths.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/isatty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/isatty.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/nofollow_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/nofollow_errors.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/overwrite_preopen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/overwrite_preopen.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_exists.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_filestat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_filestat.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_link.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_open_create_existing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_open_create_existing.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_open_dirfd_not_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_open_dirfd_not_dir.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_open_missing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_open_missing.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_rename.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_rename_dir_trailing_slashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_rename_dir_trailing_slashes.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_rename_file_trailing_slashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_rename_file_trailing_slashes.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/path_symlink_trailing_slashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/path_symlink_trailing_slashes.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/poll_oneoff_files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/poll_oneoff_files.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/poll_oneoff_stdio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/poll_oneoff_stdio.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/readlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/readlink.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/remove_directory_trailing_slashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/remove_directory_trailing_slashes.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/remove_nonempty_directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/remove_nonempty_directory.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/renumber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/renumber.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/sched_yield.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/sched_yield.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/stdio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/stdio.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/symlink_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/symlink_create.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/symlink_filestat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/symlink_filestat.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/symlink_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/symlink_loop.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/bin/unlink_file_trailing_slashes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/bin/unlink_file_trailing_slashes.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/config.rs -------------------------------------------------------------------------------- /test-programs/wasi-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/test-programs/wasi-tests/src/lib.rs -------------------------------------------------------------------------------- /wasi-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/Cargo.toml -------------------------------------------------------------------------------- /wasi-common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/LICENSE -------------------------------------------------------------------------------- /wasi-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/README.md -------------------------------------------------------------------------------- /wasi-common/src/clocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/clocks.rs -------------------------------------------------------------------------------- /wasi-common/src/clocks/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/clocks/host.rs -------------------------------------------------------------------------------- /wasi-common/src/ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/ctx.rs -------------------------------------------------------------------------------- /wasi-common/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/error.rs -------------------------------------------------------------------------------- /wasi-common/src/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/filesystem.rs -------------------------------------------------------------------------------- /wasi-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/lib.rs -------------------------------------------------------------------------------- /wasi-common/src/pipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/pipe.rs -------------------------------------------------------------------------------- /wasi-common/src/preview1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview1/mod.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/clocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/clocks.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/default_outgoing_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/default_outgoing_http.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/env.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/exit.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/filesystem.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/http_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/http_types.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/io.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/logging.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/mod.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/poll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/poll.rs -------------------------------------------------------------------------------- /wasi-common/src/preview2/random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/preview2/random.rs -------------------------------------------------------------------------------- /wasi-common/src/random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/random.rs -------------------------------------------------------------------------------- /wasi-common/src/sched.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/sched.rs -------------------------------------------------------------------------------- /wasi-common/src/sched/subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/sched/subscription.rs -------------------------------------------------------------------------------- /wasi-common/src/sched/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/sched/sync.rs -------------------------------------------------------------------------------- /wasi-common/src/stdio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/stdio.rs -------------------------------------------------------------------------------- /wasi-common/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/stream.rs -------------------------------------------------------------------------------- /wasi-common/src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/table.rs -------------------------------------------------------------------------------- /wasi-common/src/wasi/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/wasi/command.rs -------------------------------------------------------------------------------- /wasi-common/src/wasi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/wasi/mod.rs -------------------------------------------------------------------------------- /wasi-common/src/wasi/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/src/wasi/proxy.rs -------------------------------------------------------------------------------- /wasi-common/witx/typenames.witx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/witx/typenames.witx -------------------------------------------------------------------------------- /wasi-common/witx/wasi_snapshot_preview1.witx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-common/witx/wasi_snapshot_preview1.witx -------------------------------------------------------------------------------- /wasi-sockets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/Cargo.toml -------------------------------------------------------------------------------- /wasi-sockets/src/ip_name_lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/ip_name_lookup.rs -------------------------------------------------------------------------------- /wasi-sockets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/lib.rs -------------------------------------------------------------------------------- /wasi-sockets/src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/network.rs -------------------------------------------------------------------------------- /wasi-sockets/src/network_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/network_impl.rs -------------------------------------------------------------------------------- /wasi-sockets/src/tcp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/tcp.rs -------------------------------------------------------------------------------- /wasi-sockets/src/tcp_socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/tcp_socket.rs -------------------------------------------------------------------------------- /wasi-sockets/src/udp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/udp.rs -------------------------------------------------------------------------------- /wasi-sockets/src/udp_socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/udp_socket.rs -------------------------------------------------------------------------------- /wasi-sockets/src/wasi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/src/wasi.rs -------------------------------------------------------------------------------- /wasi-sockets/sync/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/sync/Cargo.toml -------------------------------------------------------------------------------- /wasi-sockets/sync/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/sync/src/lib.rs -------------------------------------------------------------------------------- /wasi-sockets/sync/src/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi-sockets/sync/src/net.rs -------------------------------------------------------------------------------- /wasi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/Cargo.toml -------------------------------------------------------------------------------- /wasi/src/http_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/src/http_client.rs -------------------------------------------------------------------------------- /wasi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/src/lib.rs -------------------------------------------------------------------------------- /wasi/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps.toml -------------------------------------------------------------------------------- /wasi/wit/deps/cli/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/command.wit -------------------------------------------------------------------------------- /wasi/wit/deps/cli/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/environment.wit -------------------------------------------------------------------------------- /wasi/wit/deps/cli/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/exit.wit -------------------------------------------------------------------------------- /wasi/wit/deps/cli/run.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/run.wit -------------------------------------------------------------------------------- /wasi/wit/deps/cli/stdio.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/stdio.wit -------------------------------------------------------------------------------- /wasi/wit/deps/cli/terminal.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/cli/terminal.wit -------------------------------------------------------------------------------- /wasi/wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /wasi/wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /wasi/wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /wasi/wit/deps/filesystem/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/filesystem/preopens.wit -------------------------------------------------------------------------------- /wasi/wit/deps/filesystem/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/filesystem/types.wit -------------------------------------------------------------------------------- /wasi/wit/deps/filesystem/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/filesystem/world.wit -------------------------------------------------------------------------------- /wasi/wit/deps/http/incoming-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/http/incoming-handler.wit -------------------------------------------------------------------------------- /wasi/wit/deps/http/outgoing-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/http/outgoing-handler.wit -------------------------------------------------------------------------------- /wasi/wit/deps/http/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/http/proxy.wit -------------------------------------------------------------------------------- /wasi/wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/http/types.wit -------------------------------------------------------------------------------- /wasi/wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /wasi/wit/deps/logging/logging.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/logging/logging.wit -------------------------------------------------------------------------------- /wasi/wit/deps/poll/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/poll/poll.wit -------------------------------------------------------------------------------- /wasi/wit/deps/preview/command-extended.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/preview/command-extended.wit -------------------------------------------------------------------------------- /wasi/wit/deps/preview/main.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/preview/main.wit -------------------------------------------------------------------------------- /wasi/wit/deps/preview/test.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/preview/test.wit -------------------------------------------------------------------------------- /wasi/wit/deps/random/insecure-seed.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/random/insecure-seed.wit -------------------------------------------------------------------------------- /wasi/wit/deps/random/insecure.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/random/insecure.wit -------------------------------------------------------------------------------- /wasi/wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/random/random.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /wasi/wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /wasi/wit/reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wasi/wit/reactor.wit -------------------------------------------------------------------------------- /wit/command-extended.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/command-extended.wit -------------------------------------------------------------------------------- /wit/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/command.wit -------------------------------------------------------------------------------- /wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /wit/deps/filesystem/filesystem.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/filesystem/filesystem.wit -------------------------------------------------------------------------------- /wit/deps/http/incoming-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/http/incoming-handler.wit -------------------------------------------------------------------------------- /wit/deps/http/outgoing-handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/http/outgoing-handler.wit -------------------------------------------------------------------------------- /wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/http/types.wit -------------------------------------------------------------------------------- /wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /wit/deps/logging/handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/logging/handler.wit -------------------------------------------------------------------------------- /wit/deps/poll/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/poll/poll.wit -------------------------------------------------------------------------------- /wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/random/random.wit -------------------------------------------------------------------------------- /wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /wit/deps/wasi-cli-base/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/wasi-cli-base/environment.wit -------------------------------------------------------------------------------- /wit/deps/wasi-cli-base/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/wasi-cli-base/exit.wit -------------------------------------------------------------------------------- /wit/deps/wasi-cli-base/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/deps/wasi-cli-base/preopens.wit -------------------------------------------------------------------------------- /wit/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/proxy.wit -------------------------------------------------------------------------------- /wit/reactor.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/preview2-prototyping/HEAD/wit/reactor.wit --------------------------------------------------------------------------------