wasmtime 17.0.1 → 18.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +114 -142
- data/ext/Cargo.toml +8 -9
- data/ext/cargo-vendor/cranelift-bforest-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.105.3/Cargo.toml +40 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/Cargo.toml +175 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/build.rs +395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/domtree.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph.rs +705 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit.rs +4395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit_tests.rs +5525 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst.isle +5215 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/lower.isle +4742 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/mod.rs +233 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/machinst/reg.rs +562 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/README.md +81 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/extends.isle +91 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/icmp.isle +197 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/prelude_opt.isle +122 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/verifier/mod.rs +2033 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.105.3/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.105.3/Cargo.toml +50 -0
- data/ext/cargo-vendor/cranelift-frontend-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.105.3/Cargo.toml +68 -0
- data/ext/cargo-vendor/cranelift-isle-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.105.3/Cargo.toml +46 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/src/lib.rs +188 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/Cargo.toml +106 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/code_translator.rs +3681 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/dummy.rs +953 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/spec.rs +953 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/sections_translator.rs +409 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/translation_utils.rs +91 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall-simd.wat +7 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall.wat +7 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/unreachable_code.wat +77 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/Cargo.toml +49 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/Cargo.toml +54 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/src/lib.rs +37 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/src/symbol.rs +31 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/Cargo.toml +62 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/src/bindings.rs +250 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/src/rb_config.rs +810 -0
- data/ext/cargo-vendor/tokio-1.36.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.36.0/CHANGELOG.md +3250 -0
- data/ext/cargo-vendor/tokio-1.36.0/Cargo.toml +237 -0
- data/ext/cargo-vendor/tokio-1.36.0/README.md +249 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/doc/os.rs +68 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/fs/open_options/mock_open_options.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/future/mod.rs +32 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/async_fd.rs +1259 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/bsd/poll_aio.rs +197 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/interest.rs +345 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/join.rs +117 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/mod.rs +292 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/poll_evented.rs +277 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/stdio_common.rs +221 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/async_buf_read_ext.rs +351 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_reader.rs +311 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_writer.rs +310 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/chain.rs +144 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/copy.rs +290 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/empty.rs +150 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/flush.rs +47 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/mod.rs +111 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_exact.rs +69 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_line.rs +119 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/repeat.rs +75 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/shutdown.rs +46 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/sink.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/lib.rs +694 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/loom/std/atomic_u64.rs +19 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/macros/cfg.rs +587 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/macros/try_join.rs +218 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/mod.rs +57 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/listener.rs +451 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/socket.rs +854 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/stream.rs +1424 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/udp.rs +2046 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/datagram/socket.rs +1593 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/listener.rs +221 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/mod.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/pipe.rs +1442 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/socket.rs +271 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/stream.rs +1062 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/windows/named_pipe.rs +2690 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/mod.rs +1678 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/mod.rs +375 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/pidfd_reaper.rs +317 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/blocking/pool.rs +603 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/builder.rs +1335 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/context.rs +193 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/handle.rs +632 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/driver.rs +273 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/scheduled_io.rs +598 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/park.rs +339 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/current_thread/mod.rs +758 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/park.rs +232 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/queue.rs +608 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/worker.rs +1234 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/queue.rs +595 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1597 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/core.rs +494 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/harness.rs +517 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/join.rs +370 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/list.rs +338 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/mod.rs +526 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/state.rs +616 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/trace/mod.rs +358 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/loom_local.rs +47 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/task_combinations.rs +488 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/entry.rs +646 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/source.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/wheel/level.rs +274 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/ctrl_c.rs +62 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/mod.rs +98 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/registry.rs +281 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/unix.rs +530 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/windows.rs +524 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/batch_semaphore.rs +752 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/broadcast.rs +1542 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/bounded.rs +1692 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/error.rs +149 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/mod.rs +124 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/unbounded.rs +603 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mutex.rs +1395 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/oneshot.rs +1390 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/rwlock.rs +1119 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/semaphore.rs +977 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/watch.rs +1399 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/join_set.rs +637 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/local.rs +1233 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/mod.rs +373 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/idle_notified_set.rs +509 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/rand.rs +95 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/sharded_list.rs +149 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_async_fd.rs +836 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy.rs +102 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy_bidirectional.rs +165 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_join.rs +83 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_panic.rs +177 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_poll_aio.rs +338 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_repeat.rs +18 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_sink.rs +44 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs +21 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/macros_test.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/macros_try_join.rs +185 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_named_pipe.rs +399 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_panic.rs +189 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_unix_pipe.rs +534 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/process_change_of_runtime.rs +34 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/process_issue_2174.rs +46 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_basic.rs +458 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_handle.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_panic.rs +78 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_time_start_paused.rs +14 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/signal_panic.rs +30 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_mpsc.rs +1020 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_panic.rs +198 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_watch.rs +334 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_id.rs +302 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_join_set.rs +306 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_local.rs +119 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_panic.rs +123 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/tcp_into_split.rs +131 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/time_panic.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/time_pause.rs +332 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/uds_socket.rs +118 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/Cargo.toml +223 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/lib.rs +193 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/clocks.rs +41 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/dir.rs +462 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/file.rs +248 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/mod.rs +140 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/net.rs +400 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/unix.rs +82 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/windows.rs +221 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched.rs +40 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/stdio.rs +197 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/dir.rs +221 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/file.rs +244 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/mod.rs +137 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/net.rs +6 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/unix.rs +96 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/windows.rs +15 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched.rs +35 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/stdio.rs +1 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/async_.rs +289 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/main.rs +21 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/sync.rs +275 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/names.rs +149 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/code.rs +3444 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/types.rs +673 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/builder.rs +455 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/canonicals.rs +159 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/exports.rs +124 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/imports.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/instances.rs +200 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/code.rs +3430 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/data.rs +185 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/elements.rs +220 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/exports.rs +98 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/globals.rs +101 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/imports.rs +156 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/memories.rs +111 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/producers.rs +180 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tables.rs +116 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tags.rs +104 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/types.rs +673 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/lib.rs +215 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/raw.rs +30 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.lock +633 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.toml +69 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/README.md +28 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/benches/benchmark.rs +349 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/binary_reader.rs +1850 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/lib.rs +766 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/limits.rs +64 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/branch_hinting.rs +59 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/dylink0.rs +109 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/linking.rs +449 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/names.rs +156 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/operators.rs +411 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/types.rs +1680 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core.rs +41 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/resources.rs +235 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/component.rs +3238 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core/canonical.rs +233 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core.rs +1400 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/func.rs +338 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/names.rs +929 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/operators.rs +4074 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/types.rs +4449 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator.rs +1619 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/Cargo.toml +45 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/src/lib.rs +3139 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/src/operator.rs +1110 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/tests/all.rs +278 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/Cargo.toml +249 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/compile.rs +835 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/config.rs +2513 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/engine/serialization.rs +778 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/engine.rs +728 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/lib.rs +444 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/jitdump.rs +66 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/perfmap.rs +47 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/vtune.rs +80 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent.rs +105 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code.rs +102 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code_memory.rs +335 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/component.rs +458 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func/host.rs +456 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func.rs +721 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/instance.rs +815 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/linker.rs +600 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/resource_table.rs +350 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/types.rs +928 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/values.rs +1274 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/debug.rs +165 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func/typed.rs +638 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func.rs +2391 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instance.rs +985 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instantiate.rs +433 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/linker.rs +1479 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/memory.rs +998 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module/registry.rs +360 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module.rs +1335 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/profiling.rs +218 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/store.rs +2389 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/func.rs +135 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/memory.rs +269 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/table.rs +20 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline.rs +77 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trap.rs +644 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/type_registry.rs +236 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types/matching.rs +312 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types.rs +581 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime.rs +109 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-18.0.3/Cargo.toml +81 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/build.rs +5 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/src/bindgen.rs +396 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/tests/codegen/wat.wit +10 -0
- data/ext/cargo-vendor/wasmtime-component-util-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-18.0.3/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/Cargo.toml +113 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/builder.rs +127 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler/component.rs +960 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler.rs +1317 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/debug/transform/simulate.rs +411 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/func_environ.rs +2756 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/lib.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/Cargo.toml +71 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/src/isa_builder.rs +104 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.lock +761 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.toml +140 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/artifacts.rs +45 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/dfg.rs +690 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/info.rs +594 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate/inline.rs +1334 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate.rs +953 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/types.rs +1933 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component.rs +97 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/lib.rs +66 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module.rs +1075 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_artifacts.rs +378 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_environ.rs +894 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_types.rs +120 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/tunables.rs +140 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/vmoffsets.rs +919 -0
- data/ext/cargo-vendor/wasmtime-fiber-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-18.0.3/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/component.rs +855 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling/memory_pool.rs +997 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling.rs +658 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator.rs +712 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance.rs +1485 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/lib.rs +264 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/enabled.rs +208 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/pkru.rs +104 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/sys/unix/signals.rs +402 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/vmcontext.rs +1202 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/Cargo.toml +36 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/src/lib.rs +509 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/Cargo.toml +254 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/lib.rs +103 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ctx.rs +337 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/error.rs +111 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/filesystem.rs +369 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/clocks.rs +103 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/filesystem.rs +1081 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/instance_network.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/io.rs +366 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/network.rs +625 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/random.rs +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp.rs +605 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp_create_socket.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp.rs +530 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp_create_socket.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ip_name_lookup.rs +125 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/pipe.rs +826 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/poll.rs +175 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview0.rs +870 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview1.rs +2361 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/random.rs +58 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/stdio.rs +259 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/write_stream.rs +203 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/api.rs +211 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/main.rs +106 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/poll.wit +41 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/streams.wit +262 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/tcp.wit +353 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/udp.wit +266 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/Cargo.toml +77 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/builder.rs +65 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/compiler.rs +283 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/Cargo.toml +41 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/src/lib.rs +2095 -0
- data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/Cargo.toml +29 -0
- data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +59 -0
- data/ext/cargo-vendor/wast-201.0.0/src/component/component.rs +321 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +1365 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/custom.rs +393 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +1993 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +281 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/module.rs +218 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +233 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +763 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +289 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +861 -0
- data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +1442 -0
- data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +542 -0
- data/ext/cargo-vendor/wast-201.0.0/src/names.rs +89 -0
- data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +1374 -0
- data/ext/cargo-vendor/wast-201.0.0/src/token.rs +718 -0
- data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +63 -0
- data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +33 -0
- data/ext/cargo-vendor/wat-1.201.0/src/lib.rs +401 -0
- data/ext/cargo-vendor/wiggle-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-18.0.3/Cargo.toml +122 -0
- data/ext/cargo-vendor/wiggle-18.0.3/src/lib.rs +1199 -0
- data/ext/cargo-vendor/wiggle-generate-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-18.0.3/Cargo.toml +65 -0
- data/ext/cargo-vendor/wiggle-macro-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-18.0.3/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/Cargo.toml +77 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/local.rs +81 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/mod.rs +645 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/builtin.rs +268 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/call.rs +361 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/context.rs +530 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/control.rs +972 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/env.rs +257 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/mod.rs +441 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/frame/mod.rs +221 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/abi.rs +313 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/masm.rs +519 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/mod.rs +145 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/mod.rs +232 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/reg.rs +86 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/abi.rs +531 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/asm.rs +1277 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/masm.rs +1168 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/mod.rs +184 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/masm.rs +776 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/stack.rs +439 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/trampoline.rs +733 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/visitor.rs +1848 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/Cargo.toml +71 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/lex.rs +748 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/resolve.rs +1428 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast.rs +1349 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/resolve.rs +2104 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/comments.wit.json +49 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap1.wit.json +39 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap2.wit.json +41 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit.json +47 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit +60 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit.json +774 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/union-fuzz-2.wit.json +72 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/wasi.wit.json +539 -0
- data/ext/src/ruby_api/config/tracked_memory_creator.rs +1 -1
- data/ext/src/ruby_api/store.rs +1 -1
- data/ext/src/ruby_api/wasi_ctx.rs +1 -1
- data/ext/src/ruby_api/wasi_ctx_builder.rs +2 -2
- data/lib/wasmtime/version.rb +1 -1
- metadata +2127 -2071
- data/ext/cargo-vendor/cranelift-bforest-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.104.1/Cargo.toml +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/Cargo.toml +0 -175
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/build.rs +0 -392
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/egraph/domtree.rs +0 -69
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/egraph.rs +0 -704
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst/emit.rs +0 -4410
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst/emit_tests.rs +0 -5525
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst.isle +0 -5202
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/lower.isle +0 -4744
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/mod.rs +0 -223
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/machinst/reg.rs +0 -561
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/README.md +0 -87
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/extends.isle +0 -124
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/icmp.isle +0 -197
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/prelude_opt.isle +0 -134
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/verifier/mod.rs +0 -2041
- data/ext/cargo-vendor/cranelift-codegen-meta-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.104.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-codegen-shared-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.104.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.104.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.104.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/cranelift-frontend-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.104.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/cranelift-isle-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.104.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/cranelift-native-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.104.1/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-native-0.104.1/src/lib.rs +0 -184
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/Cargo.toml +0 -106
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/code_translator.rs +0 -3646
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/environ/dummy.rs +0 -953
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/environ/spec.rs +0 -952
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/sections_translator.rs +0 -408
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/translation_utils.rs +0 -89
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/icall-simd.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/icall.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/unreachable_code.wat +0 -77
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/Cargo.toml +0 -49
- data/ext/cargo-vendor/rb-sys-0.9.86/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-0.9.86/Cargo.toml +0 -54
- data/ext/cargo-vendor/rb-sys-0.9.86/src/lib.rs +0 -37
- data/ext/cargo-vendor/rb-sys-build-0.9.86/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-build-0.9.86/Cargo.toml +0 -62
- data/ext/cargo-vendor/rb-sys-build-0.9.86/src/bindings.rs +0 -250
- data/ext/cargo-vendor/rb-sys-build-0.9.86/src/rb_config.rs +0 -807
- data/ext/cargo-vendor/tokio-1.35.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.35.1/CHANGELOG.md +0 -3191
- data/ext/cargo-vendor/tokio-1.35.1/Cargo.toml +0 -230
- data/ext/cargo-vendor/tokio-1.35.1/README.md +0 -249
- data/ext/cargo-vendor/tokio-1.35.1/external-types.toml +0 -11
- data/ext/cargo-vendor/tokio-1.35.1/src/doc/os.rs +0 -68
- data/ext/cargo-vendor/tokio-1.35.1/src/fs/open_options/mock_open_options.rs +0 -39
- data/ext/cargo-vendor/tokio-1.35.1/src/future/mod.rs +0 -31
- data/ext/cargo-vendor/tokio-1.35.1/src/io/async_fd.rs +0 -1243
- data/ext/cargo-vendor/tokio-1.35.1/src/io/bsd/poll_aio.rs +0 -197
- data/ext/cargo-vendor/tokio-1.35.1/src/io/interest.rs +0 -345
- data/ext/cargo-vendor/tokio-1.35.1/src/io/mod.rs +0 -290
- data/ext/cargo-vendor/tokio-1.35.1/src/io/poll_evented.rs +0 -258
- data/ext/cargo-vendor/tokio-1.35.1/src/io/stdio_common.rs +0 -221
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/async_buf_read_ext.rs +0 -351
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_reader.rs +0 -311
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_writer.rs +0 -310
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/chain.rs +0 -144
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/copy.rs +0 -219
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/empty.rs +0 -102
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/flush.rs +0 -46
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/mod.rs +0 -97
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_exact.rs +0 -69
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_line.rs +0 -119
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/repeat.rs +0 -72
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/shutdown.rs +0 -46
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/sink.rs +0 -87
- data/ext/cargo-vendor/tokio-1.35.1/src/lib.rs +0 -695
- data/ext/cargo-vendor/tokio-1.35.1/src/loom/std/atomic_u64.rs +0 -19
- data/ext/cargo-vendor/tokio-1.35.1/src/macros/cfg.rs +0 -575
- data/ext/cargo-vendor/tokio-1.35.1/src/macros/try_join.rs +0 -218
- data/ext/cargo-vendor/tokio-1.35.1/src/net/mod.rs +0 -56
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/listener.rs +0 -451
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/socket.rs +0 -846
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/stream.rs +0 -1424
- data/ext/cargo-vendor/tokio-1.35.1/src/net/udp.rs +0 -2046
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/datagram/socket.rs +0 -1583
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/listener.rs +0 -216
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/mod.rs +0 -37
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/pipe.rs +0 -1217
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/stream.rs +0 -1044
- data/ext/cargo-vendor/tokio-1.35.1/src/net/windows/named_pipe.rs +0 -2690
- data/ext/cargo-vendor/tokio-1.35.1/src/process/mod.rs +0 -1678
- data/ext/cargo-vendor/tokio-1.35.1/src/process/unix/mod.rs +0 -344
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/blocking/pool.rs +0 -603
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/builder.rs +0 -1335
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/context.rs +0 -193
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/handle.rs +0 -632
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/driver.rs +0 -273
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/scheduled_io.rs +0 -598
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/park.rs +0 -340
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/current_thread/mod.rs +0 -764
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/park.rs +0 -232
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/queue.rs +0 -608
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/stats.rs +0 -140
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/worker.rs +0 -1234
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -595
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1597
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/core.rs +0 -494
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/harness.rs +0 -517
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/join.rs +0 -370
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/list.rs +0 -338
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/mod.rs +0 -526
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/state.rs +0 -619
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/trace/mod.rs +0 -358
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/loom_local.rs +0 -47
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/task_combinations.rs +0 -488
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/entry.rs +0 -646
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/source.rs +0 -39
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/wheel/level.rs +0 -274
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/ctrl_c.rs +0 -62
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/mod.rs +0 -98
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/registry.rs +0 -283
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/unix.rs +0 -530
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/windows.rs +0 -524
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/batch_semaphore.rs +0 -752
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/broadcast.rs +0 -1515
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/bounded.rs +0 -1399
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/error.rs +0 -149
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/mod.rs +0 -122
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/unbounded.rs +0 -526
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mutex.rs +0 -1391
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/oneshot.rs +0 -1390
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/rwlock.rs +0 -1119
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/semaphore.rs +0 -977
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/watch.rs +0 -1388
- data/ext/cargo-vendor/tokio-1.35.1/src/task/join_set.rs +0 -584
- data/ext/cargo-vendor/tokio-1.35.1/src/task/local.rs +0 -1233
- data/ext/cargo-vendor/tokio-1.35.1/src/task/mod.rs +0 -373
- data/ext/cargo-vendor/tokio-1.35.1/src/util/idle_notified_set.rs +0 -481
- data/ext/cargo-vendor/tokio-1.35.1/src/util/rand.rs +0 -95
- data/ext/cargo-vendor/tokio-1.35.1/src/util/sharded_list.rs +0 -149
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_async_fd.rs +0 -836
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy.rs +0 -87
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy_bidirectional.rs +0 -140
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_panic.rs +0 -181
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_poll_aio.rs +0 -375
- data/ext/cargo-vendor/tokio-1.35.1/tests/join_handle_panic.rs +0 -21
- data/ext/cargo-vendor/tokio-1.35.1/tests/macros_test.rs +0 -88
- data/ext/cargo-vendor/tokio-1.35.1/tests/macros_try_join.rs +0 -190
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_named_pipe.rs +0 -399
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_panic.rs +0 -192
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_unix_pipe.rs +0 -429
- data/ext/cargo-vendor/tokio-1.35.1/tests/process_issue_2174.rs +0 -45
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_basic.rs +0 -448
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_handle.rs +0 -94
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_panic.rs +0 -81
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_time_start_paused.rs +0 -14
- data/ext/cargo-vendor/tokio-1.35.1/tests/signal_panic.rs +0 -29
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_mpsc.rs +0 -841
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_panic.rs +0 -209
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_watch.rs +0 -301
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_id.rs +0 -303
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_join_set.rs +0 -229
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_local.rs +0 -119
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_panic.rs +0 -130
- data/ext/cargo-vendor/tokio-1.35.1/tests/tcp_into_split.rs +0 -131
- data/ext/cargo-vendor/tokio-1.35.1/tests/time_panic.rs +0 -98
- data/ext/cargo-vendor/tokio-1.35.1/tests/time_pause.rs +0 -332
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/Cargo.toml +0 -102
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/README.md +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/clocks.rs +0 -41
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/dir.rs +0 -464
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/file.rs +0 -254
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/lib.rs +0 -161
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/net.rs +0 -402
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched/unix.rs +0 -82
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched/windows.rs +0 -221
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched.rs +0 -40
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/stdio.rs +0 -197
- data/ext/cargo-vendor/wasi-common-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-17.0.1/Cargo.toml +0 -131
- data/ext/cargo-vendor/wasi-common-17.0.1/src/lib.rs +0 -76
- data/ext/cargo-vendor/wasm-encoder-0.38.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.38.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/component/types.rs +0 -771
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/code.rs +0 -3179
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/names.rs +0 -290
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/types.rs +0 -611
- data/ext/cargo-vendor/wasmparser-0.118.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.lock +0 -649
- data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.toml +0 -60
- data/ext/cargo-vendor/wasmparser-0.118.1/README.md +0 -36
- data/ext/cargo-vendor/wasmparser-0.118.1/benches/benchmark.rs +0 -370
- data/ext/cargo-vendor/wasmparser-0.118.1/src/binary_reader.rs +0 -1706
- data/ext/cargo-vendor/wasmparser-0.118.1/src/lib.rs +0 -726
- data/ext/cargo-vendor/wasmparser-0.118.1/src/limits.rs +0 -58
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/dylink0.rs +0 -132
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/names.rs +0 -153
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/operators.rs +0 -354
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/types.rs +0 -1520
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core.rs +0 -37
- data/ext/cargo-vendor/wasmparser-0.118.1/src/resources.rs +0 -408
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/component.rs +0 -3211
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core/canonical.rs +0 -233
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core.rs +0 -1381
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/func.rs +0 -345
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/names.rs +0 -859
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/operators.rs +0 -3515
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/types.rs +0 -4416
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator.rs +0 -1606
- data/ext/cargo-vendor/wasmprinter-0.2.75/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.2.75/Cargo.toml +0 -39
- data/ext/cargo-vendor/wasmprinter-0.2.75/src/lib.rs +0 -2969
- data/ext/cargo-vendor/wasmprinter-0.2.75/src/operator.rs +0 -873
- data/ext/cargo-vendor/wasmprinter-0.2.75/tests/all.rs +0 -278
- data/ext/cargo-vendor/wasmtime-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-17.0.1/Cargo.toml +0 -211
- data/ext/cargo-vendor/wasmtime-17.0.1/src/code.rs +0 -103
- data/ext/cargo-vendor/wasmtime-17.0.1/src/compiler.rs +0 -682
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/component.rs +0 -545
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/func/host.rs +0 -456
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/func.rs +0 -720
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/instance.rs +0 -815
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/linker.rs +0 -580
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/resource_table.rs +0 -350
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/types.rs +0 -752
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/values.rs +0 -1272
- data/ext/cargo-vendor/wasmtime-17.0.1/src/config.rs +0 -2428
- data/ext/cargo-vendor/wasmtime-17.0.1/src/engine/serialization.rs +0 -657
- data/ext/cargo-vendor/wasmtime-17.0.1/src/engine.rs +0 -792
- data/ext/cargo-vendor/wasmtime-17.0.1/src/func/typed.rs +0 -638
- data/ext/cargo-vendor/wasmtime-17.0.1/src/func.rs +0 -2391
- data/ext/cargo-vendor/wasmtime-17.0.1/src/instance.rs +0 -941
- data/ext/cargo-vendor/wasmtime-17.0.1/src/lib.rs +0 -526
- data/ext/cargo-vendor/wasmtime-17.0.1/src/linker.rs +0 -1479
- data/ext/cargo-vendor/wasmtime-17.0.1/src/memory.rs +0 -998
- data/ext/cargo-vendor/wasmtime-17.0.1/src/module/registry.rs +0 -361
- data/ext/cargo-vendor/wasmtime-17.0.1/src/module.rs +0 -1370
- data/ext/cargo-vendor/wasmtime-17.0.1/src/profiling.rs +0 -212
- data/ext/cargo-vendor/wasmtime-17.0.1/src/store.rs +0 -2389
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/func.rs +0 -133
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/memory.rs +0 -269
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/table.rs +0 -20
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline.rs +0 -77
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trap.rs +0 -643
- data/ext/cargo-vendor/wasmtime-17.0.1/src/types/matching.rs +0 -312
- data/ext/cargo-vendor/wasmtime-17.0.1/src/types.rs +0 -581
- data/ext/cargo-vendor/wasmtime-asm-macros-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-17.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-17.0.1/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/src/bindgen.rs +0 -371
- data/ext/cargo-vendor/wasmtime-component-util-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-17.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/Cargo.toml +0 -112
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/builder.rs +0 -123
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/compiler/component.rs +0 -959
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/compiler.rs +0 -1317
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/debug/transform/simulate.rs +0 -410
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/func_environ.rs +0 -2750
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/lib.rs +0 -186
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/src/isa_builder.rs +0 -100
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/Cargo.lock +0 -726
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/Cargo.toml +0 -125
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/dfg.rs +0 -678
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/info.rs +0 -583
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/translate/inline.rs +0 -1322
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/translate.rs +0 -951
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/types.rs +0 -1876
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component.rs +0 -95
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/lib.rs +0 -59
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module.rs +0 -1075
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module_environ.rs +0 -892
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module_types.rs +0 -120
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/tunables.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/vmoffsets.rs +0 -919
- data/ext/cargo-vendor/wasmtime-fiber-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-17.0.1/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/Cargo.toml +0 -125
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/code_memory.rs +0 -319
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/debug.rs +0 -165
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/instantiate.rs +0 -772
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/lib.rs +0 -21
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/jitdump.rs +0 -66
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/perfmap.rs +0 -47
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/vtune.rs +0 -80
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling.rs +0 -108
- data/ext/cargo-vendor/wasmtime-jit-debug-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-17.0.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/component.rs +0 -855
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator/pooling/memory_pool.rs +0 -997
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator/pooling.rs +0 -658
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator.rs +0 -712
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance.rs +0 -1479
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/lib.rs +0 -264
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/mpk/enabled.rs +0 -204
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/mpk/pkru.rs +0 -102
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/sys/unix/signals.rs +0 -402
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/vmcontext.rs +0 -1197
- data/ext/cargo-vendor/wasmtime-types-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-17.0.1/Cargo.toml +0 -36
- data/ext/cargo-vendor/wasmtime-types-17.0.1/src/lib.rs +0 -504
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.1/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/Cargo.toml +0 -261
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/build.rs +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/lib.rs +0 -137
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/clocks.rs +0 -12
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/ctx.rs +0 -333
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/error.rs +0 -97
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/filesystem.rs +0 -325
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/clocks.rs +0 -103
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/filesystem.rs +0 -1069
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/instance_network.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/io.rs +0 -368
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/network.rs +0 -625
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/random.rs +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/tcp.rs +0 -605
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/tcp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/udp.rs +0 -530
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/udp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/ip_name_lookup.rs +0 -125
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/pipe.rs +0 -826
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/poll.rs +0 -175
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/preview0.rs +0 -870
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/preview1.rs +0 -2362
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/random.rs +0 -58
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/stdio.rs +0 -259
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/write_stream.rs +0 -203
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/tests/all/api.rs +0 -217
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/tests/all/main.rs +0 -112
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/io/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/io/streams.wit +0 -251
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/sockets/tcp.wit +0 -309
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/sockets/udp.wit +0 -264
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/src/builder.rs +0 -64
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/src/compiler.rs +0 -243
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/Cargo.toml +0 -41
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/src/lib.rs +0 -2097
- data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.1/Cargo.toml +0 -29
- data/ext/cargo-vendor/wast-69.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-69.0.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/wast-69.0.1/src/component/component.rs +0 -320
- data/ext/cargo-vendor/wast-69.0.1/src/core/binary.rs +0 -1273
- data/ext/cargo-vendor/wast-69.0.1/src/core/custom.rs +0 -390
- data/ext/cargo-vendor/wast-69.0.1/src/core/expr.rs +0 -2072
- data/ext/cargo-vendor/wast-69.0.1/src/core/memory.rs +0 -279
- data/ext/cargo-vendor/wast-69.0.1/src/core/module.rs +0 -217
- data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/deinline_import_export.rs +0 -231
- data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/names.rs +0 -764
- data/ext/cargo-vendor/wast-69.0.1/src/core/table.rs +0 -288
- data/ext/cargo-vendor/wast-69.0.1/src/core/types.rs +0 -865
- data/ext/cargo-vendor/wast-69.0.1/src/lexer.rs +0 -1443
- data/ext/cargo-vendor/wast-69.0.1/src/lib.rs +0 -542
- data/ext/cargo-vendor/wast-69.0.1/src/names.rs +0 -86
- data/ext/cargo-vendor/wast-69.0.1/src/parser.rs +0 -1382
- data/ext/cargo-vendor/wast-69.0.1/src/token.rs +0 -698
- data/ext/cargo-vendor/wast-69.0.1/src/wat.rs +0 -62
- data/ext/cargo-vendor/wat-1.0.82/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.82/Cargo.toml +0 -27
- data/ext/cargo-vendor/wat-1.0.82/src/lib.rs +0 -333
- data/ext/cargo-vendor/wiggle-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-17.0.1/Cargo.toml +0 -115
- data/ext/cargo-vendor/wiggle-17.0.1/src/lib.rs +0 -1198
- data/ext/cargo-vendor/wiggle-generate-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-17.0.1/Cargo.toml +0 -65
- data/ext/cargo-vendor/wiggle-macro-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-17.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-17.0.1/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.15.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.15.1/Cargo.toml +0 -76
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/abi/local.rs +0 -81
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/abi/mod.rs +0 -614
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/builtin.rs +0 -268
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/call.rs +0 -345
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/context.rs +0 -553
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/control.rs +0 -497
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/env.rs +0 -309
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/mod.rs +0 -428
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/frame/mod.rs +0 -221
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/abi.rs +0 -313
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/masm.rs +0 -457
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/mod.rs +0 -137
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/mod.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/reg.rs +0 -73
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/abi.rs +0 -524
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/asm.rs +0 -1149
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/masm.rs +0 -1044
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/mod.rs +0 -172
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/masm.rs +0 -708
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/stack.rs +0 -452
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/trampoline.rs +0 -734
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/visitor.rs +0 -1617
- data/ext/cargo-vendor/wit-parser-0.13.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.13.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/lex.rs +0 -737
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/resolve.rs +0 -1425
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast.rs +0 -1340
- data/ext/cargo-vendor/wit-parser-0.13.0/src/resolve.rs +0 -1872
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/comments.wit.json +0 -46
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit +0 -58
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit.json +0 -751
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/wasi.wit.json +0 -296
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/buffer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/tests/wasm_testsuite.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/bin/release.sh +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/features.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/main.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/stable_api_config.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/readme.md +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/bindings.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/hidden.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/ruby_abi_version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/special_consts.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.c +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_6.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_7.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_0.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_1.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_2.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_3.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/tracking_allocator.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/value_type.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/sanitizer.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/stable_api.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/wrapper.h +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/cc.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/flags.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/library.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/search_path.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/maybe_done.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/mem.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mocked.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u16.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u32.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_usize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/schedule.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/config.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/coop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/chan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/consume_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/spawn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/bit.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/sync_wrapper.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/async_send_sync.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1/tests/coop_budger.rs → tokio-1.36.0/tests/coop_budget.rs} +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/duplex_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-17.0.1 → wasi-common-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasm-encoder-0.201.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1 → wasmtime-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1 → wasmtime-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-17.0.1 → wasmtime-asm-macros-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-17.0.1 → wasmtime-component-util-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/types/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-17.0.1 → wasmtime-environ-18.0.3}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-17.0.1 → wasmtime-runtime-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-types-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-17.0.1 → wasmtime-types-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-17.0.1 → wasmtime-versioned-export-macros-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-17.0.1 → wasmtime-wasi-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-17.0.1 → wasmtime-winch-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-17.0.1 → wasmtime-winch-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wmemcheck-17.0.1 → wasmtime-wmemcheck-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wast-201.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wat-1.201.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.82 → wat-1.201.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.82 → wiggle-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-generate-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-macro-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-17.0.1 → wiggle-macro-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/live.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/serde_.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/sizealign.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,3444 @@
|
|
1
|
+
use crate::{encode_section, Encode, HeapType, RefType, Section, SectionId, ValType};
|
2
|
+
use std::borrow::Cow;
|
3
|
+
|
4
|
+
/// An encoder for the code section.
|
5
|
+
///
|
6
|
+
/// Code sections are only supported for modules.
|
7
|
+
///
|
8
|
+
/// # Example
|
9
|
+
///
|
10
|
+
/// ```
|
11
|
+
/// use wasm_encoder::{
|
12
|
+
/// CodeSection, Function, FunctionSection, Instruction, Module,
|
13
|
+
/// TypeSection, ValType
|
14
|
+
/// };
|
15
|
+
///
|
16
|
+
/// let mut types = TypeSection::new();
|
17
|
+
/// types.function(vec![], vec![ValType::I32]);
|
18
|
+
///
|
19
|
+
/// let mut functions = FunctionSection::new();
|
20
|
+
/// let type_index = 0;
|
21
|
+
/// functions.function(type_index);
|
22
|
+
///
|
23
|
+
/// let locals = vec![];
|
24
|
+
/// let mut func = Function::new(locals);
|
25
|
+
/// func.instruction(&Instruction::I32Const(42));
|
26
|
+
/// let mut code = CodeSection::new();
|
27
|
+
/// code.function(&func);
|
28
|
+
///
|
29
|
+
/// let mut module = Module::new();
|
30
|
+
/// module
|
31
|
+
/// .section(&types)
|
32
|
+
/// .section(&functions)
|
33
|
+
/// .section(&code);
|
34
|
+
///
|
35
|
+
/// let wasm_bytes = module.finish();
|
36
|
+
/// ```
|
37
|
+
#[derive(Clone, Default, Debug)]
|
38
|
+
pub struct CodeSection {
|
39
|
+
bytes: Vec<u8>,
|
40
|
+
num_added: u32,
|
41
|
+
}
|
42
|
+
|
43
|
+
impl CodeSection {
|
44
|
+
/// Create a new code section encoder.
|
45
|
+
pub fn new() -> Self {
|
46
|
+
Self::default()
|
47
|
+
}
|
48
|
+
|
49
|
+
/// The number of functions in the section.
|
50
|
+
pub fn len(&self) -> u32 {
|
51
|
+
self.num_added
|
52
|
+
}
|
53
|
+
|
54
|
+
/// The number of bytes already added to this section.
|
55
|
+
///
|
56
|
+
/// This number doesn't include the vector length that precedes the
|
57
|
+
/// code entries, since it has a variable size that isn't known until all
|
58
|
+
/// functions are added.
|
59
|
+
pub fn byte_len(&self) -> usize {
|
60
|
+
self.bytes.len()
|
61
|
+
}
|
62
|
+
|
63
|
+
/// Determines if the section is empty.
|
64
|
+
pub fn is_empty(&self) -> bool {
|
65
|
+
self.num_added == 0
|
66
|
+
}
|
67
|
+
|
68
|
+
/// Write a function body into this code section.
|
69
|
+
pub fn function(&mut self, func: &Function) -> &mut Self {
|
70
|
+
func.encode(&mut self.bytes);
|
71
|
+
self.num_added += 1;
|
72
|
+
self
|
73
|
+
}
|
74
|
+
|
75
|
+
/// Add a raw byte slice into this code section as a function body.
|
76
|
+
///
|
77
|
+
/// The length prefix of the function body will be automatically prepended,
|
78
|
+
/// and should not be included in the raw byte slice.
|
79
|
+
///
|
80
|
+
/// # Example
|
81
|
+
///
|
82
|
+
/// You can use the `raw` method to copy an already-encoded function body
|
83
|
+
/// into a new code section encoder:
|
84
|
+
///
|
85
|
+
/// ```
|
86
|
+
/// // id, size, # entries, entry
|
87
|
+
/// let code_section = [10, 6, 1, 4, 0, 65, 0, 11];
|
88
|
+
///
|
89
|
+
/// // Parse the code section.
|
90
|
+
/// let reader = wasmparser::CodeSectionReader::new(&code_section, 0).unwrap();
|
91
|
+
/// let body = reader.into_iter().next().unwrap().unwrap();
|
92
|
+
/// let body_range = body.range();
|
93
|
+
///
|
94
|
+
/// // Add the body to a new code section encoder by copying bytes rather
|
95
|
+
/// // than re-parsing and re-encoding it.
|
96
|
+
/// let mut encoder = wasm_encoder::CodeSection::new();
|
97
|
+
/// encoder.raw(&code_section[body_range.start..body_range.end]);
|
98
|
+
/// ```
|
99
|
+
pub fn raw(&mut self, data: &[u8]) -> &mut Self {
|
100
|
+
data.encode(&mut self.bytes);
|
101
|
+
self.num_added += 1;
|
102
|
+
self
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
impl Encode for CodeSection {
|
107
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
108
|
+
encode_section(sink, self.num_added, &self.bytes);
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
impl Section for CodeSection {
|
113
|
+
fn id(&self) -> u8 {
|
114
|
+
SectionId::Code.into()
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
/// An encoder for a function body within the code section.
|
119
|
+
///
|
120
|
+
/// # Example
|
121
|
+
///
|
122
|
+
/// ```
|
123
|
+
/// use wasm_encoder::{CodeSection, Function, Instruction};
|
124
|
+
///
|
125
|
+
/// // Define the function body for:
|
126
|
+
/// //
|
127
|
+
/// // (func (param i32 i32) (result i32)
|
128
|
+
/// // local.get 0
|
129
|
+
/// // local.get 1
|
130
|
+
/// // i32.add)
|
131
|
+
/// let locals = vec![];
|
132
|
+
/// let mut func = Function::new(locals);
|
133
|
+
/// func.instruction(&Instruction::LocalGet(0));
|
134
|
+
/// func.instruction(&Instruction::LocalGet(1));
|
135
|
+
/// func.instruction(&Instruction::I32Add);
|
136
|
+
///
|
137
|
+
/// // Add our function to the code section.
|
138
|
+
/// let mut code = CodeSection::new();
|
139
|
+
/// code.function(&func);
|
140
|
+
/// ```
|
141
|
+
#[derive(Clone, Debug, Eq, PartialEq)]
|
142
|
+
pub struct Function {
|
143
|
+
bytes: Vec<u8>,
|
144
|
+
}
|
145
|
+
|
146
|
+
impl Function {
|
147
|
+
/// Create a new function body with the given locals.
|
148
|
+
///
|
149
|
+
/// The argument is an iterator over `(N, Ty)`, which defines
|
150
|
+
/// that the next `N` locals will be of type `Ty`.
|
151
|
+
///
|
152
|
+
/// For example, a function with locals 0 and 1 of type I32 and
|
153
|
+
/// local 2 of type F32 would be created as:
|
154
|
+
///
|
155
|
+
/// ```
|
156
|
+
/// # use wasm_encoder::{Function, ValType};
|
157
|
+
/// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
|
158
|
+
/// ```
|
159
|
+
///
|
160
|
+
/// For more information about the code section (and function definition) in the WASM binary format
|
161
|
+
/// see the [WebAssembly spec](https://webassembly.github.io/spec/core/binary/modules.html#binary-func)
|
162
|
+
pub fn new<L>(locals: L) -> Self
|
163
|
+
where
|
164
|
+
L: IntoIterator<Item = (u32, ValType)>,
|
165
|
+
L::IntoIter: ExactSizeIterator,
|
166
|
+
{
|
167
|
+
let locals = locals.into_iter();
|
168
|
+
let mut bytes = vec![];
|
169
|
+
locals.len().encode(&mut bytes);
|
170
|
+
for (count, ty) in locals {
|
171
|
+
count.encode(&mut bytes);
|
172
|
+
ty.encode(&mut bytes);
|
173
|
+
}
|
174
|
+
Function { bytes }
|
175
|
+
}
|
176
|
+
|
177
|
+
/// Create a function from a list of locals' types.
|
178
|
+
///
|
179
|
+
/// Unlike [`Function::new`], this constructor simply takes a list of types
|
180
|
+
/// which are in order associated with locals.
|
181
|
+
///
|
182
|
+
/// For example:
|
183
|
+
///
|
184
|
+
/// ```
|
185
|
+
/// # use wasm_encoder::{Function, ValType};
|
186
|
+
/// let f = Function::new([(2, ValType::I32), (1, ValType::F32)]);
|
187
|
+
/// let g = Function::new_with_locals_types([
|
188
|
+
/// ValType::I32, ValType::I32, ValType::F32
|
189
|
+
/// ]);
|
190
|
+
///
|
191
|
+
/// assert_eq!(f, g)
|
192
|
+
/// ```
|
193
|
+
pub fn new_with_locals_types<L>(locals: L) -> Self
|
194
|
+
where
|
195
|
+
L: IntoIterator<Item = ValType>,
|
196
|
+
{
|
197
|
+
let locals = locals.into_iter();
|
198
|
+
|
199
|
+
let mut locals_collected: Vec<(u32, ValType)> = vec![];
|
200
|
+
for l in locals {
|
201
|
+
if let Some((last_count, last_type)) = locals_collected.last_mut() {
|
202
|
+
if l == *last_type {
|
203
|
+
// Increment the count of consecutive locals of this type
|
204
|
+
*last_count += 1;
|
205
|
+
continue;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
// If we didn't increment, a new type of local appeared
|
209
|
+
locals_collected.push((1, l));
|
210
|
+
}
|
211
|
+
|
212
|
+
Function::new(locals_collected)
|
213
|
+
}
|
214
|
+
|
215
|
+
/// Write an instruction into this function body.
|
216
|
+
pub fn instruction(&mut self, instruction: &Instruction) -> &mut Self {
|
217
|
+
instruction.encode(&mut self.bytes);
|
218
|
+
self
|
219
|
+
}
|
220
|
+
|
221
|
+
/// Add raw bytes to this function's body.
|
222
|
+
pub fn raw<B>(&mut self, bytes: B) -> &mut Self
|
223
|
+
where
|
224
|
+
B: IntoIterator<Item = u8>,
|
225
|
+
{
|
226
|
+
self.bytes.extend(bytes);
|
227
|
+
self
|
228
|
+
}
|
229
|
+
|
230
|
+
/// The number of bytes already added to this function.
|
231
|
+
///
|
232
|
+
/// This number doesn't include the variable-width size field that `encode`
|
233
|
+
/// will write before the added bytes, since the size of that field isn't
|
234
|
+
/// known until all the instructions are added to this function.
|
235
|
+
pub fn byte_len(&self) -> usize {
|
236
|
+
self.bytes.len()
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
impl Encode for Function {
|
241
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
242
|
+
self.bytes.encode(sink);
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
/// The immediate for a memory instruction.
|
247
|
+
#[derive(Clone, Copy, Debug)]
|
248
|
+
pub struct MemArg {
|
249
|
+
/// A static offset to add to the instruction's dynamic address operand.
|
250
|
+
///
|
251
|
+
/// This is a `u64` field for the memory64 proposal, but 32-bit memories
|
252
|
+
/// limit offsets to at most `u32::MAX` bytes. This will be encoded as a LEB
|
253
|
+
/// but it won't generate a valid module if an offset is specified which is
|
254
|
+
/// larger than the maximum size of the index space for the memory indicated
|
255
|
+
/// by `memory_index`.
|
256
|
+
pub offset: u64,
|
257
|
+
/// The expected alignment of the instruction's dynamic address operand
|
258
|
+
/// (expressed the exponent of a power of two).
|
259
|
+
pub align: u32,
|
260
|
+
/// The index of the memory this instruction is operating upon.
|
261
|
+
pub memory_index: u32,
|
262
|
+
}
|
263
|
+
|
264
|
+
impl Encode for MemArg {
|
265
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
266
|
+
if self.memory_index == 0 {
|
267
|
+
self.align.encode(sink);
|
268
|
+
self.offset.encode(sink);
|
269
|
+
} else {
|
270
|
+
(self.align | (1 << 6)).encode(sink);
|
271
|
+
self.memory_index.encode(sink);
|
272
|
+
self.offset.encode(sink);
|
273
|
+
}
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
/// Describe an unchecked SIMD lane index.
|
278
|
+
pub type Lane = u8;
|
279
|
+
|
280
|
+
/// The type for a `block`/`if`/`loop`.
|
281
|
+
#[derive(Clone, Copy, Debug)]
|
282
|
+
pub enum BlockType {
|
283
|
+
/// `[] -> []`
|
284
|
+
Empty,
|
285
|
+
/// `[] -> [t]`
|
286
|
+
Result(ValType),
|
287
|
+
/// The `n`th function type.
|
288
|
+
FunctionType(u32),
|
289
|
+
}
|
290
|
+
|
291
|
+
impl Encode for BlockType {
|
292
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
293
|
+
match *self {
|
294
|
+
Self::Empty => sink.push(0x40),
|
295
|
+
Self::Result(ty) => ty.encode(sink),
|
296
|
+
Self::FunctionType(f) => (f as i64).encode(sink),
|
297
|
+
}
|
298
|
+
}
|
299
|
+
}
|
300
|
+
|
301
|
+
/// WebAssembly instructions.
|
302
|
+
#[derive(Clone, Debug)]
|
303
|
+
#[non_exhaustive]
|
304
|
+
#[allow(missing_docs, non_camel_case_types)]
|
305
|
+
pub enum Instruction<'a> {
|
306
|
+
// Control instructions.
|
307
|
+
Unreachable,
|
308
|
+
Nop,
|
309
|
+
Block(BlockType),
|
310
|
+
Loop(BlockType),
|
311
|
+
If(BlockType),
|
312
|
+
Else,
|
313
|
+
End,
|
314
|
+
Br(u32),
|
315
|
+
BrIf(u32),
|
316
|
+
BrTable(Cow<'a, [u32]>, u32),
|
317
|
+
BrOnNull(u32),
|
318
|
+
BrOnNonNull(u32),
|
319
|
+
Return,
|
320
|
+
Call(u32),
|
321
|
+
CallRef(u32),
|
322
|
+
CallIndirect {
|
323
|
+
ty: u32,
|
324
|
+
table: u32,
|
325
|
+
},
|
326
|
+
ReturnCallRef(u32),
|
327
|
+
ReturnCall(u32),
|
328
|
+
ReturnCallIndirect {
|
329
|
+
ty: u32,
|
330
|
+
table: u32,
|
331
|
+
},
|
332
|
+
TryTable(BlockType, Cow<'a, [Catch]>),
|
333
|
+
Throw(u32),
|
334
|
+
ThrowRef,
|
335
|
+
|
336
|
+
// Deprecated exception-handling instructions
|
337
|
+
Try(BlockType),
|
338
|
+
Delegate(u32),
|
339
|
+
Catch(u32),
|
340
|
+
CatchAll,
|
341
|
+
Rethrow(u32),
|
342
|
+
|
343
|
+
// Parametric instructions.
|
344
|
+
Drop,
|
345
|
+
Select,
|
346
|
+
|
347
|
+
// Variable instructions.
|
348
|
+
LocalGet(u32),
|
349
|
+
LocalSet(u32),
|
350
|
+
LocalTee(u32),
|
351
|
+
GlobalGet(u32),
|
352
|
+
GlobalSet(u32),
|
353
|
+
|
354
|
+
// Memory instructions.
|
355
|
+
I32Load(MemArg),
|
356
|
+
I64Load(MemArg),
|
357
|
+
F32Load(MemArg),
|
358
|
+
F64Load(MemArg),
|
359
|
+
I32Load8S(MemArg),
|
360
|
+
I32Load8U(MemArg),
|
361
|
+
I32Load16S(MemArg),
|
362
|
+
I32Load16U(MemArg),
|
363
|
+
I64Load8S(MemArg),
|
364
|
+
I64Load8U(MemArg),
|
365
|
+
I64Load16S(MemArg),
|
366
|
+
I64Load16U(MemArg),
|
367
|
+
I64Load32S(MemArg),
|
368
|
+
I64Load32U(MemArg),
|
369
|
+
I32Store(MemArg),
|
370
|
+
I64Store(MemArg),
|
371
|
+
F32Store(MemArg),
|
372
|
+
F64Store(MemArg),
|
373
|
+
I32Store8(MemArg),
|
374
|
+
I32Store16(MemArg),
|
375
|
+
I64Store8(MemArg),
|
376
|
+
I64Store16(MemArg),
|
377
|
+
I64Store32(MemArg),
|
378
|
+
MemorySize(u32),
|
379
|
+
MemoryGrow(u32),
|
380
|
+
MemoryInit {
|
381
|
+
mem: u32,
|
382
|
+
data_index: u32,
|
383
|
+
},
|
384
|
+
DataDrop(u32),
|
385
|
+
MemoryCopy {
|
386
|
+
src_mem: u32,
|
387
|
+
dst_mem: u32,
|
388
|
+
},
|
389
|
+
MemoryFill(u32),
|
390
|
+
MemoryDiscard(u32),
|
391
|
+
|
392
|
+
// Numeric instructions.
|
393
|
+
I32Const(i32),
|
394
|
+
I64Const(i64),
|
395
|
+
F32Const(f32),
|
396
|
+
F64Const(f64),
|
397
|
+
I32Eqz,
|
398
|
+
I32Eq,
|
399
|
+
I32Ne,
|
400
|
+
I32LtS,
|
401
|
+
I32LtU,
|
402
|
+
I32GtS,
|
403
|
+
I32GtU,
|
404
|
+
I32LeS,
|
405
|
+
I32LeU,
|
406
|
+
I32GeS,
|
407
|
+
I32GeU,
|
408
|
+
I64Eqz,
|
409
|
+
I64Eq,
|
410
|
+
I64Ne,
|
411
|
+
I64LtS,
|
412
|
+
I64LtU,
|
413
|
+
I64GtS,
|
414
|
+
I64GtU,
|
415
|
+
I64LeS,
|
416
|
+
I64LeU,
|
417
|
+
I64GeS,
|
418
|
+
I64GeU,
|
419
|
+
F32Eq,
|
420
|
+
F32Ne,
|
421
|
+
F32Lt,
|
422
|
+
F32Gt,
|
423
|
+
F32Le,
|
424
|
+
F32Ge,
|
425
|
+
F64Eq,
|
426
|
+
F64Ne,
|
427
|
+
F64Lt,
|
428
|
+
F64Gt,
|
429
|
+
F64Le,
|
430
|
+
F64Ge,
|
431
|
+
I32Clz,
|
432
|
+
I32Ctz,
|
433
|
+
I32Popcnt,
|
434
|
+
I32Add,
|
435
|
+
I32Sub,
|
436
|
+
I32Mul,
|
437
|
+
I32DivS,
|
438
|
+
I32DivU,
|
439
|
+
I32RemS,
|
440
|
+
I32RemU,
|
441
|
+
I32And,
|
442
|
+
I32Or,
|
443
|
+
I32Xor,
|
444
|
+
I32Shl,
|
445
|
+
I32ShrS,
|
446
|
+
I32ShrU,
|
447
|
+
I32Rotl,
|
448
|
+
I32Rotr,
|
449
|
+
I64Clz,
|
450
|
+
I64Ctz,
|
451
|
+
I64Popcnt,
|
452
|
+
I64Add,
|
453
|
+
I64Sub,
|
454
|
+
I64Mul,
|
455
|
+
I64DivS,
|
456
|
+
I64DivU,
|
457
|
+
I64RemS,
|
458
|
+
I64RemU,
|
459
|
+
I64And,
|
460
|
+
I64Or,
|
461
|
+
I64Xor,
|
462
|
+
I64Shl,
|
463
|
+
I64ShrS,
|
464
|
+
I64ShrU,
|
465
|
+
I64Rotl,
|
466
|
+
I64Rotr,
|
467
|
+
F32Abs,
|
468
|
+
F32Neg,
|
469
|
+
F32Ceil,
|
470
|
+
F32Floor,
|
471
|
+
F32Trunc,
|
472
|
+
F32Nearest,
|
473
|
+
F32Sqrt,
|
474
|
+
F32Add,
|
475
|
+
F32Sub,
|
476
|
+
F32Mul,
|
477
|
+
F32Div,
|
478
|
+
F32Min,
|
479
|
+
F32Max,
|
480
|
+
F32Copysign,
|
481
|
+
F64Abs,
|
482
|
+
F64Neg,
|
483
|
+
F64Ceil,
|
484
|
+
F64Floor,
|
485
|
+
F64Trunc,
|
486
|
+
F64Nearest,
|
487
|
+
F64Sqrt,
|
488
|
+
F64Add,
|
489
|
+
F64Sub,
|
490
|
+
F64Mul,
|
491
|
+
F64Div,
|
492
|
+
F64Min,
|
493
|
+
F64Max,
|
494
|
+
F64Copysign,
|
495
|
+
I32WrapI64,
|
496
|
+
I32TruncF32S,
|
497
|
+
I32TruncF32U,
|
498
|
+
I32TruncF64S,
|
499
|
+
I32TruncF64U,
|
500
|
+
I64ExtendI32S,
|
501
|
+
I64ExtendI32U,
|
502
|
+
I64TruncF32S,
|
503
|
+
I64TruncF32U,
|
504
|
+
I64TruncF64S,
|
505
|
+
I64TruncF64U,
|
506
|
+
F32ConvertI32S,
|
507
|
+
F32ConvertI32U,
|
508
|
+
F32ConvertI64S,
|
509
|
+
F32ConvertI64U,
|
510
|
+
F32DemoteF64,
|
511
|
+
F64ConvertI32S,
|
512
|
+
F64ConvertI32U,
|
513
|
+
F64ConvertI64S,
|
514
|
+
F64ConvertI64U,
|
515
|
+
F64PromoteF32,
|
516
|
+
I32ReinterpretF32,
|
517
|
+
I64ReinterpretF64,
|
518
|
+
F32ReinterpretI32,
|
519
|
+
F64ReinterpretI64,
|
520
|
+
I32Extend8S,
|
521
|
+
I32Extend16S,
|
522
|
+
I64Extend8S,
|
523
|
+
I64Extend16S,
|
524
|
+
I64Extend32S,
|
525
|
+
I32TruncSatF32S,
|
526
|
+
I32TruncSatF32U,
|
527
|
+
I32TruncSatF64S,
|
528
|
+
I32TruncSatF64U,
|
529
|
+
I64TruncSatF32S,
|
530
|
+
I64TruncSatF32U,
|
531
|
+
I64TruncSatF64S,
|
532
|
+
I64TruncSatF64U,
|
533
|
+
|
534
|
+
// Reference types instructions.
|
535
|
+
TypedSelect(ValType),
|
536
|
+
RefNull(HeapType),
|
537
|
+
RefIsNull,
|
538
|
+
RefFunc(u32),
|
539
|
+
RefEq,
|
540
|
+
RefAsNonNull,
|
541
|
+
|
542
|
+
// GC types instructions.
|
543
|
+
StructNew(u32),
|
544
|
+
StructNewDefault(u32),
|
545
|
+
StructGet {
|
546
|
+
struct_type_index: u32,
|
547
|
+
field_index: u32,
|
548
|
+
},
|
549
|
+
StructGetS {
|
550
|
+
struct_type_index: u32,
|
551
|
+
field_index: u32,
|
552
|
+
},
|
553
|
+
StructGetU {
|
554
|
+
struct_type_index: u32,
|
555
|
+
field_index: u32,
|
556
|
+
},
|
557
|
+
StructSet {
|
558
|
+
struct_type_index: u32,
|
559
|
+
field_index: u32,
|
560
|
+
},
|
561
|
+
|
562
|
+
ArrayNew(u32),
|
563
|
+
ArrayNewDefault(u32),
|
564
|
+
ArrayNewFixed {
|
565
|
+
array_type_index: u32,
|
566
|
+
array_size: u32,
|
567
|
+
},
|
568
|
+
ArrayNewData {
|
569
|
+
array_type_index: u32,
|
570
|
+
array_data_index: u32,
|
571
|
+
},
|
572
|
+
ArrayNewElem {
|
573
|
+
array_type_index: u32,
|
574
|
+
array_elem_index: u32,
|
575
|
+
},
|
576
|
+
ArrayGet(u32),
|
577
|
+
ArrayGetS(u32),
|
578
|
+
ArrayGetU(u32),
|
579
|
+
ArraySet(u32),
|
580
|
+
ArrayLen,
|
581
|
+
ArrayFill(u32),
|
582
|
+
ArrayCopy {
|
583
|
+
array_type_index_dst: u32,
|
584
|
+
array_type_index_src: u32,
|
585
|
+
},
|
586
|
+
ArrayInitData {
|
587
|
+
array_type_index: u32,
|
588
|
+
array_data_index: u32,
|
589
|
+
},
|
590
|
+
ArrayInitElem {
|
591
|
+
array_type_index: u32,
|
592
|
+
array_elem_index: u32,
|
593
|
+
},
|
594
|
+
RefTestNonNull(HeapType),
|
595
|
+
RefTestNullable(HeapType),
|
596
|
+
RefCastNonNull(HeapType),
|
597
|
+
RefCastNullable(HeapType),
|
598
|
+
BrOnCast {
|
599
|
+
relative_depth: u32,
|
600
|
+
from_ref_type: RefType,
|
601
|
+
to_ref_type: RefType,
|
602
|
+
},
|
603
|
+
BrOnCastFail {
|
604
|
+
relative_depth: u32,
|
605
|
+
from_ref_type: RefType,
|
606
|
+
to_ref_type: RefType,
|
607
|
+
},
|
608
|
+
AnyConvertExtern,
|
609
|
+
ExternConvertAny,
|
610
|
+
|
611
|
+
RefI31,
|
612
|
+
I31GetS,
|
613
|
+
I31GetU,
|
614
|
+
|
615
|
+
// Bulk memory instructions.
|
616
|
+
TableInit {
|
617
|
+
elem_index: u32,
|
618
|
+
table: u32,
|
619
|
+
},
|
620
|
+
ElemDrop(u32),
|
621
|
+
TableFill(u32),
|
622
|
+
TableSet(u32),
|
623
|
+
TableGet(u32),
|
624
|
+
TableGrow(u32),
|
625
|
+
TableSize(u32),
|
626
|
+
TableCopy {
|
627
|
+
src_table: u32,
|
628
|
+
dst_table: u32,
|
629
|
+
},
|
630
|
+
|
631
|
+
// SIMD instructions.
|
632
|
+
V128Load(MemArg),
|
633
|
+
V128Load8x8S(MemArg),
|
634
|
+
V128Load8x8U(MemArg),
|
635
|
+
V128Load16x4S(MemArg),
|
636
|
+
V128Load16x4U(MemArg),
|
637
|
+
V128Load32x2S(MemArg),
|
638
|
+
V128Load32x2U(MemArg),
|
639
|
+
V128Load8Splat(MemArg),
|
640
|
+
V128Load16Splat(MemArg),
|
641
|
+
V128Load32Splat(MemArg),
|
642
|
+
V128Load64Splat(MemArg),
|
643
|
+
V128Load32Zero(MemArg),
|
644
|
+
V128Load64Zero(MemArg),
|
645
|
+
V128Store(MemArg),
|
646
|
+
V128Load8Lane {
|
647
|
+
memarg: MemArg,
|
648
|
+
lane: Lane,
|
649
|
+
},
|
650
|
+
V128Load16Lane {
|
651
|
+
memarg: MemArg,
|
652
|
+
lane: Lane,
|
653
|
+
},
|
654
|
+
V128Load32Lane {
|
655
|
+
memarg: MemArg,
|
656
|
+
lane: Lane,
|
657
|
+
},
|
658
|
+
V128Load64Lane {
|
659
|
+
memarg: MemArg,
|
660
|
+
lane: Lane,
|
661
|
+
},
|
662
|
+
V128Store8Lane {
|
663
|
+
memarg: MemArg,
|
664
|
+
lane: Lane,
|
665
|
+
},
|
666
|
+
V128Store16Lane {
|
667
|
+
memarg: MemArg,
|
668
|
+
lane: Lane,
|
669
|
+
},
|
670
|
+
V128Store32Lane {
|
671
|
+
memarg: MemArg,
|
672
|
+
lane: Lane,
|
673
|
+
},
|
674
|
+
V128Store64Lane {
|
675
|
+
memarg: MemArg,
|
676
|
+
lane: Lane,
|
677
|
+
},
|
678
|
+
V128Const(i128),
|
679
|
+
I8x16Shuffle([Lane; 16]),
|
680
|
+
I8x16ExtractLaneS(Lane),
|
681
|
+
I8x16ExtractLaneU(Lane),
|
682
|
+
I8x16ReplaceLane(Lane),
|
683
|
+
I16x8ExtractLaneS(Lane),
|
684
|
+
I16x8ExtractLaneU(Lane),
|
685
|
+
I16x8ReplaceLane(Lane),
|
686
|
+
I32x4ExtractLane(Lane),
|
687
|
+
I32x4ReplaceLane(Lane),
|
688
|
+
I64x2ExtractLane(Lane),
|
689
|
+
I64x2ReplaceLane(Lane),
|
690
|
+
F32x4ExtractLane(Lane),
|
691
|
+
F32x4ReplaceLane(Lane),
|
692
|
+
F64x2ExtractLane(Lane),
|
693
|
+
F64x2ReplaceLane(Lane),
|
694
|
+
I8x16Swizzle,
|
695
|
+
I8x16Splat,
|
696
|
+
I16x8Splat,
|
697
|
+
I32x4Splat,
|
698
|
+
I64x2Splat,
|
699
|
+
F32x4Splat,
|
700
|
+
F64x2Splat,
|
701
|
+
I8x16Eq,
|
702
|
+
I8x16Ne,
|
703
|
+
I8x16LtS,
|
704
|
+
I8x16LtU,
|
705
|
+
I8x16GtS,
|
706
|
+
I8x16GtU,
|
707
|
+
I8x16LeS,
|
708
|
+
I8x16LeU,
|
709
|
+
I8x16GeS,
|
710
|
+
I8x16GeU,
|
711
|
+
I16x8Eq,
|
712
|
+
I16x8Ne,
|
713
|
+
I16x8LtS,
|
714
|
+
I16x8LtU,
|
715
|
+
I16x8GtS,
|
716
|
+
I16x8GtU,
|
717
|
+
I16x8LeS,
|
718
|
+
I16x8LeU,
|
719
|
+
I16x8GeS,
|
720
|
+
I16x8GeU,
|
721
|
+
I32x4Eq,
|
722
|
+
I32x4Ne,
|
723
|
+
I32x4LtS,
|
724
|
+
I32x4LtU,
|
725
|
+
I32x4GtS,
|
726
|
+
I32x4GtU,
|
727
|
+
I32x4LeS,
|
728
|
+
I32x4LeU,
|
729
|
+
I32x4GeS,
|
730
|
+
I32x4GeU,
|
731
|
+
I64x2Eq,
|
732
|
+
I64x2Ne,
|
733
|
+
I64x2LtS,
|
734
|
+
I64x2GtS,
|
735
|
+
I64x2LeS,
|
736
|
+
I64x2GeS,
|
737
|
+
F32x4Eq,
|
738
|
+
F32x4Ne,
|
739
|
+
F32x4Lt,
|
740
|
+
F32x4Gt,
|
741
|
+
F32x4Le,
|
742
|
+
F32x4Ge,
|
743
|
+
F64x2Eq,
|
744
|
+
F64x2Ne,
|
745
|
+
F64x2Lt,
|
746
|
+
F64x2Gt,
|
747
|
+
F64x2Le,
|
748
|
+
F64x2Ge,
|
749
|
+
V128Not,
|
750
|
+
V128And,
|
751
|
+
V128AndNot,
|
752
|
+
V128Or,
|
753
|
+
V128Xor,
|
754
|
+
V128Bitselect,
|
755
|
+
V128AnyTrue,
|
756
|
+
I8x16Abs,
|
757
|
+
I8x16Neg,
|
758
|
+
I8x16Popcnt,
|
759
|
+
I8x16AllTrue,
|
760
|
+
I8x16Bitmask,
|
761
|
+
I8x16NarrowI16x8S,
|
762
|
+
I8x16NarrowI16x8U,
|
763
|
+
I8x16Shl,
|
764
|
+
I8x16ShrS,
|
765
|
+
I8x16ShrU,
|
766
|
+
I8x16Add,
|
767
|
+
I8x16AddSatS,
|
768
|
+
I8x16AddSatU,
|
769
|
+
I8x16Sub,
|
770
|
+
I8x16SubSatS,
|
771
|
+
I8x16SubSatU,
|
772
|
+
I8x16MinS,
|
773
|
+
I8x16MinU,
|
774
|
+
I8x16MaxS,
|
775
|
+
I8x16MaxU,
|
776
|
+
I8x16AvgrU,
|
777
|
+
I16x8ExtAddPairwiseI8x16S,
|
778
|
+
I16x8ExtAddPairwiseI8x16U,
|
779
|
+
I16x8Abs,
|
780
|
+
I16x8Neg,
|
781
|
+
I16x8Q15MulrSatS,
|
782
|
+
I16x8AllTrue,
|
783
|
+
I16x8Bitmask,
|
784
|
+
I16x8NarrowI32x4S,
|
785
|
+
I16x8NarrowI32x4U,
|
786
|
+
I16x8ExtendLowI8x16S,
|
787
|
+
I16x8ExtendHighI8x16S,
|
788
|
+
I16x8ExtendLowI8x16U,
|
789
|
+
I16x8ExtendHighI8x16U,
|
790
|
+
I16x8Shl,
|
791
|
+
I16x8ShrS,
|
792
|
+
I16x8ShrU,
|
793
|
+
I16x8Add,
|
794
|
+
I16x8AddSatS,
|
795
|
+
I16x8AddSatU,
|
796
|
+
I16x8Sub,
|
797
|
+
I16x8SubSatS,
|
798
|
+
I16x8SubSatU,
|
799
|
+
I16x8Mul,
|
800
|
+
I16x8MinS,
|
801
|
+
I16x8MinU,
|
802
|
+
I16x8MaxS,
|
803
|
+
I16x8MaxU,
|
804
|
+
I16x8AvgrU,
|
805
|
+
I16x8ExtMulLowI8x16S,
|
806
|
+
I16x8ExtMulHighI8x16S,
|
807
|
+
I16x8ExtMulLowI8x16U,
|
808
|
+
I16x8ExtMulHighI8x16U,
|
809
|
+
I32x4ExtAddPairwiseI16x8S,
|
810
|
+
I32x4ExtAddPairwiseI16x8U,
|
811
|
+
I32x4Abs,
|
812
|
+
I32x4Neg,
|
813
|
+
I32x4AllTrue,
|
814
|
+
I32x4Bitmask,
|
815
|
+
I32x4ExtendLowI16x8S,
|
816
|
+
I32x4ExtendHighI16x8S,
|
817
|
+
I32x4ExtendLowI16x8U,
|
818
|
+
I32x4ExtendHighI16x8U,
|
819
|
+
I32x4Shl,
|
820
|
+
I32x4ShrS,
|
821
|
+
I32x4ShrU,
|
822
|
+
I32x4Add,
|
823
|
+
I32x4Sub,
|
824
|
+
I32x4Mul,
|
825
|
+
I32x4MinS,
|
826
|
+
I32x4MinU,
|
827
|
+
I32x4MaxS,
|
828
|
+
I32x4MaxU,
|
829
|
+
I32x4DotI16x8S,
|
830
|
+
I32x4ExtMulLowI16x8S,
|
831
|
+
I32x4ExtMulHighI16x8S,
|
832
|
+
I32x4ExtMulLowI16x8U,
|
833
|
+
I32x4ExtMulHighI16x8U,
|
834
|
+
I64x2Abs,
|
835
|
+
I64x2Neg,
|
836
|
+
I64x2AllTrue,
|
837
|
+
I64x2Bitmask,
|
838
|
+
I64x2ExtendLowI32x4S,
|
839
|
+
I64x2ExtendHighI32x4S,
|
840
|
+
I64x2ExtendLowI32x4U,
|
841
|
+
I64x2ExtendHighI32x4U,
|
842
|
+
I64x2Shl,
|
843
|
+
I64x2ShrS,
|
844
|
+
I64x2ShrU,
|
845
|
+
I64x2Add,
|
846
|
+
I64x2Sub,
|
847
|
+
I64x2Mul,
|
848
|
+
I64x2ExtMulLowI32x4S,
|
849
|
+
I64x2ExtMulHighI32x4S,
|
850
|
+
I64x2ExtMulLowI32x4U,
|
851
|
+
I64x2ExtMulHighI32x4U,
|
852
|
+
F32x4Ceil,
|
853
|
+
F32x4Floor,
|
854
|
+
F32x4Trunc,
|
855
|
+
F32x4Nearest,
|
856
|
+
F32x4Abs,
|
857
|
+
F32x4Neg,
|
858
|
+
F32x4Sqrt,
|
859
|
+
F32x4Add,
|
860
|
+
F32x4Sub,
|
861
|
+
F32x4Mul,
|
862
|
+
F32x4Div,
|
863
|
+
F32x4Min,
|
864
|
+
F32x4Max,
|
865
|
+
F32x4PMin,
|
866
|
+
F32x4PMax,
|
867
|
+
F64x2Ceil,
|
868
|
+
F64x2Floor,
|
869
|
+
F64x2Trunc,
|
870
|
+
F64x2Nearest,
|
871
|
+
F64x2Abs,
|
872
|
+
F64x2Neg,
|
873
|
+
F64x2Sqrt,
|
874
|
+
F64x2Add,
|
875
|
+
F64x2Sub,
|
876
|
+
F64x2Mul,
|
877
|
+
F64x2Div,
|
878
|
+
F64x2Min,
|
879
|
+
F64x2Max,
|
880
|
+
F64x2PMin,
|
881
|
+
F64x2PMax,
|
882
|
+
I32x4TruncSatF32x4S,
|
883
|
+
I32x4TruncSatF32x4U,
|
884
|
+
F32x4ConvertI32x4S,
|
885
|
+
F32x4ConvertI32x4U,
|
886
|
+
I32x4TruncSatF64x2SZero,
|
887
|
+
I32x4TruncSatF64x2UZero,
|
888
|
+
F64x2ConvertLowI32x4S,
|
889
|
+
F64x2ConvertLowI32x4U,
|
890
|
+
F32x4DemoteF64x2Zero,
|
891
|
+
F64x2PromoteLowF32x4,
|
892
|
+
|
893
|
+
// Relaxed simd proposal
|
894
|
+
I8x16RelaxedSwizzle,
|
895
|
+
I32x4RelaxedTruncF32x4S,
|
896
|
+
I32x4RelaxedTruncF32x4U,
|
897
|
+
I32x4RelaxedTruncF64x2SZero,
|
898
|
+
I32x4RelaxedTruncF64x2UZero,
|
899
|
+
F32x4RelaxedMadd,
|
900
|
+
F32x4RelaxedNmadd,
|
901
|
+
F64x2RelaxedMadd,
|
902
|
+
F64x2RelaxedNmadd,
|
903
|
+
I8x16RelaxedLaneselect,
|
904
|
+
I16x8RelaxedLaneselect,
|
905
|
+
I32x4RelaxedLaneselect,
|
906
|
+
I64x2RelaxedLaneselect,
|
907
|
+
F32x4RelaxedMin,
|
908
|
+
F32x4RelaxedMax,
|
909
|
+
F64x2RelaxedMin,
|
910
|
+
F64x2RelaxedMax,
|
911
|
+
I16x8RelaxedQ15mulrS,
|
912
|
+
I16x8RelaxedDotI8x16I7x16S,
|
913
|
+
I32x4RelaxedDotI8x16I7x16AddS,
|
914
|
+
|
915
|
+
// Atomic instructions (the threads proposal)
|
916
|
+
MemoryAtomicNotify(MemArg),
|
917
|
+
MemoryAtomicWait32(MemArg),
|
918
|
+
MemoryAtomicWait64(MemArg),
|
919
|
+
AtomicFence,
|
920
|
+
I32AtomicLoad(MemArg),
|
921
|
+
I64AtomicLoad(MemArg),
|
922
|
+
I32AtomicLoad8U(MemArg),
|
923
|
+
I32AtomicLoad16U(MemArg),
|
924
|
+
I64AtomicLoad8U(MemArg),
|
925
|
+
I64AtomicLoad16U(MemArg),
|
926
|
+
I64AtomicLoad32U(MemArg),
|
927
|
+
I32AtomicStore(MemArg),
|
928
|
+
I64AtomicStore(MemArg),
|
929
|
+
I32AtomicStore8(MemArg),
|
930
|
+
I32AtomicStore16(MemArg),
|
931
|
+
I64AtomicStore8(MemArg),
|
932
|
+
I64AtomicStore16(MemArg),
|
933
|
+
I64AtomicStore32(MemArg),
|
934
|
+
I32AtomicRmwAdd(MemArg),
|
935
|
+
I64AtomicRmwAdd(MemArg),
|
936
|
+
I32AtomicRmw8AddU(MemArg),
|
937
|
+
I32AtomicRmw16AddU(MemArg),
|
938
|
+
I64AtomicRmw8AddU(MemArg),
|
939
|
+
I64AtomicRmw16AddU(MemArg),
|
940
|
+
I64AtomicRmw32AddU(MemArg),
|
941
|
+
I32AtomicRmwSub(MemArg),
|
942
|
+
I64AtomicRmwSub(MemArg),
|
943
|
+
I32AtomicRmw8SubU(MemArg),
|
944
|
+
I32AtomicRmw16SubU(MemArg),
|
945
|
+
I64AtomicRmw8SubU(MemArg),
|
946
|
+
I64AtomicRmw16SubU(MemArg),
|
947
|
+
I64AtomicRmw32SubU(MemArg),
|
948
|
+
I32AtomicRmwAnd(MemArg),
|
949
|
+
I64AtomicRmwAnd(MemArg),
|
950
|
+
I32AtomicRmw8AndU(MemArg),
|
951
|
+
I32AtomicRmw16AndU(MemArg),
|
952
|
+
I64AtomicRmw8AndU(MemArg),
|
953
|
+
I64AtomicRmw16AndU(MemArg),
|
954
|
+
I64AtomicRmw32AndU(MemArg),
|
955
|
+
I32AtomicRmwOr(MemArg),
|
956
|
+
I64AtomicRmwOr(MemArg),
|
957
|
+
I32AtomicRmw8OrU(MemArg),
|
958
|
+
I32AtomicRmw16OrU(MemArg),
|
959
|
+
I64AtomicRmw8OrU(MemArg),
|
960
|
+
I64AtomicRmw16OrU(MemArg),
|
961
|
+
I64AtomicRmw32OrU(MemArg),
|
962
|
+
I32AtomicRmwXor(MemArg),
|
963
|
+
I64AtomicRmwXor(MemArg),
|
964
|
+
I32AtomicRmw8XorU(MemArg),
|
965
|
+
I32AtomicRmw16XorU(MemArg),
|
966
|
+
I64AtomicRmw8XorU(MemArg),
|
967
|
+
I64AtomicRmw16XorU(MemArg),
|
968
|
+
I64AtomicRmw32XorU(MemArg),
|
969
|
+
I32AtomicRmwXchg(MemArg),
|
970
|
+
I64AtomicRmwXchg(MemArg),
|
971
|
+
I32AtomicRmw8XchgU(MemArg),
|
972
|
+
I32AtomicRmw16XchgU(MemArg),
|
973
|
+
I64AtomicRmw8XchgU(MemArg),
|
974
|
+
I64AtomicRmw16XchgU(MemArg),
|
975
|
+
I64AtomicRmw32XchgU(MemArg),
|
976
|
+
I32AtomicRmwCmpxchg(MemArg),
|
977
|
+
I64AtomicRmwCmpxchg(MemArg),
|
978
|
+
I32AtomicRmw8CmpxchgU(MemArg),
|
979
|
+
I32AtomicRmw16CmpxchgU(MemArg),
|
980
|
+
I64AtomicRmw8CmpxchgU(MemArg),
|
981
|
+
I64AtomicRmw16CmpxchgU(MemArg),
|
982
|
+
I64AtomicRmw32CmpxchgU(MemArg),
|
983
|
+
}
|
984
|
+
|
985
|
+
impl Encode for Instruction<'_> {
|
986
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
987
|
+
match *self {
|
988
|
+
// Control instructions.
|
989
|
+
Instruction::Unreachable => sink.push(0x00),
|
990
|
+
Instruction::Nop => sink.push(0x01),
|
991
|
+
Instruction::Block(bt) => {
|
992
|
+
sink.push(0x02);
|
993
|
+
bt.encode(sink);
|
994
|
+
}
|
995
|
+
Instruction::Loop(bt) => {
|
996
|
+
sink.push(0x03);
|
997
|
+
bt.encode(sink);
|
998
|
+
}
|
999
|
+
Instruction::If(bt) => {
|
1000
|
+
sink.push(0x04);
|
1001
|
+
bt.encode(sink);
|
1002
|
+
}
|
1003
|
+
Instruction::Else => sink.push(0x05),
|
1004
|
+
Instruction::Try(bt) => {
|
1005
|
+
sink.push(0x06);
|
1006
|
+
bt.encode(sink);
|
1007
|
+
}
|
1008
|
+
Instruction::Catch(t) => {
|
1009
|
+
sink.push(0x07);
|
1010
|
+
t.encode(sink);
|
1011
|
+
}
|
1012
|
+
Instruction::Throw(t) => {
|
1013
|
+
sink.push(0x08);
|
1014
|
+
t.encode(sink);
|
1015
|
+
}
|
1016
|
+
Instruction::Rethrow(l) => {
|
1017
|
+
sink.push(0x09);
|
1018
|
+
l.encode(sink);
|
1019
|
+
}
|
1020
|
+
Instruction::ThrowRef => {
|
1021
|
+
sink.push(0x0A);
|
1022
|
+
}
|
1023
|
+
Instruction::End => sink.push(0x0B),
|
1024
|
+
Instruction::Br(l) => {
|
1025
|
+
sink.push(0x0C);
|
1026
|
+
l.encode(sink);
|
1027
|
+
}
|
1028
|
+
Instruction::BrIf(l) => {
|
1029
|
+
sink.push(0x0D);
|
1030
|
+
l.encode(sink);
|
1031
|
+
}
|
1032
|
+
Instruction::BrTable(ref ls, l) => {
|
1033
|
+
sink.push(0x0E);
|
1034
|
+
ls.encode(sink);
|
1035
|
+
l.encode(sink);
|
1036
|
+
}
|
1037
|
+
Instruction::BrOnNull(l) => {
|
1038
|
+
sink.push(0xD5);
|
1039
|
+
l.encode(sink);
|
1040
|
+
}
|
1041
|
+
Instruction::BrOnNonNull(l) => {
|
1042
|
+
sink.push(0xD6);
|
1043
|
+
l.encode(sink);
|
1044
|
+
}
|
1045
|
+
Instruction::Return => sink.push(0x0F),
|
1046
|
+
Instruction::Call(f) => {
|
1047
|
+
sink.push(0x10);
|
1048
|
+
f.encode(sink);
|
1049
|
+
}
|
1050
|
+
Instruction::CallRef(ty) => {
|
1051
|
+
sink.push(0x14);
|
1052
|
+
ty.encode(sink);
|
1053
|
+
}
|
1054
|
+
Instruction::CallIndirect { ty, table } => {
|
1055
|
+
sink.push(0x11);
|
1056
|
+
ty.encode(sink);
|
1057
|
+
table.encode(sink);
|
1058
|
+
}
|
1059
|
+
Instruction::ReturnCallRef(ty) => {
|
1060
|
+
sink.push(0x15);
|
1061
|
+
ty.encode(sink);
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
Instruction::ReturnCall(f) => {
|
1065
|
+
sink.push(0x12);
|
1066
|
+
f.encode(sink);
|
1067
|
+
}
|
1068
|
+
Instruction::ReturnCallIndirect { ty, table } => {
|
1069
|
+
sink.push(0x13);
|
1070
|
+
ty.encode(sink);
|
1071
|
+
table.encode(sink);
|
1072
|
+
}
|
1073
|
+
Instruction::Delegate(l) => {
|
1074
|
+
sink.push(0x18);
|
1075
|
+
l.encode(sink);
|
1076
|
+
}
|
1077
|
+
Instruction::CatchAll => {
|
1078
|
+
sink.push(0x19);
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
// Parametric instructions.
|
1082
|
+
Instruction::Drop => sink.push(0x1A),
|
1083
|
+
Instruction::Select => sink.push(0x1B),
|
1084
|
+
Instruction::TypedSelect(ty) => {
|
1085
|
+
sink.push(0x1c);
|
1086
|
+
[ty].encode(sink);
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
Instruction::TryTable(ty, ref catches) => {
|
1090
|
+
sink.push(0x1f);
|
1091
|
+
ty.encode(sink);
|
1092
|
+
catches.encode(sink);
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
// Variable instructions.
|
1096
|
+
Instruction::LocalGet(l) => {
|
1097
|
+
sink.push(0x20);
|
1098
|
+
l.encode(sink);
|
1099
|
+
}
|
1100
|
+
Instruction::LocalSet(l) => {
|
1101
|
+
sink.push(0x21);
|
1102
|
+
l.encode(sink);
|
1103
|
+
}
|
1104
|
+
Instruction::LocalTee(l) => {
|
1105
|
+
sink.push(0x22);
|
1106
|
+
l.encode(sink);
|
1107
|
+
}
|
1108
|
+
Instruction::GlobalGet(g) => {
|
1109
|
+
sink.push(0x23);
|
1110
|
+
g.encode(sink);
|
1111
|
+
}
|
1112
|
+
Instruction::GlobalSet(g) => {
|
1113
|
+
sink.push(0x24);
|
1114
|
+
g.encode(sink);
|
1115
|
+
}
|
1116
|
+
Instruction::TableGet(table) => {
|
1117
|
+
sink.push(0x25);
|
1118
|
+
table.encode(sink);
|
1119
|
+
}
|
1120
|
+
Instruction::TableSet(table) => {
|
1121
|
+
sink.push(0x26);
|
1122
|
+
table.encode(sink);
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
// Memory instructions.
|
1126
|
+
Instruction::I32Load(m) => {
|
1127
|
+
sink.push(0x28);
|
1128
|
+
m.encode(sink);
|
1129
|
+
}
|
1130
|
+
Instruction::I64Load(m) => {
|
1131
|
+
sink.push(0x29);
|
1132
|
+
m.encode(sink);
|
1133
|
+
}
|
1134
|
+
Instruction::F32Load(m) => {
|
1135
|
+
sink.push(0x2A);
|
1136
|
+
m.encode(sink);
|
1137
|
+
}
|
1138
|
+
Instruction::F64Load(m) => {
|
1139
|
+
sink.push(0x2B);
|
1140
|
+
m.encode(sink);
|
1141
|
+
}
|
1142
|
+
Instruction::I32Load8S(m) => {
|
1143
|
+
sink.push(0x2C);
|
1144
|
+
m.encode(sink);
|
1145
|
+
}
|
1146
|
+
Instruction::I32Load8U(m) => {
|
1147
|
+
sink.push(0x2D);
|
1148
|
+
m.encode(sink);
|
1149
|
+
}
|
1150
|
+
Instruction::I32Load16S(m) => {
|
1151
|
+
sink.push(0x2E);
|
1152
|
+
m.encode(sink);
|
1153
|
+
}
|
1154
|
+
Instruction::I32Load16U(m) => {
|
1155
|
+
sink.push(0x2F);
|
1156
|
+
m.encode(sink);
|
1157
|
+
}
|
1158
|
+
Instruction::I64Load8S(m) => {
|
1159
|
+
sink.push(0x30);
|
1160
|
+
m.encode(sink);
|
1161
|
+
}
|
1162
|
+
Instruction::I64Load8U(m) => {
|
1163
|
+
sink.push(0x31);
|
1164
|
+
m.encode(sink);
|
1165
|
+
}
|
1166
|
+
Instruction::I64Load16S(m) => {
|
1167
|
+
sink.push(0x32);
|
1168
|
+
m.encode(sink);
|
1169
|
+
}
|
1170
|
+
Instruction::I64Load16U(m) => {
|
1171
|
+
sink.push(0x33);
|
1172
|
+
m.encode(sink);
|
1173
|
+
}
|
1174
|
+
Instruction::I64Load32S(m) => {
|
1175
|
+
sink.push(0x34);
|
1176
|
+
m.encode(sink);
|
1177
|
+
}
|
1178
|
+
Instruction::I64Load32U(m) => {
|
1179
|
+
sink.push(0x35);
|
1180
|
+
m.encode(sink);
|
1181
|
+
}
|
1182
|
+
Instruction::I32Store(m) => {
|
1183
|
+
sink.push(0x36);
|
1184
|
+
m.encode(sink);
|
1185
|
+
}
|
1186
|
+
Instruction::I64Store(m) => {
|
1187
|
+
sink.push(0x37);
|
1188
|
+
m.encode(sink);
|
1189
|
+
}
|
1190
|
+
Instruction::F32Store(m) => {
|
1191
|
+
sink.push(0x38);
|
1192
|
+
m.encode(sink);
|
1193
|
+
}
|
1194
|
+
Instruction::F64Store(m) => {
|
1195
|
+
sink.push(0x39);
|
1196
|
+
m.encode(sink);
|
1197
|
+
}
|
1198
|
+
Instruction::I32Store8(m) => {
|
1199
|
+
sink.push(0x3A);
|
1200
|
+
m.encode(sink);
|
1201
|
+
}
|
1202
|
+
Instruction::I32Store16(m) => {
|
1203
|
+
sink.push(0x3B);
|
1204
|
+
m.encode(sink);
|
1205
|
+
}
|
1206
|
+
Instruction::I64Store8(m) => {
|
1207
|
+
sink.push(0x3C);
|
1208
|
+
m.encode(sink);
|
1209
|
+
}
|
1210
|
+
Instruction::I64Store16(m) => {
|
1211
|
+
sink.push(0x3D);
|
1212
|
+
m.encode(sink);
|
1213
|
+
}
|
1214
|
+
Instruction::I64Store32(m) => {
|
1215
|
+
sink.push(0x3E);
|
1216
|
+
m.encode(sink);
|
1217
|
+
}
|
1218
|
+
Instruction::MemorySize(i) => {
|
1219
|
+
sink.push(0x3F);
|
1220
|
+
i.encode(sink);
|
1221
|
+
}
|
1222
|
+
Instruction::MemoryGrow(i) => {
|
1223
|
+
sink.push(0x40);
|
1224
|
+
i.encode(sink);
|
1225
|
+
}
|
1226
|
+
Instruction::MemoryInit { mem, data_index } => {
|
1227
|
+
sink.push(0xfc);
|
1228
|
+
sink.push(0x08);
|
1229
|
+
data_index.encode(sink);
|
1230
|
+
mem.encode(sink);
|
1231
|
+
}
|
1232
|
+
Instruction::DataDrop(data) => {
|
1233
|
+
sink.push(0xfc);
|
1234
|
+
sink.push(0x09);
|
1235
|
+
data.encode(sink);
|
1236
|
+
}
|
1237
|
+
Instruction::MemoryCopy { src_mem, dst_mem } => {
|
1238
|
+
sink.push(0xfc);
|
1239
|
+
sink.push(0x0a);
|
1240
|
+
dst_mem.encode(sink);
|
1241
|
+
src_mem.encode(sink);
|
1242
|
+
}
|
1243
|
+
Instruction::MemoryFill(mem) => {
|
1244
|
+
sink.push(0xfc);
|
1245
|
+
sink.push(0x0b);
|
1246
|
+
mem.encode(sink);
|
1247
|
+
}
|
1248
|
+
Instruction::MemoryDiscard(mem) => {
|
1249
|
+
sink.push(0xfc);
|
1250
|
+
sink.push(0x12);
|
1251
|
+
mem.encode(sink);
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
// Numeric instructions.
|
1255
|
+
Instruction::I32Const(x) => {
|
1256
|
+
sink.push(0x41);
|
1257
|
+
x.encode(sink);
|
1258
|
+
}
|
1259
|
+
Instruction::I64Const(x) => {
|
1260
|
+
sink.push(0x42);
|
1261
|
+
x.encode(sink);
|
1262
|
+
}
|
1263
|
+
Instruction::F32Const(x) => {
|
1264
|
+
sink.push(0x43);
|
1265
|
+
let x = x.to_bits();
|
1266
|
+
sink.extend(x.to_le_bytes().iter().copied());
|
1267
|
+
}
|
1268
|
+
Instruction::F64Const(x) => {
|
1269
|
+
sink.push(0x44);
|
1270
|
+
let x = x.to_bits();
|
1271
|
+
sink.extend(x.to_le_bytes().iter().copied());
|
1272
|
+
}
|
1273
|
+
Instruction::I32Eqz => sink.push(0x45),
|
1274
|
+
Instruction::I32Eq => sink.push(0x46),
|
1275
|
+
Instruction::I32Ne => sink.push(0x47),
|
1276
|
+
Instruction::I32LtS => sink.push(0x48),
|
1277
|
+
Instruction::I32LtU => sink.push(0x49),
|
1278
|
+
Instruction::I32GtS => sink.push(0x4A),
|
1279
|
+
Instruction::I32GtU => sink.push(0x4B),
|
1280
|
+
Instruction::I32LeS => sink.push(0x4C),
|
1281
|
+
Instruction::I32LeU => sink.push(0x4D),
|
1282
|
+
Instruction::I32GeS => sink.push(0x4E),
|
1283
|
+
Instruction::I32GeU => sink.push(0x4F),
|
1284
|
+
Instruction::I64Eqz => sink.push(0x50),
|
1285
|
+
Instruction::I64Eq => sink.push(0x51),
|
1286
|
+
Instruction::I64Ne => sink.push(0x52),
|
1287
|
+
Instruction::I64LtS => sink.push(0x53),
|
1288
|
+
Instruction::I64LtU => sink.push(0x54),
|
1289
|
+
Instruction::I64GtS => sink.push(0x55),
|
1290
|
+
Instruction::I64GtU => sink.push(0x56),
|
1291
|
+
Instruction::I64LeS => sink.push(0x57),
|
1292
|
+
Instruction::I64LeU => sink.push(0x58),
|
1293
|
+
Instruction::I64GeS => sink.push(0x59),
|
1294
|
+
Instruction::I64GeU => sink.push(0x5A),
|
1295
|
+
Instruction::F32Eq => sink.push(0x5B),
|
1296
|
+
Instruction::F32Ne => sink.push(0x5C),
|
1297
|
+
Instruction::F32Lt => sink.push(0x5D),
|
1298
|
+
Instruction::F32Gt => sink.push(0x5E),
|
1299
|
+
Instruction::F32Le => sink.push(0x5F),
|
1300
|
+
Instruction::F32Ge => sink.push(0x60),
|
1301
|
+
Instruction::F64Eq => sink.push(0x61),
|
1302
|
+
Instruction::F64Ne => sink.push(0x62),
|
1303
|
+
Instruction::F64Lt => sink.push(0x63),
|
1304
|
+
Instruction::F64Gt => sink.push(0x64),
|
1305
|
+
Instruction::F64Le => sink.push(0x65),
|
1306
|
+
Instruction::F64Ge => sink.push(0x66),
|
1307
|
+
Instruction::I32Clz => sink.push(0x67),
|
1308
|
+
Instruction::I32Ctz => sink.push(0x68),
|
1309
|
+
Instruction::I32Popcnt => sink.push(0x69),
|
1310
|
+
Instruction::I32Add => sink.push(0x6A),
|
1311
|
+
Instruction::I32Sub => sink.push(0x6B),
|
1312
|
+
Instruction::I32Mul => sink.push(0x6C),
|
1313
|
+
Instruction::I32DivS => sink.push(0x6D),
|
1314
|
+
Instruction::I32DivU => sink.push(0x6E),
|
1315
|
+
Instruction::I32RemS => sink.push(0x6F),
|
1316
|
+
Instruction::I32RemU => sink.push(0x70),
|
1317
|
+
Instruction::I32And => sink.push(0x71),
|
1318
|
+
Instruction::I32Or => sink.push(0x72),
|
1319
|
+
Instruction::I32Xor => sink.push(0x73),
|
1320
|
+
Instruction::I32Shl => sink.push(0x74),
|
1321
|
+
Instruction::I32ShrS => sink.push(0x75),
|
1322
|
+
Instruction::I32ShrU => sink.push(0x76),
|
1323
|
+
Instruction::I32Rotl => sink.push(0x77),
|
1324
|
+
Instruction::I32Rotr => sink.push(0x78),
|
1325
|
+
Instruction::I64Clz => sink.push(0x79),
|
1326
|
+
Instruction::I64Ctz => sink.push(0x7A),
|
1327
|
+
Instruction::I64Popcnt => sink.push(0x7B),
|
1328
|
+
Instruction::I64Add => sink.push(0x7C),
|
1329
|
+
Instruction::I64Sub => sink.push(0x7D),
|
1330
|
+
Instruction::I64Mul => sink.push(0x7E),
|
1331
|
+
Instruction::I64DivS => sink.push(0x7F),
|
1332
|
+
Instruction::I64DivU => sink.push(0x80),
|
1333
|
+
Instruction::I64RemS => sink.push(0x81),
|
1334
|
+
Instruction::I64RemU => sink.push(0x82),
|
1335
|
+
Instruction::I64And => sink.push(0x83),
|
1336
|
+
Instruction::I64Or => sink.push(0x84),
|
1337
|
+
Instruction::I64Xor => sink.push(0x85),
|
1338
|
+
Instruction::I64Shl => sink.push(0x86),
|
1339
|
+
Instruction::I64ShrS => sink.push(0x87),
|
1340
|
+
Instruction::I64ShrU => sink.push(0x88),
|
1341
|
+
Instruction::I64Rotl => sink.push(0x89),
|
1342
|
+
Instruction::I64Rotr => sink.push(0x8A),
|
1343
|
+
Instruction::F32Abs => sink.push(0x8B),
|
1344
|
+
Instruction::F32Neg => sink.push(0x8C),
|
1345
|
+
Instruction::F32Ceil => sink.push(0x8D),
|
1346
|
+
Instruction::F32Floor => sink.push(0x8E),
|
1347
|
+
Instruction::F32Trunc => sink.push(0x8F),
|
1348
|
+
Instruction::F32Nearest => sink.push(0x90),
|
1349
|
+
Instruction::F32Sqrt => sink.push(0x91),
|
1350
|
+
Instruction::F32Add => sink.push(0x92),
|
1351
|
+
Instruction::F32Sub => sink.push(0x93),
|
1352
|
+
Instruction::F32Mul => sink.push(0x94),
|
1353
|
+
Instruction::F32Div => sink.push(0x95),
|
1354
|
+
Instruction::F32Min => sink.push(0x96),
|
1355
|
+
Instruction::F32Max => sink.push(0x97),
|
1356
|
+
Instruction::F32Copysign => sink.push(0x98),
|
1357
|
+
Instruction::F64Abs => sink.push(0x99),
|
1358
|
+
Instruction::F64Neg => sink.push(0x9A),
|
1359
|
+
Instruction::F64Ceil => sink.push(0x9B),
|
1360
|
+
Instruction::F64Floor => sink.push(0x9C),
|
1361
|
+
Instruction::F64Trunc => sink.push(0x9D),
|
1362
|
+
Instruction::F64Nearest => sink.push(0x9E),
|
1363
|
+
Instruction::F64Sqrt => sink.push(0x9F),
|
1364
|
+
Instruction::F64Add => sink.push(0xA0),
|
1365
|
+
Instruction::F64Sub => sink.push(0xA1),
|
1366
|
+
Instruction::F64Mul => sink.push(0xA2),
|
1367
|
+
Instruction::F64Div => sink.push(0xA3),
|
1368
|
+
Instruction::F64Min => sink.push(0xA4),
|
1369
|
+
Instruction::F64Max => sink.push(0xA5),
|
1370
|
+
Instruction::F64Copysign => sink.push(0xA6),
|
1371
|
+
Instruction::I32WrapI64 => sink.push(0xA7),
|
1372
|
+
Instruction::I32TruncF32S => sink.push(0xA8),
|
1373
|
+
Instruction::I32TruncF32U => sink.push(0xA9),
|
1374
|
+
Instruction::I32TruncF64S => sink.push(0xAA),
|
1375
|
+
Instruction::I32TruncF64U => sink.push(0xAB),
|
1376
|
+
Instruction::I64ExtendI32S => sink.push(0xAC),
|
1377
|
+
Instruction::I64ExtendI32U => sink.push(0xAD),
|
1378
|
+
Instruction::I64TruncF32S => sink.push(0xAE),
|
1379
|
+
Instruction::I64TruncF32U => sink.push(0xAF),
|
1380
|
+
Instruction::I64TruncF64S => sink.push(0xB0),
|
1381
|
+
Instruction::I64TruncF64U => sink.push(0xB1),
|
1382
|
+
Instruction::F32ConvertI32S => sink.push(0xB2),
|
1383
|
+
Instruction::F32ConvertI32U => sink.push(0xB3),
|
1384
|
+
Instruction::F32ConvertI64S => sink.push(0xB4),
|
1385
|
+
Instruction::F32ConvertI64U => sink.push(0xB5),
|
1386
|
+
Instruction::F32DemoteF64 => sink.push(0xB6),
|
1387
|
+
Instruction::F64ConvertI32S => sink.push(0xB7),
|
1388
|
+
Instruction::F64ConvertI32U => sink.push(0xB8),
|
1389
|
+
Instruction::F64ConvertI64S => sink.push(0xB9),
|
1390
|
+
Instruction::F64ConvertI64U => sink.push(0xBA),
|
1391
|
+
Instruction::F64PromoteF32 => sink.push(0xBB),
|
1392
|
+
Instruction::I32ReinterpretF32 => sink.push(0xBC),
|
1393
|
+
Instruction::I64ReinterpretF64 => sink.push(0xBD),
|
1394
|
+
Instruction::F32ReinterpretI32 => sink.push(0xBE),
|
1395
|
+
Instruction::F64ReinterpretI64 => sink.push(0xBF),
|
1396
|
+
Instruction::I32Extend8S => sink.push(0xC0),
|
1397
|
+
Instruction::I32Extend16S => sink.push(0xC1),
|
1398
|
+
Instruction::I64Extend8S => sink.push(0xC2),
|
1399
|
+
Instruction::I64Extend16S => sink.push(0xC3),
|
1400
|
+
Instruction::I64Extend32S => sink.push(0xC4),
|
1401
|
+
|
1402
|
+
Instruction::I32TruncSatF32S => {
|
1403
|
+
sink.push(0xFC);
|
1404
|
+
sink.push(0x00);
|
1405
|
+
}
|
1406
|
+
Instruction::I32TruncSatF32U => {
|
1407
|
+
sink.push(0xFC);
|
1408
|
+
sink.push(0x01);
|
1409
|
+
}
|
1410
|
+
Instruction::I32TruncSatF64S => {
|
1411
|
+
sink.push(0xFC);
|
1412
|
+
sink.push(0x02);
|
1413
|
+
}
|
1414
|
+
Instruction::I32TruncSatF64U => {
|
1415
|
+
sink.push(0xFC);
|
1416
|
+
sink.push(0x03);
|
1417
|
+
}
|
1418
|
+
Instruction::I64TruncSatF32S => {
|
1419
|
+
sink.push(0xFC);
|
1420
|
+
sink.push(0x04);
|
1421
|
+
}
|
1422
|
+
Instruction::I64TruncSatF32U => {
|
1423
|
+
sink.push(0xFC);
|
1424
|
+
sink.push(0x05);
|
1425
|
+
}
|
1426
|
+
Instruction::I64TruncSatF64S => {
|
1427
|
+
sink.push(0xFC);
|
1428
|
+
sink.push(0x06);
|
1429
|
+
}
|
1430
|
+
Instruction::I64TruncSatF64U => {
|
1431
|
+
sink.push(0xFC);
|
1432
|
+
sink.push(0x07);
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
// Reference types instructions.
|
1436
|
+
Instruction::RefNull(ty) => {
|
1437
|
+
sink.push(0xd0);
|
1438
|
+
ty.encode(sink);
|
1439
|
+
}
|
1440
|
+
Instruction::RefIsNull => sink.push(0xd1),
|
1441
|
+
Instruction::RefFunc(f) => {
|
1442
|
+
sink.push(0xd2);
|
1443
|
+
f.encode(sink);
|
1444
|
+
}
|
1445
|
+
Instruction::RefEq => sink.push(0xd3),
|
1446
|
+
Instruction::RefAsNonNull => sink.push(0xd4),
|
1447
|
+
|
1448
|
+
// GC instructions.
|
1449
|
+
Instruction::StructNew(type_index) => {
|
1450
|
+
sink.push(0xfb);
|
1451
|
+
sink.push(0x00);
|
1452
|
+
type_index.encode(sink);
|
1453
|
+
}
|
1454
|
+
Instruction::StructNewDefault(type_index) => {
|
1455
|
+
sink.push(0xfb);
|
1456
|
+
sink.push(0x01);
|
1457
|
+
type_index.encode(sink);
|
1458
|
+
}
|
1459
|
+
Instruction::StructGet {
|
1460
|
+
struct_type_index,
|
1461
|
+
field_index,
|
1462
|
+
} => {
|
1463
|
+
sink.push(0xfb);
|
1464
|
+
sink.push(0x02);
|
1465
|
+
struct_type_index.encode(sink);
|
1466
|
+
field_index.encode(sink);
|
1467
|
+
}
|
1468
|
+
Instruction::StructGetS {
|
1469
|
+
struct_type_index,
|
1470
|
+
field_index,
|
1471
|
+
} => {
|
1472
|
+
sink.push(0xfb);
|
1473
|
+
sink.push(0x03);
|
1474
|
+
struct_type_index.encode(sink);
|
1475
|
+
field_index.encode(sink);
|
1476
|
+
}
|
1477
|
+
Instruction::StructGetU {
|
1478
|
+
struct_type_index,
|
1479
|
+
field_index,
|
1480
|
+
} => {
|
1481
|
+
sink.push(0xfb);
|
1482
|
+
sink.push(0x04);
|
1483
|
+
struct_type_index.encode(sink);
|
1484
|
+
field_index.encode(sink);
|
1485
|
+
}
|
1486
|
+
Instruction::StructSet {
|
1487
|
+
struct_type_index,
|
1488
|
+
field_index,
|
1489
|
+
} => {
|
1490
|
+
sink.push(0xfb);
|
1491
|
+
sink.push(0x05);
|
1492
|
+
struct_type_index.encode(sink);
|
1493
|
+
field_index.encode(sink);
|
1494
|
+
}
|
1495
|
+
Instruction::ArrayNew(type_index) => {
|
1496
|
+
sink.push(0xfb);
|
1497
|
+
sink.push(0x06);
|
1498
|
+
type_index.encode(sink);
|
1499
|
+
}
|
1500
|
+
Instruction::ArrayNewDefault(type_index) => {
|
1501
|
+
sink.push(0xfb);
|
1502
|
+
sink.push(0x07);
|
1503
|
+
type_index.encode(sink);
|
1504
|
+
}
|
1505
|
+
Instruction::ArrayNewFixed {
|
1506
|
+
array_type_index,
|
1507
|
+
array_size,
|
1508
|
+
} => {
|
1509
|
+
sink.push(0xfb);
|
1510
|
+
sink.push(0x08);
|
1511
|
+
array_type_index.encode(sink);
|
1512
|
+
array_size.encode(sink);
|
1513
|
+
}
|
1514
|
+
Instruction::ArrayNewData {
|
1515
|
+
array_type_index,
|
1516
|
+
array_data_index,
|
1517
|
+
} => {
|
1518
|
+
sink.push(0xfb);
|
1519
|
+
sink.push(0x09);
|
1520
|
+
array_type_index.encode(sink);
|
1521
|
+
array_data_index.encode(sink);
|
1522
|
+
}
|
1523
|
+
Instruction::ArrayNewElem {
|
1524
|
+
array_type_index,
|
1525
|
+
array_elem_index,
|
1526
|
+
} => {
|
1527
|
+
sink.push(0xfb);
|
1528
|
+
sink.push(0x0a);
|
1529
|
+
array_type_index.encode(sink);
|
1530
|
+
array_elem_index.encode(sink);
|
1531
|
+
}
|
1532
|
+
Instruction::ArrayGet(type_index) => {
|
1533
|
+
sink.push(0xfb);
|
1534
|
+
sink.push(0x0b);
|
1535
|
+
type_index.encode(sink);
|
1536
|
+
}
|
1537
|
+
Instruction::ArrayGetS(type_index) => {
|
1538
|
+
sink.push(0xfb);
|
1539
|
+
sink.push(0x0c);
|
1540
|
+
type_index.encode(sink);
|
1541
|
+
}
|
1542
|
+
Instruction::ArrayGetU(type_index) => {
|
1543
|
+
sink.push(0xfb);
|
1544
|
+
sink.push(0x0d);
|
1545
|
+
type_index.encode(sink);
|
1546
|
+
}
|
1547
|
+
Instruction::ArraySet(type_index) => {
|
1548
|
+
sink.push(0xfb);
|
1549
|
+
sink.push(0x0e);
|
1550
|
+
type_index.encode(sink);
|
1551
|
+
}
|
1552
|
+
Instruction::ArrayLen => {
|
1553
|
+
sink.push(0xfb);
|
1554
|
+
sink.push(0x0f);
|
1555
|
+
}
|
1556
|
+
Instruction::ArrayFill(type_index) => {
|
1557
|
+
sink.push(0xfb);
|
1558
|
+
sink.push(0x10);
|
1559
|
+
type_index.encode(sink);
|
1560
|
+
}
|
1561
|
+
Instruction::ArrayCopy {
|
1562
|
+
array_type_index_dst,
|
1563
|
+
array_type_index_src,
|
1564
|
+
} => {
|
1565
|
+
sink.push(0xfb);
|
1566
|
+
sink.push(0x11);
|
1567
|
+
array_type_index_dst.encode(sink);
|
1568
|
+
array_type_index_src.encode(sink);
|
1569
|
+
}
|
1570
|
+
Instruction::ArrayInitData {
|
1571
|
+
array_type_index,
|
1572
|
+
array_data_index,
|
1573
|
+
} => {
|
1574
|
+
sink.push(0xfb);
|
1575
|
+
sink.push(0x12);
|
1576
|
+
array_type_index.encode(sink);
|
1577
|
+
array_data_index.encode(sink);
|
1578
|
+
}
|
1579
|
+
Instruction::ArrayInitElem {
|
1580
|
+
array_type_index,
|
1581
|
+
array_elem_index,
|
1582
|
+
} => {
|
1583
|
+
sink.push(0xfb);
|
1584
|
+
sink.push(0x13);
|
1585
|
+
array_type_index.encode(sink);
|
1586
|
+
array_elem_index.encode(sink);
|
1587
|
+
}
|
1588
|
+
Instruction::RefTestNonNull(heap_type) => {
|
1589
|
+
sink.push(0xfb);
|
1590
|
+
sink.push(0x14);
|
1591
|
+
heap_type.encode(sink);
|
1592
|
+
}
|
1593
|
+
Instruction::RefTestNullable(heap_type) => {
|
1594
|
+
sink.push(0xfb);
|
1595
|
+
sink.push(0x15);
|
1596
|
+
heap_type.encode(sink);
|
1597
|
+
}
|
1598
|
+
Instruction::RefCastNonNull(heap_type) => {
|
1599
|
+
sink.push(0xfb);
|
1600
|
+
sink.push(0x16);
|
1601
|
+
heap_type.encode(sink);
|
1602
|
+
}
|
1603
|
+
Instruction::RefCastNullable(heap_type) => {
|
1604
|
+
sink.push(0xfb);
|
1605
|
+
sink.push(0x17);
|
1606
|
+
heap_type.encode(sink);
|
1607
|
+
}
|
1608
|
+
Instruction::BrOnCast {
|
1609
|
+
relative_depth,
|
1610
|
+
from_ref_type,
|
1611
|
+
to_ref_type,
|
1612
|
+
} => {
|
1613
|
+
sink.push(0xfb);
|
1614
|
+
sink.push(0x18);
|
1615
|
+
let cast_flags =
|
1616
|
+
(from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
|
1617
|
+
sink.push(cast_flags);
|
1618
|
+
relative_depth.encode(sink);
|
1619
|
+
from_ref_type.heap_type.encode(sink);
|
1620
|
+
to_ref_type.heap_type.encode(sink);
|
1621
|
+
}
|
1622
|
+
Instruction::BrOnCastFail {
|
1623
|
+
relative_depth,
|
1624
|
+
from_ref_type,
|
1625
|
+
to_ref_type,
|
1626
|
+
} => {
|
1627
|
+
sink.push(0xfb);
|
1628
|
+
sink.push(0x19);
|
1629
|
+
let cast_flags =
|
1630
|
+
(from_ref_type.nullable as u8) | ((to_ref_type.nullable as u8) << 1);
|
1631
|
+
sink.push(cast_flags);
|
1632
|
+
relative_depth.encode(sink);
|
1633
|
+
from_ref_type.heap_type.encode(sink);
|
1634
|
+
to_ref_type.heap_type.encode(sink);
|
1635
|
+
}
|
1636
|
+
Instruction::AnyConvertExtern => {
|
1637
|
+
sink.push(0xfb);
|
1638
|
+
sink.push(0x1a);
|
1639
|
+
}
|
1640
|
+
Instruction::ExternConvertAny => {
|
1641
|
+
sink.push(0xfb);
|
1642
|
+
sink.push(0x1b);
|
1643
|
+
}
|
1644
|
+
Instruction::RefI31 => {
|
1645
|
+
sink.push(0xfb);
|
1646
|
+
sink.push(0x1c);
|
1647
|
+
}
|
1648
|
+
Instruction::I31GetS => {
|
1649
|
+
sink.push(0xfb);
|
1650
|
+
sink.push(0x1d);
|
1651
|
+
}
|
1652
|
+
Instruction::I31GetU => {
|
1653
|
+
sink.push(0xfb);
|
1654
|
+
sink.push(0x1e);
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
// Bulk memory instructions.
|
1658
|
+
Instruction::TableInit { elem_index, table } => {
|
1659
|
+
sink.push(0xfc);
|
1660
|
+
sink.push(0x0c);
|
1661
|
+
elem_index.encode(sink);
|
1662
|
+
table.encode(sink);
|
1663
|
+
}
|
1664
|
+
Instruction::ElemDrop(segment) => {
|
1665
|
+
sink.push(0xfc);
|
1666
|
+
sink.push(0x0d);
|
1667
|
+
segment.encode(sink);
|
1668
|
+
}
|
1669
|
+
Instruction::TableCopy {
|
1670
|
+
src_table,
|
1671
|
+
dst_table,
|
1672
|
+
} => {
|
1673
|
+
sink.push(0xfc);
|
1674
|
+
sink.push(0x0e);
|
1675
|
+
dst_table.encode(sink);
|
1676
|
+
src_table.encode(sink);
|
1677
|
+
}
|
1678
|
+
Instruction::TableGrow(table) => {
|
1679
|
+
sink.push(0xfc);
|
1680
|
+
sink.push(0x0f);
|
1681
|
+
table.encode(sink);
|
1682
|
+
}
|
1683
|
+
Instruction::TableSize(table) => {
|
1684
|
+
sink.push(0xfc);
|
1685
|
+
sink.push(0x10);
|
1686
|
+
table.encode(sink);
|
1687
|
+
}
|
1688
|
+
Instruction::TableFill(table) => {
|
1689
|
+
sink.push(0xfc);
|
1690
|
+
sink.push(0x11);
|
1691
|
+
table.encode(sink);
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
// SIMD instructions.
|
1695
|
+
Instruction::V128Load(memarg) => {
|
1696
|
+
sink.push(0xFD);
|
1697
|
+
0x00u32.encode(sink);
|
1698
|
+
memarg.encode(sink);
|
1699
|
+
}
|
1700
|
+
Instruction::V128Load8x8S(memarg) => {
|
1701
|
+
sink.push(0xFD);
|
1702
|
+
0x01u32.encode(sink);
|
1703
|
+
memarg.encode(sink);
|
1704
|
+
}
|
1705
|
+
Instruction::V128Load8x8U(memarg) => {
|
1706
|
+
sink.push(0xFD);
|
1707
|
+
0x02u32.encode(sink);
|
1708
|
+
memarg.encode(sink);
|
1709
|
+
}
|
1710
|
+
Instruction::V128Load16x4S(memarg) => {
|
1711
|
+
sink.push(0xFD);
|
1712
|
+
0x03u32.encode(sink);
|
1713
|
+
memarg.encode(sink);
|
1714
|
+
}
|
1715
|
+
Instruction::V128Load16x4U(memarg) => {
|
1716
|
+
sink.push(0xFD);
|
1717
|
+
0x04u32.encode(sink);
|
1718
|
+
memarg.encode(sink);
|
1719
|
+
}
|
1720
|
+
Instruction::V128Load32x2S(memarg) => {
|
1721
|
+
sink.push(0xFD);
|
1722
|
+
0x05u32.encode(sink);
|
1723
|
+
memarg.encode(sink);
|
1724
|
+
}
|
1725
|
+
Instruction::V128Load32x2U(memarg) => {
|
1726
|
+
sink.push(0xFD);
|
1727
|
+
0x06u32.encode(sink);
|
1728
|
+
memarg.encode(sink);
|
1729
|
+
}
|
1730
|
+
Instruction::V128Load8Splat(memarg) => {
|
1731
|
+
sink.push(0xFD);
|
1732
|
+
0x07u32.encode(sink);
|
1733
|
+
memarg.encode(sink);
|
1734
|
+
}
|
1735
|
+
Instruction::V128Load16Splat(memarg) => {
|
1736
|
+
sink.push(0xFD);
|
1737
|
+
0x08u32.encode(sink);
|
1738
|
+
memarg.encode(sink);
|
1739
|
+
}
|
1740
|
+
Instruction::V128Load32Splat(memarg) => {
|
1741
|
+
sink.push(0xFD);
|
1742
|
+
0x09u32.encode(sink);
|
1743
|
+
memarg.encode(sink);
|
1744
|
+
}
|
1745
|
+
Instruction::V128Load64Splat(memarg) => {
|
1746
|
+
sink.push(0xFD);
|
1747
|
+
0x0Au32.encode(sink);
|
1748
|
+
memarg.encode(sink);
|
1749
|
+
}
|
1750
|
+
Instruction::V128Store(memarg) => {
|
1751
|
+
sink.push(0xFD);
|
1752
|
+
0x0Bu32.encode(sink);
|
1753
|
+
memarg.encode(sink);
|
1754
|
+
}
|
1755
|
+
Instruction::V128Const(x) => {
|
1756
|
+
sink.push(0xFD);
|
1757
|
+
0x0Cu32.encode(sink);
|
1758
|
+
sink.extend(x.to_le_bytes().iter().copied());
|
1759
|
+
}
|
1760
|
+
Instruction::I8x16Shuffle(lanes) => {
|
1761
|
+
sink.push(0xFD);
|
1762
|
+
0x0Du32.encode(sink);
|
1763
|
+
assert!(lanes.iter().all(|l: &u8| *l < 32));
|
1764
|
+
sink.extend(lanes.iter().copied());
|
1765
|
+
}
|
1766
|
+
Instruction::I8x16Swizzle => {
|
1767
|
+
sink.push(0xFD);
|
1768
|
+
0x0Eu32.encode(sink);
|
1769
|
+
}
|
1770
|
+
Instruction::I8x16Splat => {
|
1771
|
+
sink.push(0xFD);
|
1772
|
+
0x0Fu32.encode(sink);
|
1773
|
+
}
|
1774
|
+
Instruction::I16x8Splat => {
|
1775
|
+
sink.push(0xFD);
|
1776
|
+
0x10u32.encode(sink);
|
1777
|
+
}
|
1778
|
+
Instruction::I32x4Splat => {
|
1779
|
+
sink.push(0xFD);
|
1780
|
+
0x11u32.encode(sink);
|
1781
|
+
}
|
1782
|
+
Instruction::I64x2Splat => {
|
1783
|
+
sink.push(0xFD);
|
1784
|
+
0x12u32.encode(sink);
|
1785
|
+
}
|
1786
|
+
Instruction::F32x4Splat => {
|
1787
|
+
sink.push(0xFD);
|
1788
|
+
0x13u32.encode(sink);
|
1789
|
+
}
|
1790
|
+
Instruction::F64x2Splat => {
|
1791
|
+
sink.push(0xFD);
|
1792
|
+
0x14u32.encode(sink);
|
1793
|
+
}
|
1794
|
+
Instruction::I8x16ExtractLaneS(lane) => {
|
1795
|
+
sink.push(0xFD);
|
1796
|
+
0x15u32.encode(sink);
|
1797
|
+
assert!(lane < 16);
|
1798
|
+
sink.push(lane);
|
1799
|
+
}
|
1800
|
+
Instruction::I8x16ExtractLaneU(lane) => {
|
1801
|
+
sink.push(0xFD);
|
1802
|
+
0x16u32.encode(sink);
|
1803
|
+
assert!(lane < 16);
|
1804
|
+
sink.push(lane);
|
1805
|
+
}
|
1806
|
+
Instruction::I8x16ReplaceLane(lane) => {
|
1807
|
+
sink.push(0xFD);
|
1808
|
+
0x17u32.encode(sink);
|
1809
|
+
assert!(lane < 16);
|
1810
|
+
sink.push(lane);
|
1811
|
+
}
|
1812
|
+
Instruction::I16x8ExtractLaneS(lane) => {
|
1813
|
+
sink.push(0xFD);
|
1814
|
+
0x18u32.encode(sink);
|
1815
|
+
assert!(lane < 8);
|
1816
|
+
sink.push(lane);
|
1817
|
+
}
|
1818
|
+
Instruction::I16x8ExtractLaneU(lane) => {
|
1819
|
+
sink.push(0xFD);
|
1820
|
+
0x19u32.encode(sink);
|
1821
|
+
assert!(lane < 8);
|
1822
|
+
sink.push(lane);
|
1823
|
+
}
|
1824
|
+
Instruction::I16x8ReplaceLane(lane) => {
|
1825
|
+
sink.push(0xFD);
|
1826
|
+
0x1Au32.encode(sink);
|
1827
|
+
assert!(lane < 8);
|
1828
|
+
sink.push(lane);
|
1829
|
+
}
|
1830
|
+
Instruction::I32x4ExtractLane(lane) => {
|
1831
|
+
sink.push(0xFD);
|
1832
|
+
0x1Bu32.encode(sink);
|
1833
|
+
assert!(lane < 4);
|
1834
|
+
sink.push(lane);
|
1835
|
+
}
|
1836
|
+
Instruction::I32x4ReplaceLane(lane) => {
|
1837
|
+
sink.push(0xFD);
|
1838
|
+
0x1Cu32.encode(sink);
|
1839
|
+
assert!(lane < 4);
|
1840
|
+
sink.push(lane);
|
1841
|
+
}
|
1842
|
+
Instruction::I64x2ExtractLane(lane) => {
|
1843
|
+
sink.push(0xFD);
|
1844
|
+
0x1Du32.encode(sink);
|
1845
|
+
assert!(lane < 2);
|
1846
|
+
sink.push(lane);
|
1847
|
+
}
|
1848
|
+
Instruction::I64x2ReplaceLane(lane) => {
|
1849
|
+
sink.push(0xFD);
|
1850
|
+
0x1Eu32.encode(sink);
|
1851
|
+
assert!(lane < 2);
|
1852
|
+
sink.push(lane);
|
1853
|
+
}
|
1854
|
+
Instruction::F32x4ExtractLane(lane) => {
|
1855
|
+
sink.push(0xFD);
|
1856
|
+
0x1Fu32.encode(sink);
|
1857
|
+
assert!(lane < 4);
|
1858
|
+
sink.push(lane);
|
1859
|
+
}
|
1860
|
+
Instruction::F32x4ReplaceLane(lane) => {
|
1861
|
+
sink.push(0xFD);
|
1862
|
+
0x20u32.encode(sink);
|
1863
|
+
assert!(lane < 4);
|
1864
|
+
sink.push(lane);
|
1865
|
+
}
|
1866
|
+
Instruction::F64x2ExtractLane(lane) => {
|
1867
|
+
sink.push(0xFD);
|
1868
|
+
0x21u32.encode(sink);
|
1869
|
+
assert!(lane < 2);
|
1870
|
+
sink.push(lane);
|
1871
|
+
}
|
1872
|
+
Instruction::F64x2ReplaceLane(lane) => {
|
1873
|
+
sink.push(0xFD);
|
1874
|
+
0x22u32.encode(sink);
|
1875
|
+
assert!(lane < 2);
|
1876
|
+
sink.push(lane);
|
1877
|
+
}
|
1878
|
+
|
1879
|
+
Instruction::I8x16Eq => {
|
1880
|
+
sink.push(0xFD);
|
1881
|
+
0x23u32.encode(sink);
|
1882
|
+
}
|
1883
|
+
Instruction::I8x16Ne => {
|
1884
|
+
sink.push(0xFD);
|
1885
|
+
0x24u32.encode(sink);
|
1886
|
+
}
|
1887
|
+
Instruction::I8x16LtS => {
|
1888
|
+
sink.push(0xFD);
|
1889
|
+
0x25u32.encode(sink);
|
1890
|
+
}
|
1891
|
+
Instruction::I8x16LtU => {
|
1892
|
+
sink.push(0xFD);
|
1893
|
+
0x26u32.encode(sink);
|
1894
|
+
}
|
1895
|
+
Instruction::I8x16GtS => {
|
1896
|
+
sink.push(0xFD);
|
1897
|
+
0x27u32.encode(sink);
|
1898
|
+
}
|
1899
|
+
Instruction::I8x16GtU => {
|
1900
|
+
sink.push(0xFD);
|
1901
|
+
0x28u32.encode(sink);
|
1902
|
+
}
|
1903
|
+
Instruction::I8x16LeS => {
|
1904
|
+
sink.push(0xFD);
|
1905
|
+
0x29u32.encode(sink);
|
1906
|
+
}
|
1907
|
+
Instruction::I8x16LeU => {
|
1908
|
+
sink.push(0xFD);
|
1909
|
+
0x2Au32.encode(sink);
|
1910
|
+
}
|
1911
|
+
Instruction::I8x16GeS => {
|
1912
|
+
sink.push(0xFD);
|
1913
|
+
0x2Bu32.encode(sink);
|
1914
|
+
}
|
1915
|
+
Instruction::I8x16GeU => {
|
1916
|
+
sink.push(0xFD);
|
1917
|
+
0x2Cu32.encode(sink);
|
1918
|
+
}
|
1919
|
+
Instruction::I16x8Eq => {
|
1920
|
+
sink.push(0xFD);
|
1921
|
+
0x2Du32.encode(sink);
|
1922
|
+
}
|
1923
|
+
Instruction::I16x8Ne => {
|
1924
|
+
sink.push(0xFD);
|
1925
|
+
0x2Eu32.encode(sink);
|
1926
|
+
}
|
1927
|
+
Instruction::I16x8LtS => {
|
1928
|
+
sink.push(0xFD);
|
1929
|
+
0x2Fu32.encode(sink);
|
1930
|
+
}
|
1931
|
+
Instruction::I16x8LtU => {
|
1932
|
+
sink.push(0xFD);
|
1933
|
+
0x30u32.encode(sink);
|
1934
|
+
}
|
1935
|
+
Instruction::I16x8GtS => {
|
1936
|
+
sink.push(0xFD);
|
1937
|
+
0x31u32.encode(sink);
|
1938
|
+
}
|
1939
|
+
Instruction::I16x8GtU => {
|
1940
|
+
sink.push(0xFD);
|
1941
|
+
0x32u32.encode(sink);
|
1942
|
+
}
|
1943
|
+
Instruction::I16x8LeS => {
|
1944
|
+
sink.push(0xFD);
|
1945
|
+
0x33u32.encode(sink);
|
1946
|
+
}
|
1947
|
+
Instruction::I16x8LeU => {
|
1948
|
+
sink.push(0xFD);
|
1949
|
+
0x34u32.encode(sink);
|
1950
|
+
}
|
1951
|
+
Instruction::I16x8GeS => {
|
1952
|
+
sink.push(0xFD);
|
1953
|
+
0x35u32.encode(sink);
|
1954
|
+
}
|
1955
|
+
Instruction::I16x8GeU => {
|
1956
|
+
sink.push(0xFD);
|
1957
|
+
0x36u32.encode(sink);
|
1958
|
+
}
|
1959
|
+
Instruction::I32x4Eq => {
|
1960
|
+
sink.push(0xFD);
|
1961
|
+
0x37u32.encode(sink);
|
1962
|
+
}
|
1963
|
+
Instruction::I32x4Ne => {
|
1964
|
+
sink.push(0xFD);
|
1965
|
+
0x38u32.encode(sink);
|
1966
|
+
}
|
1967
|
+
Instruction::I32x4LtS => {
|
1968
|
+
sink.push(0xFD);
|
1969
|
+
0x39u32.encode(sink);
|
1970
|
+
}
|
1971
|
+
Instruction::I32x4LtU => {
|
1972
|
+
sink.push(0xFD);
|
1973
|
+
0x3Au32.encode(sink);
|
1974
|
+
}
|
1975
|
+
Instruction::I32x4GtS => {
|
1976
|
+
sink.push(0xFD);
|
1977
|
+
0x3Bu32.encode(sink);
|
1978
|
+
}
|
1979
|
+
Instruction::I32x4GtU => {
|
1980
|
+
sink.push(0xFD);
|
1981
|
+
0x3Cu32.encode(sink);
|
1982
|
+
}
|
1983
|
+
Instruction::I32x4LeS => {
|
1984
|
+
sink.push(0xFD);
|
1985
|
+
0x3Du32.encode(sink);
|
1986
|
+
}
|
1987
|
+
Instruction::I32x4LeU => {
|
1988
|
+
sink.push(0xFD);
|
1989
|
+
0x3Eu32.encode(sink);
|
1990
|
+
}
|
1991
|
+
Instruction::I32x4GeS => {
|
1992
|
+
sink.push(0xFD);
|
1993
|
+
0x3Fu32.encode(sink);
|
1994
|
+
}
|
1995
|
+
Instruction::I32x4GeU => {
|
1996
|
+
sink.push(0xFD);
|
1997
|
+
0x40u32.encode(sink);
|
1998
|
+
}
|
1999
|
+
Instruction::F32x4Eq => {
|
2000
|
+
sink.push(0xFD);
|
2001
|
+
0x41u32.encode(sink);
|
2002
|
+
}
|
2003
|
+
Instruction::F32x4Ne => {
|
2004
|
+
sink.push(0xFD);
|
2005
|
+
0x42u32.encode(sink);
|
2006
|
+
}
|
2007
|
+
Instruction::F32x4Lt => {
|
2008
|
+
sink.push(0xFD);
|
2009
|
+
0x43u32.encode(sink);
|
2010
|
+
}
|
2011
|
+
Instruction::F32x4Gt => {
|
2012
|
+
sink.push(0xFD);
|
2013
|
+
0x44u32.encode(sink);
|
2014
|
+
}
|
2015
|
+
Instruction::F32x4Le => {
|
2016
|
+
sink.push(0xFD);
|
2017
|
+
0x45u32.encode(sink);
|
2018
|
+
}
|
2019
|
+
Instruction::F32x4Ge => {
|
2020
|
+
sink.push(0xFD);
|
2021
|
+
0x46u32.encode(sink);
|
2022
|
+
}
|
2023
|
+
Instruction::F64x2Eq => {
|
2024
|
+
sink.push(0xFD);
|
2025
|
+
0x47u32.encode(sink);
|
2026
|
+
}
|
2027
|
+
Instruction::F64x2Ne => {
|
2028
|
+
sink.push(0xFD);
|
2029
|
+
0x48u32.encode(sink);
|
2030
|
+
}
|
2031
|
+
Instruction::F64x2Lt => {
|
2032
|
+
sink.push(0xFD);
|
2033
|
+
0x49u32.encode(sink);
|
2034
|
+
}
|
2035
|
+
Instruction::F64x2Gt => {
|
2036
|
+
sink.push(0xFD);
|
2037
|
+
0x4Au32.encode(sink);
|
2038
|
+
}
|
2039
|
+
Instruction::F64x2Le => {
|
2040
|
+
sink.push(0xFD);
|
2041
|
+
0x4Bu32.encode(sink);
|
2042
|
+
}
|
2043
|
+
Instruction::F64x2Ge => {
|
2044
|
+
sink.push(0xFD);
|
2045
|
+
0x4Cu32.encode(sink);
|
2046
|
+
}
|
2047
|
+
Instruction::V128Not => {
|
2048
|
+
sink.push(0xFD);
|
2049
|
+
0x4Du32.encode(sink);
|
2050
|
+
}
|
2051
|
+
Instruction::V128And => {
|
2052
|
+
sink.push(0xFD);
|
2053
|
+
0x4Eu32.encode(sink);
|
2054
|
+
}
|
2055
|
+
Instruction::V128AndNot => {
|
2056
|
+
sink.push(0xFD);
|
2057
|
+
0x4Fu32.encode(sink);
|
2058
|
+
}
|
2059
|
+
Instruction::V128Or => {
|
2060
|
+
sink.push(0xFD);
|
2061
|
+
0x50u32.encode(sink);
|
2062
|
+
}
|
2063
|
+
Instruction::V128Xor => {
|
2064
|
+
sink.push(0xFD);
|
2065
|
+
0x51u32.encode(sink);
|
2066
|
+
}
|
2067
|
+
Instruction::V128Bitselect => {
|
2068
|
+
sink.push(0xFD);
|
2069
|
+
0x52u32.encode(sink);
|
2070
|
+
}
|
2071
|
+
Instruction::V128AnyTrue => {
|
2072
|
+
sink.push(0xFD);
|
2073
|
+
0x53u32.encode(sink);
|
2074
|
+
}
|
2075
|
+
Instruction::I8x16Abs => {
|
2076
|
+
sink.push(0xFD);
|
2077
|
+
0x60u32.encode(sink);
|
2078
|
+
}
|
2079
|
+
Instruction::I8x16Neg => {
|
2080
|
+
sink.push(0xFD);
|
2081
|
+
0x61u32.encode(sink);
|
2082
|
+
}
|
2083
|
+
Instruction::I8x16Popcnt => {
|
2084
|
+
sink.push(0xFD);
|
2085
|
+
0x62u32.encode(sink);
|
2086
|
+
}
|
2087
|
+
Instruction::I8x16AllTrue => {
|
2088
|
+
sink.push(0xFD);
|
2089
|
+
0x63u32.encode(sink);
|
2090
|
+
}
|
2091
|
+
Instruction::I8x16Bitmask => {
|
2092
|
+
sink.push(0xFD);
|
2093
|
+
0x64u32.encode(sink);
|
2094
|
+
}
|
2095
|
+
Instruction::I8x16NarrowI16x8S => {
|
2096
|
+
sink.push(0xFD);
|
2097
|
+
0x65u32.encode(sink);
|
2098
|
+
}
|
2099
|
+
Instruction::I8x16NarrowI16x8U => {
|
2100
|
+
sink.push(0xFD);
|
2101
|
+
0x66u32.encode(sink);
|
2102
|
+
}
|
2103
|
+
Instruction::I8x16Shl => {
|
2104
|
+
sink.push(0xFD);
|
2105
|
+
0x6bu32.encode(sink);
|
2106
|
+
}
|
2107
|
+
Instruction::I8x16ShrS => {
|
2108
|
+
sink.push(0xFD);
|
2109
|
+
0x6cu32.encode(sink);
|
2110
|
+
}
|
2111
|
+
Instruction::I8x16ShrU => {
|
2112
|
+
sink.push(0xFD);
|
2113
|
+
0x6du32.encode(sink);
|
2114
|
+
}
|
2115
|
+
Instruction::I8x16Add => {
|
2116
|
+
sink.push(0xFD);
|
2117
|
+
0x6eu32.encode(sink);
|
2118
|
+
}
|
2119
|
+
Instruction::I8x16AddSatS => {
|
2120
|
+
sink.push(0xFD);
|
2121
|
+
0x6fu32.encode(sink);
|
2122
|
+
}
|
2123
|
+
Instruction::I8x16AddSatU => {
|
2124
|
+
sink.push(0xFD);
|
2125
|
+
0x70u32.encode(sink);
|
2126
|
+
}
|
2127
|
+
Instruction::I8x16Sub => {
|
2128
|
+
sink.push(0xFD);
|
2129
|
+
0x71u32.encode(sink);
|
2130
|
+
}
|
2131
|
+
Instruction::I8x16SubSatS => {
|
2132
|
+
sink.push(0xFD);
|
2133
|
+
0x72u32.encode(sink);
|
2134
|
+
}
|
2135
|
+
Instruction::I8x16SubSatU => {
|
2136
|
+
sink.push(0xFD);
|
2137
|
+
0x73u32.encode(sink);
|
2138
|
+
}
|
2139
|
+
Instruction::I8x16MinS => {
|
2140
|
+
sink.push(0xFD);
|
2141
|
+
0x76u32.encode(sink);
|
2142
|
+
}
|
2143
|
+
Instruction::I8x16MinU => {
|
2144
|
+
sink.push(0xFD);
|
2145
|
+
0x77u32.encode(sink);
|
2146
|
+
}
|
2147
|
+
Instruction::I8x16MaxS => {
|
2148
|
+
sink.push(0xFD);
|
2149
|
+
0x78u32.encode(sink);
|
2150
|
+
}
|
2151
|
+
Instruction::I8x16MaxU => {
|
2152
|
+
sink.push(0xFD);
|
2153
|
+
0x79u32.encode(sink);
|
2154
|
+
}
|
2155
|
+
Instruction::I8x16AvgrU => {
|
2156
|
+
sink.push(0xFD);
|
2157
|
+
0x7Bu32.encode(sink);
|
2158
|
+
}
|
2159
|
+
Instruction::I16x8ExtAddPairwiseI8x16S => {
|
2160
|
+
sink.push(0xFD);
|
2161
|
+
0x7Cu32.encode(sink);
|
2162
|
+
}
|
2163
|
+
Instruction::I16x8ExtAddPairwiseI8x16U => {
|
2164
|
+
sink.push(0xFD);
|
2165
|
+
0x7Du32.encode(sink);
|
2166
|
+
}
|
2167
|
+
Instruction::I32x4ExtAddPairwiseI16x8S => {
|
2168
|
+
sink.push(0xFD);
|
2169
|
+
0x7Eu32.encode(sink);
|
2170
|
+
}
|
2171
|
+
Instruction::I32x4ExtAddPairwiseI16x8U => {
|
2172
|
+
sink.push(0xFD);
|
2173
|
+
0x7Fu32.encode(sink);
|
2174
|
+
}
|
2175
|
+
Instruction::I16x8Abs => {
|
2176
|
+
sink.push(0xFD);
|
2177
|
+
0x80u32.encode(sink);
|
2178
|
+
}
|
2179
|
+
Instruction::I16x8Neg => {
|
2180
|
+
sink.push(0xFD);
|
2181
|
+
0x81u32.encode(sink);
|
2182
|
+
}
|
2183
|
+
Instruction::I16x8Q15MulrSatS => {
|
2184
|
+
sink.push(0xFD);
|
2185
|
+
0x82u32.encode(sink);
|
2186
|
+
}
|
2187
|
+
Instruction::I16x8AllTrue => {
|
2188
|
+
sink.push(0xFD);
|
2189
|
+
0x83u32.encode(sink);
|
2190
|
+
}
|
2191
|
+
Instruction::I16x8Bitmask => {
|
2192
|
+
sink.push(0xFD);
|
2193
|
+
0x84u32.encode(sink);
|
2194
|
+
}
|
2195
|
+
Instruction::I16x8NarrowI32x4S => {
|
2196
|
+
sink.push(0xFD);
|
2197
|
+
0x85u32.encode(sink);
|
2198
|
+
}
|
2199
|
+
Instruction::I16x8NarrowI32x4U => {
|
2200
|
+
sink.push(0xFD);
|
2201
|
+
0x86u32.encode(sink);
|
2202
|
+
}
|
2203
|
+
Instruction::I16x8ExtendLowI8x16S => {
|
2204
|
+
sink.push(0xFD);
|
2205
|
+
0x87u32.encode(sink);
|
2206
|
+
}
|
2207
|
+
Instruction::I16x8ExtendHighI8x16S => {
|
2208
|
+
sink.push(0xFD);
|
2209
|
+
0x88u32.encode(sink);
|
2210
|
+
}
|
2211
|
+
Instruction::I16x8ExtendLowI8x16U => {
|
2212
|
+
sink.push(0xFD);
|
2213
|
+
0x89u32.encode(sink);
|
2214
|
+
}
|
2215
|
+
Instruction::I16x8ExtendHighI8x16U => {
|
2216
|
+
sink.push(0xFD);
|
2217
|
+
0x8Au32.encode(sink);
|
2218
|
+
}
|
2219
|
+
Instruction::I16x8Shl => {
|
2220
|
+
sink.push(0xFD);
|
2221
|
+
0x8Bu32.encode(sink);
|
2222
|
+
}
|
2223
|
+
Instruction::I16x8ShrS => {
|
2224
|
+
sink.push(0xFD);
|
2225
|
+
0x8Cu32.encode(sink);
|
2226
|
+
}
|
2227
|
+
Instruction::I16x8ShrU => {
|
2228
|
+
sink.push(0xFD);
|
2229
|
+
0x8Du32.encode(sink);
|
2230
|
+
}
|
2231
|
+
Instruction::I16x8Add => {
|
2232
|
+
sink.push(0xFD);
|
2233
|
+
0x8Eu32.encode(sink);
|
2234
|
+
}
|
2235
|
+
Instruction::I16x8AddSatS => {
|
2236
|
+
sink.push(0xFD);
|
2237
|
+
0x8Fu32.encode(sink);
|
2238
|
+
}
|
2239
|
+
Instruction::I16x8AddSatU => {
|
2240
|
+
sink.push(0xFD);
|
2241
|
+
0x90u32.encode(sink);
|
2242
|
+
}
|
2243
|
+
Instruction::I16x8Sub => {
|
2244
|
+
sink.push(0xFD);
|
2245
|
+
0x91u32.encode(sink);
|
2246
|
+
}
|
2247
|
+
Instruction::I16x8SubSatS => {
|
2248
|
+
sink.push(0xFD);
|
2249
|
+
0x92u32.encode(sink);
|
2250
|
+
}
|
2251
|
+
Instruction::I16x8SubSatU => {
|
2252
|
+
sink.push(0xFD);
|
2253
|
+
0x93u32.encode(sink);
|
2254
|
+
}
|
2255
|
+
Instruction::I16x8Mul => {
|
2256
|
+
sink.push(0xFD);
|
2257
|
+
0x95u32.encode(sink);
|
2258
|
+
}
|
2259
|
+
Instruction::I16x8MinS => {
|
2260
|
+
sink.push(0xFD);
|
2261
|
+
0x96u32.encode(sink);
|
2262
|
+
}
|
2263
|
+
Instruction::I16x8MinU => {
|
2264
|
+
sink.push(0xFD);
|
2265
|
+
0x97u32.encode(sink);
|
2266
|
+
}
|
2267
|
+
Instruction::I16x8MaxS => {
|
2268
|
+
sink.push(0xFD);
|
2269
|
+
0x98u32.encode(sink);
|
2270
|
+
}
|
2271
|
+
Instruction::I16x8MaxU => {
|
2272
|
+
sink.push(0xFD);
|
2273
|
+
0x99u32.encode(sink);
|
2274
|
+
}
|
2275
|
+
Instruction::I16x8AvgrU => {
|
2276
|
+
sink.push(0xFD);
|
2277
|
+
0x9Bu32.encode(sink);
|
2278
|
+
}
|
2279
|
+
Instruction::I16x8ExtMulLowI8x16S => {
|
2280
|
+
sink.push(0xFD);
|
2281
|
+
0x9Cu32.encode(sink);
|
2282
|
+
}
|
2283
|
+
Instruction::I16x8ExtMulHighI8x16S => {
|
2284
|
+
sink.push(0xFD);
|
2285
|
+
0x9Du32.encode(sink);
|
2286
|
+
}
|
2287
|
+
Instruction::I16x8ExtMulLowI8x16U => {
|
2288
|
+
sink.push(0xFD);
|
2289
|
+
0x9Eu32.encode(sink);
|
2290
|
+
}
|
2291
|
+
Instruction::I16x8ExtMulHighI8x16U => {
|
2292
|
+
sink.push(0xFD);
|
2293
|
+
0x9Fu32.encode(sink);
|
2294
|
+
}
|
2295
|
+
Instruction::I32x4Abs => {
|
2296
|
+
sink.push(0xFD);
|
2297
|
+
0xA0u32.encode(sink);
|
2298
|
+
}
|
2299
|
+
Instruction::I32x4Neg => {
|
2300
|
+
sink.push(0xFD);
|
2301
|
+
0xA1u32.encode(sink);
|
2302
|
+
}
|
2303
|
+
Instruction::I32x4AllTrue => {
|
2304
|
+
sink.push(0xFD);
|
2305
|
+
0xA3u32.encode(sink);
|
2306
|
+
}
|
2307
|
+
Instruction::I32x4Bitmask => {
|
2308
|
+
sink.push(0xFD);
|
2309
|
+
0xA4u32.encode(sink);
|
2310
|
+
}
|
2311
|
+
Instruction::I32x4ExtendLowI16x8S => {
|
2312
|
+
sink.push(0xFD);
|
2313
|
+
0xA7u32.encode(sink);
|
2314
|
+
}
|
2315
|
+
Instruction::I32x4ExtendHighI16x8S => {
|
2316
|
+
sink.push(0xFD);
|
2317
|
+
0xA8u32.encode(sink);
|
2318
|
+
}
|
2319
|
+
Instruction::I32x4ExtendLowI16x8U => {
|
2320
|
+
sink.push(0xFD);
|
2321
|
+
0xA9u32.encode(sink);
|
2322
|
+
}
|
2323
|
+
Instruction::I32x4ExtendHighI16x8U => {
|
2324
|
+
sink.push(0xFD);
|
2325
|
+
0xAAu32.encode(sink);
|
2326
|
+
}
|
2327
|
+
Instruction::I32x4Shl => {
|
2328
|
+
sink.push(0xFD);
|
2329
|
+
0xABu32.encode(sink);
|
2330
|
+
}
|
2331
|
+
Instruction::I32x4ShrS => {
|
2332
|
+
sink.push(0xFD);
|
2333
|
+
0xACu32.encode(sink);
|
2334
|
+
}
|
2335
|
+
Instruction::I32x4ShrU => {
|
2336
|
+
sink.push(0xFD);
|
2337
|
+
0xADu32.encode(sink);
|
2338
|
+
}
|
2339
|
+
Instruction::I32x4Add => {
|
2340
|
+
sink.push(0xFD);
|
2341
|
+
0xAEu32.encode(sink);
|
2342
|
+
}
|
2343
|
+
Instruction::I32x4Sub => {
|
2344
|
+
sink.push(0xFD);
|
2345
|
+
0xB1u32.encode(sink);
|
2346
|
+
}
|
2347
|
+
Instruction::I32x4Mul => {
|
2348
|
+
sink.push(0xFD);
|
2349
|
+
0xB5u32.encode(sink);
|
2350
|
+
}
|
2351
|
+
Instruction::I32x4MinS => {
|
2352
|
+
sink.push(0xFD);
|
2353
|
+
0xB6u32.encode(sink);
|
2354
|
+
}
|
2355
|
+
Instruction::I32x4MinU => {
|
2356
|
+
sink.push(0xFD);
|
2357
|
+
0xB7u32.encode(sink);
|
2358
|
+
}
|
2359
|
+
Instruction::I32x4MaxS => {
|
2360
|
+
sink.push(0xFD);
|
2361
|
+
0xB8u32.encode(sink);
|
2362
|
+
}
|
2363
|
+
Instruction::I32x4MaxU => {
|
2364
|
+
sink.push(0xFD);
|
2365
|
+
0xB9u32.encode(sink);
|
2366
|
+
}
|
2367
|
+
Instruction::I32x4DotI16x8S => {
|
2368
|
+
sink.push(0xFD);
|
2369
|
+
0xBAu32.encode(sink);
|
2370
|
+
}
|
2371
|
+
Instruction::I32x4ExtMulLowI16x8S => {
|
2372
|
+
sink.push(0xFD);
|
2373
|
+
0xBCu32.encode(sink);
|
2374
|
+
}
|
2375
|
+
Instruction::I32x4ExtMulHighI16x8S => {
|
2376
|
+
sink.push(0xFD);
|
2377
|
+
0xBDu32.encode(sink);
|
2378
|
+
}
|
2379
|
+
Instruction::I32x4ExtMulLowI16x8U => {
|
2380
|
+
sink.push(0xFD);
|
2381
|
+
0xBEu32.encode(sink);
|
2382
|
+
}
|
2383
|
+
Instruction::I32x4ExtMulHighI16x8U => {
|
2384
|
+
sink.push(0xFD);
|
2385
|
+
0xBFu32.encode(sink);
|
2386
|
+
}
|
2387
|
+
Instruction::I64x2Abs => {
|
2388
|
+
sink.push(0xFD);
|
2389
|
+
0xC0u32.encode(sink);
|
2390
|
+
}
|
2391
|
+
Instruction::I64x2Neg => {
|
2392
|
+
sink.push(0xFD);
|
2393
|
+
0xC1u32.encode(sink);
|
2394
|
+
}
|
2395
|
+
Instruction::I64x2AllTrue => {
|
2396
|
+
sink.push(0xFD);
|
2397
|
+
0xC3u32.encode(sink);
|
2398
|
+
}
|
2399
|
+
Instruction::I64x2Bitmask => {
|
2400
|
+
sink.push(0xFD);
|
2401
|
+
0xC4u32.encode(sink);
|
2402
|
+
}
|
2403
|
+
Instruction::I64x2ExtendLowI32x4S => {
|
2404
|
+
sink.push(0xFD);
|
2405
|
+
0xC7u32.encode(sink);
|
2406
|
+
}
|
2407
|
+
Instruction::I64x2ExtendHighI32x4S => {
|
2408
|
+
sink.push(0xFD);
|
2409
|
+
0xC8u32.encode(sink);
|
2410
|
+
}
|
2411
|
+
Instruction::I64x2ExtendLowI32x4U => {
|
2412
|
+
sink.push(0xFD);
|
2413
|
+
0xC9u32.encode(sink);
|
2414
|
+
}
|
2415
|
+
Instruction::I64x2ExtendHighI32x4U => {
|
2416
|
+
sink.push(0xFD);
|
2417
|
+
0xCAu32.encode(sink);
|
2418
|
+
}
|
2419
|
+
Instruction::I64x2Shl => {
|
2420
|
+
sink.push(0xFD);
|
2421
|
+
0xCBu32.encode(sink);
|
2422
|
+
}
|
2423
|
+
Instruction::I64x2ShrS => {
|
2424
|
+
sink.push(0xFD);
|
2425
|
+
0xCCu32.encode(sink);
|
2426
|
+
}
|
2427
|
+
Instruction::I64x2ShrU => {
|
2428
|
+
sink.push(0xFD);
|
2429
|
+
0xCDu32.encode(sink);
|
2430
|
+
}
|
2431
|
+
Instruction::I64x2Add => {
|
2432
|
+
sink.push(0xFD);
|
2433
|
+
0xCEu32.encode(sink);
|
2434
|
+
}
|
2435
|
+
Instruction::I64x2Sub => {
|
2436
|
+
sink.push(0xFD);
|
2437
|
+
0xD1u32.encode(sink);
|
2438
|
+
}
|
2439
|
+
Instruction::I64x2Mul => {
|
2440
|
+
sink.push(0xFD);
|
2441
|
+
0xD5u32.encode(sink);
|
2442
|
+
}
|
2443
|
+
Instruction::I64x2ExtMulLowI32x4S => {
|
2444
|
+
sink.push(0xFD);
|
2445
|
+
0xDCu32.encode(sink);
|
2446
|
+
}
|
2447
|
+
Instruction::I64x2ExtMulHighI32x4S => {
|
2448
|
+
sink.push(0xFD);
|
2449
|
+
0xDDu32.encode(sink);
|
2450
|
+
}
|
2451
|
+
Instruction::I64x2ExtMulLowI32x4U => {
|
2452
|
+
sink.push(0xFD);
|
2453
|
+
0xDEu32.encode(sink);
|
2454
|
+
}
|
2455
|
+
Instruction::I64x2ExtMulHighI32x4U => {
|
2456
|
+
sink.push(0xFD);
|
2457
|
+
0xDFu32.encode(sink);
|
2458
|
+
}
|
2459
|
+
Instruction::F32x4Ceil => {
|
2460
|
+
sink.push(0xFD);
|
2461
|
+
0x67u32.encode(sink);
|
2462
|
+
}
|
2463
|
+
Instruction::F32x4Floor => {
|
2464
|
+
sink.push(0xFD);
|
2465
|
+
0x68u32.encode(sink);
|
2466
|
+
}
|
2467
|
+
Instruction::F32x4Trunc => {
|
2468
|
+
sink.push(0xFD);
|
2469
|
+
0x69u32.encode(sink);
|
2470
|
+
}
|
2471
|
+
Instruction::F32x4Nearest => {
|
2472
|
+
sink.push(0xFD);
|
2473
|
+
0x6Au32.encode(sink);
|
2474
|
+
}
|
2475
|
+
Instruction::F32x4Abs => {
|
2476
|
+
sink.push(0xFD);
|
2477
|
+
0xE0u32.encode(sink);
|
2478
|
+
}
|
2479
|
+
Instruction::F32x4Neg => {
|
2480
|
+
sink.push(0xFD);
|
2481
|
+
0xE1u32.encode(sink);
|
2482
|
+
}
|
2483
|
+
Instruction::F32x4Sqrt => {
|
2484
|
+
sink.push(0xFD);
|
2485
|
+
0xE3u32.encode(sink);
|
2486
|
+
}
|
2487
|
+
Instruction::F32x4Add => {
|
2488
|
+
sink.push(0xFD);
|
2489
|
+
0xE4u32.encode(sink);
|
2490
|
+
}
|
2491
|
+
Instruction::F32x4Sub => {
|
2492
|
+
sink.push(0xFD);
|
2493
|
+
0xE5u32.encode(sink);
|
2494
|
+
}
|
2495
|
+
Instruction::F32x4Mul => {
|
2496
|
+
sink.push(0xFD);
|
2497
|
+
0xE6u32.encode(sink);
|
2498
|
+
}
|
2499
|
+
Instruction::F32x4Div => {
|
2500
|
+
sink.push(0xFD);
|
2501
|
+
0xE7u32.encode(sink);
|
2502
|
+
}
|
2503
|
+
Instruction::F32x4Min => {
|
2504
|
+
sink.push(0xFD);
|
2505
|
+
0xE8u32.encode(sink);
|
2506
|
+
}
|
2507
|
+
Instruction::F32x4Max => {
|
2508
|
+
sink.push(0xFD);
|
2509
|
+
0xE9u32.encode(sink);
|
2510
|
+
}
|
2511
|
+
Instruction::F32x4PMin => {
|
2512
|
+
sink.push(0xFD);
|
2513
|
+
0xEAu32.encode(sink);
|
2514
|
+
}
|
2515
|
+
Instruction::F32x4PMax => {
|
2516
|
+
sink.push(0xFD);
|
2517
|
+
0xEBu32.encode(sink);
|
2518
|
+
}
|
2519
|
+
Instruction::F64x2Ceil => {
|
2520
|
+
sink.push(0xFD);
|
2521
|
+
0x74u32.encode(sink);
|
2522
|
+
}
|
2523
|
+
Instruction::F64x2Floor => {
|
2524
|
+
sink.push(0xFD);
|
2525
|
+
0x75u32.encode(sink);
|
2526
|
+
}
|
2527
|
+
Instruction::F64x2Trunc => {
|
2528
|
+
sink.push(0xFD);
|
2529
|
+
0x7Au32.encode(sink);
|
2530
|
+
}
|
2531
|
+
Instruction::F64x2Nearest => {
|
2532
|
+
sink.push(0xFD);
|
2533
|
+
0x94u32.encode(sink);
|
2534
|
+
}
|
2535
|
+
Instruction::F64x2Abs => {
|
2536
|
+
sink.push(0xFD);
|
2537
|
+
0xECu32.encode(sink);
|
2538
|
+
}
|
2539
|
+
Instruction::F64x2Neg => {
|
2540
|
+
sink.push(0xFD);
|
2541
|
+
0xEDu32.encode(sink);
|
2542
|
+
}
|
2543
|
+
Instruction::F64x2Sqrt => {
|
2544
|
+
sink.push(0xFD);
|
2545
|
+
0xEFu32.encode(sink);
|
2546
|
+
}
|
2547
|
+
Instruction::F64x2Add => {
|
2548
|
+
sink.push(0xFD);
|
2549
|
+
0xF0u32.encode(sink);
|
2550
|
+
}
|
2551
|
+
Instruction::F64x2Sub => {
|
2552
|
+
sink.push(0xFD);
|
2553
|
+
0xF1u32.encode(sink);
|
2554
|
+
}
|
2555
|
+
Instruction::F64x2Mul => {
|
2556
|
+
sink.push(0xFD);
|
2557
|
+
0xF2u32.encode(sink);
|
2558
|
+
}
|
2559
|
+
Instruction::F64x2Div => {
|
2560
|
+
sink.push(0xFD);
|
2561
|
+
0xF3u32.encode(sink);
|
2562
|
+
}
|
2563
|
+
Instruction::F64x2Min => {
|
2564
|
+
sink.push(0xFD);
|
2565
|
+
0xF4u32.encode(sink);
|
2566
|
+
}
|
2567
|
+
Instruction::F64x2Max => {
|
2568
|
+
sink.push(0xFD);
|
2569
|
+
0xF5u32.encode(sink);
|
2570
|
+
}
|
2571
|
+
Instruction::F64x2PMin => {
|
2572
|
+
sink.push(0xFD);
|
2573
|
+
0xF6u32.encode(sink);
|
2574
|
+
}
|
2575
|
+
Instruction::F64x2PMax => {
|
2576
|
+
sink.push(0xFD);
|
2577
|
+
0xF7u32.encode(sink);
|
2578
|
+
}
|
2579
|
+
Instruction::I32x4TruncSatF32x4S => {
|
2580
|
+
sink.push(0xFD);
|
2581
|
+
0xF8u32.encode(sink);
|
2582
|
+
}
|
2583
|
+
Instruction::I32x4TruncSatF32x4U => {
|
2584
|
+
sink.push(0xFD);
|
2585
|
+
0xF9u32.encode(sink);
|
2586
|
+
}
|
2587
|
+
Instruction::F32x4ConvertI32x4S => {
|
2588
|
+
sink.push(0xFD);
|
2589
|
+
0xFAu32.encode(sink);
|
2590
|
+
}
|
2591
|
+
Instruction::F32x4ConvertI32x4U => {
|
2592
|
+
sink.push(0xFD);
|
2593
|
+
0xFBu32.encode(sink);
|
2594
|
+
}
|
2595
|
+
Instruction::I32x4TruncSatF64x2SZero => {
|
2596
|
+
sink.push(0xFD);
|
2597
|
+
0xFCu32.encode(sink);
|
2598
|
+
}
|
2599
|
+
Instruction::I32x4TruncSatF64x2UZero => {
|
2600
|
+
sink.push(0xFD);
|
2601
|
+
0xFDu32.encode(sink);
|
2602
|
+
}
|
2603
|
+
Instruction::F64x2ConvertLowI32x4S => {
|
2604
|
+
sink.push(0xFD);
|
2605
|
+
0xFEu32.encode(sink);
|
2606
|
+
}
|
2607
|
+
Instruction::F64x2ConvertLowI32x4U => {
|
2608
|
+
sink.push(0xFD);
|
2609
|
+
0xFFu32.encode(sink);
|
2610
|
+
}
|
2611
|
+
Instruction::F32x4DemoteF64x2Zero => {
|
2612
|
+
sink.push(0xFD);
|
2613
|
+
0x5Eu32.encode(sink);
|
2614
|
+
}
|
2615
|
+
Instruction::F64x2PromoteLowF32x4 => {
|
2616
|
+
sink.push(0xFD);
|
2617
|
+
0x5Fu32.encode(sink);
|
2618
|
+
}
|
2619
|
+
Instruction::V128Load32Zero(memarg) => {
|
2620
|
+
sink.push(0xFD);
|
2621
|
+
0x5Cu32.encode(sink);
|
2622
|
+
memarg.encode(sink);
|
2623
|
+
}
|
2624
|
+
Instruction::V128Load64Zero(memarg) => {
|
2625
|
+
sink.push(0xFD);
|
2626
|
+
0x5Du32.encode(sink);
|
2627
|
+
memarg.encode(sink);
|
2628
|
+
}
|
2629
|
+
Instruction::V128Load8Lane { memarg, lane } => {
|
2630
|
+
sink.push(0xFD);
|
2631
|
+
0x54u32.encode(sink);
|
2632
|
+
memarg.encode(sink);
|
2633
|
+
assert!(lane < 16);
|
2634
|
+
sink.push(lane);
|
2635
|
+
}
|
2636
|
+
Instruction::V128Load16Lane { memarg, lane } => {
|
2637
|
+
sink.push(0xFD);
|
2638
|
+
0x55u32.encode(sink);
|
2639
|
+
memarg.encode(sink);
|
2640
|
+
assert!(lane < 8);
|
2641
|
+
sink.push(lane);
|
2642
|
+
}
|
2643
|
+
Instruction::V128Load32Lane { memarg, lane } => {
|
2644
|
+
sink.push(0xFD);
|
2645
|
+
0x56u32.encode(sink);
|
2646
|
+
memarg.encode(sink);
|
2647
|
+
assert!(lane < 4);
|
2648
|
+
sink.push(lane);
|
2649
|
+
}
|
2650
|
+
Instruction::V128Load64Lane { memarg, lane } => {
|
2651
|
+
sink.push(0xFD);
|
2652
|
+
0x57u32.encode(sink);
|
2653
|
+
memarg.encode(sink);
|
2654
|
+
assert!(lane < 2);
|
2655
|
+
sink.push(lane);
|
2656
|
+
}
|
2657
|
+
Instruction::V128Store8Lane { memarg, lane } => {
|
2658
|
+
sink.push(0xFD);
|
2659
|
+
0x58u32.encode(sink);
|
2660
|
+
memarg.encode(sink);
|
2661
|
+
assert!(lane < 16);
|
2662
|
+
sink.push(lane);
|
2663
|
+
}
|
2664
|
+
Instruction::V128Store16Lane { memarg, lane } => {
|
2665
|
+
sink.push(0xFD);
|
2666
|
+
0x59u32.encode(sink);
|
2667
|
+
memarg.encode(sink);
|
2668
|
+
assert!(lane < 8);
|
2669
|
+
sink.push(lane);
|
2670
|
+
}
|
2671
|
+
Instruction::V128Store32Lane { memarg, lane } => {
|
2672
|
+
sink.push(0xFD);
|
2673
|
+
0x5Au32.encode(sink);
|
2674
|
+
memarg.encode(sink);
|
2675
|
+
assert!(lane < 4);
|
2676
|
+
sink.push(lane);
|
2677
|
+
}
|
2678
|
+
Instruction::V128Store64Lane { memarg, lane } => {
|
2679
|
+
sink.push(0xFD);
|
2680
|
+
0x5Bu32.encode(sink);
|
2681
|
+
memarg.encode(sink);
|
2682
|
+
assert!(lane < 2);
|
2683
|
+
sink.push(lane);
|
2684
|
+
}
|
2685
|
+
Instruction::I64x2Eq => {
|
2686
|
+
sink.push(0xFD);
|
2687
|
+
0xD6u32.encode(sink);
|
2688
|
+
}
|
2689
|
+
Instruction::I64x2Ne => {
|
2690
|
+
sink.push(0xFD);
|
2691
|
+
0xD7u32.encode(sink);
|
2692
|
+
}
|
2693
|
+
Instruction::I64x2LtS => {
|
2694
|
+
sink.push(0xFD);
|
2695
|
+
0xD8u32.encode(sink);
|
2696
|
+
}
|
2697
|
+
Instruction::I64x2GtS => {
|
2698
|
+
sink.push(0xFD);
|
2699
|
+
0xD9u32.encode(sink);
|
2700
|
+
}
|
2701
|
+
Instruction::I64x2LeS => {
|
2702
|
+
sink.push(0xFD);
|
2703
|
+
0xDAu32.encode(sink);
|
2704
|
+
}
|
2705
|
+
Instruction::I64x2GeS => {
|
2706
|
+
sink.push(0xFD);
|
2707
|
+
0xDBu32.encode(sink);
|
2708
|
+
}
|
2709
|
+
Instruction::I8x16RelaxedSwizzle => {
|
2710
|
+
sink.push(0xFD);
|
2711
|
+
0x100u32.encode(sink);
|
2712
|
+
}
|
2713
|
+
Instruction::I32x4RelaxedTruncF32x4S => {
|
2714
|
+
sink.push(0xFD);
|
2715
|
+
0x101u32.encode(sink);
|
2716
|
+
}
|
2717
|
+
Instruction::I32x4RelaxedTruncF32x4U => {
|
2718
|
+
sink.push(0xFD);
|
2719
|
+
0x102u32.encode(sink);
|
2720
|
+
}
|
2721
|
+
Instruction::I32x4RelaxedTruncF64x2SZero => {
|
2722
|
+
sink.push(0xFD);
|
2723
|
+
0x103u32.encode(sink);
|
2724
|
+
}
|
2725
|
+
Instruction::I32x4RelaxedTruncF64x2UZero => {
|
2726
|
+
sink.push(0xFD);
|
2727
|
+
0x104u32.encode(sink);
|
2728
|
+
}
|
2729
|
+
Instruction::F32x4RelaxedMadd => {
|
2730
|
+
sink.push(0xFD);
|
2731
|
+
0x105u32.encode(sink);
|
2732
|
+
}
|
2733
|
+
Instruction::F32x4RelaxedNmadd => {
|
2734
|
+
sink.push(0xFD);
|
2735
|
+
0x106u32.encode(sink);
|
2736
|
+
}
|
2737
|
+
Instruction::F64x2RelaxedMadd => {
|
2738
|
+
sink.push(0xFD);
|
2739
|
+
0x107u32.encode(sink);
|
2740
|
+
}
|
2741
|
+
Instruction::F64x2RelaxedNmadd => {
|
2742
|
+
sink.push(0xFD);
|
2743
|
+
0x108u32.encode(sink);
|
2744
|
+
}
|
2745
|
+
Instruction::I8x16RelaxedLaneselect => {
|
2746
|
+
sink.push(0xFD);
|
2747
|
+
0x109u32.encode(sink);
|
2748
|
+
}
|
2749
|
+
Instruction::I16x8RelaxedLaneselect => {
|
2750
|
+
sink.push(0xFD);
|
2751
|
+
0x10Au32.encode(sink);
|
2752
|
+
}
|
2753
|
+
Instruction::I32x4RelaxedLaneselect => {
|
2754
|
+
sink.push(0xFD);
|
2755
|
+
0x10Bu32.encode(sink);
|
2756
|
+
}
|
2757
|
+
Instruction::I64x2RelaxedLaneselect => {
|
2758
|
+
sink.push(0xFD);
|
2759
|
+
0x10Cu32.encode(sink);
|
2760
|
+
}
|
2761
|
+
Instruction::F32x4RelaxedMin => {
|
2762
|
+
sink.push(0xFD);
|
2763
|
+
0x10Du32.encode(sink);
|
2764
|
+
}
|
2765
|
+
Instruction::F32x4RelaxedMax => {
|
2766
|
+
sink.push(0xFD);
|
2767
|
+
0x10Eu32.encode(sink);
|
2768
|
+
}
|
2769
|
+
Instruction::F64x2RelaxedMin => {
|
2770
|
+
sink.push(0xFD);
|
2771
|
+
0x10Fu32.encode(sink);
|
2772
|
+
}
|
2773
|
+
Instruction::F64x2RelaxedMax => {
|
2774
|
+
sink.push(0xFD);
|
2775
|
+
0x110u32.encode(sink);
|
2776
|
+
}
|
2777
|
+
Instruction::I16x8RelaxedQ15mulrS => {
|
2778
|
+
sink.push(0xFD);
|
2779
|
+
0x111u32.encode(sink);
|
2780
|
+
}
|
2781
|
+
Instruction::I16x8RelaxedDotI8x16I7x16S => {
|
2782
|
+
sink.push(0xFD);
|
2783
|
+
0x112u32.encode(sink);
|
2784
|
+
}
|
2785
|
+
Instruction::I32x4RelaxedDotI8x16I7x16AddS => {
|
2786
|
+
sink.push(0xFD);
|
2787
|
+
0x113u32.encode(sink);
|
2788
|
+
}
|
2789
|
+
|
2790
|
+
// Atmoic instructions from the thread proposal
|
2791
|
+
Instruction::MemoryAtomicNotify(memarg) => {
|
2792
|
+
sink.push(0xFE);
|
2793
|
+
sink.push(0x00);
|
2794
|
+
memarg.encode(sink);
|
2795
|
+
}
|
2796
|
+
Instruction::MemoryAtomicWait32(memarg) => {
|
2797
|
+
sink.push(0xFE);
|
2798
|
+
sink.push(0x01);
|
2799
|
+
memarg.encode(sink);
|
2800
|
+
}
|
2801
|
+
Instruction::MemoryAtomicWait64(memarg) => {
|
2802
|
+
sink.push(0xFE);
|
2803
|
+
sink.push(0x02);
|
2804
|
+
memarg.encode(sink);
|
2805
|
+
}
|
2806
|
+
Instruction::AtomicFence => {
|
2807
|
+
sink.push(0xFE);
|
2808
|
+
sink.push(0x03);
|
2809
|
+
sink.push(0x00);
|
2810
|
+
}
|
2811
|
+
Instruction::I32AtomicLoad(memarg) => {
|
2812
|
+
sink.push(0xFE);
|
2813
|
+
sink.push(0x10);
|
2814
|
+
memarg.encode(sink);
|
2815
|
+
}
|
2816
|
+
Instruction::I64AtomicLoad(memarg) => {
|
2817
|
+
sink.push(0xFE);
|
2818
|
+
sink.push(0x11);
|
2819
|
+
memarg.encode(sink);
|
2820
|
+
}
|
2821
|
+
Instruction::I32AtomicLoad8U(memarg) => {
|
2822
|
+
sink.push(0xFE);
|
2823
|
+
sink.push(0x12);
|
2824
|
+
memarg.encode(sink);
|
2825
|
+
}
|
2826
|
+
Instruction::I32AtomicLoad16U(memarg) => {
|
2827
|
+
sink.push(0xFE);
|
2828
|
+
sink.push(0x13);
|
2829
|
+
memarg.encode(sink);
|
2830
|
+
}
|
2831
|
+
Instruction::I64AtomicLoad8U(memarg) => {
|
2832
|
+
sink.push(0xFE);
|
2833
|
+
sink.push(0x14);
|
2834
|
+
memarg.encode(sink);
|
2835
|
+
}
|
2836
|
+
Instruction::I64AtomicLoad16U(memarg) => {
|
2837
|
+
sink.push(0xFE);
|
2838
|
+
sink.push(0x15);
|
2839
|
+
memarg.encode(sink);
|
2840
|
+
}
|
2841
|
+
Instruction::I64AtomicLoad32U(memarg) => {
|
2842
|
+
sink.push(0xFE);
|
2843
|
+
sink.push(0x16);
|
2844
|
+
memarg.encode(sink);
|
2845
|
+
}
|
2846
|
+
Instruction::I32AtomicStore(memarg) => {
|
2847
|
+
sink.push(0xFE);
|
2848
|
+
sink.push(0x17);
|
2849
|
+
memarg.encode(sink);
|
2850
|
+
}
|
2851
|
+
Instruction::I64AtomicStore(memarg) => {
|
2852
|
+
sink.push(0xFE);
|
2853
|
+
sink.push(0x18);
|
2854
|
+
memarg.encode(sink);
|
2855
|
+
}
|
2856
|
+
Instruction::I32AtomicStore8(memarg) => {
|
2857
|
+
sink.push(0xFE);
|
2858
|
+
sink.push(0x19);
|
2859
|
+
memarg.encode(sink);
|
2860
|
+
}
|
2861
|
+
Instruction::I32AtomicStore16(memarg) => {
|
2862
|
+
sink.push(0xFE);
|
2863
|
+
sink.push(0x1A);
|
2864
|
+
memarg.encode(sink);
|
2865
|
+
}
|
2866
|
+
Instruction::I64AtomicStore8(memarg) => {
|
2867
|
+
sink.push(0xFE);
|
2868
|
+
sink.push(0x1B);
|
2869
|
+
memarg.encode(sink);
|
2870
|
+
}
|
2871
|
+
Instruction::I64AtomicStore16(memarg) => {
|
2872
|
+
sink.push(0xFE);
|
2873
|
+
sink.push(0x1C);
|
2874
|
+
memarg.encode(sink);
|
2875
|
+
}
|
2876
|
+
Instruction::I64AtomicStore32(memarg) => {
|
2877
|
+
sink.push(0xFE);
|
2878
|
+
sink.push(0x1D);
|
2879
|
+
memarg.encode(sink);
|
2880
|
+
}
|
2881
|
+
Instruction::I32AtomicRmwAdd(memarg) => {
|
2882
|
+
sink.push(0xFE);
|
2883
|
+
sink.push(0x1E);
|
2884
|
+
memarg.encode(sink);
|
2885
|
+
}
|
2886
|
+
Instruction::I64AtomicRmwAdd(memarg) => {
|
2887
|
+
sink.push(0xFE);
|
2888
|
+
sink.push(0x1F);
|
2889
|
+
memarg.encode(sink);
|
2890
|
+
}
|
2891
|
+
Instruction::I32AtomicRmw8AddU(memarg) => {
|
2892
|
+
sink.push(0xFE);
|
2893
|
+
sink.push(0x20);
|
2894
|
+
memarg.encode(sink);
|
2895
|
+
}
|
2896
|
+
Instruction::I32AtomicRmw16AddU(memarg) => {
|
2897
|
+
sink.push(0xFE);
|
2898
|
+
sink.push(0x21);
|
2899
|
+
memarg.encode(sink);
|
2900
|
+
}
|
2901
|
+
Instruction::I64AtomicRmw8AddU(memarg) => {
|
2902
|
+
sink.push(0xFE);
|
2903
|
+
sink.push(0x22);
|
2904
|
+
memarg.encode(sink);
|
2905
|
+
}
|
2906
|
+
Instruction::I64AtomicRmw16AddU(memarg) => {
|
2907
|
+
sink.push(0xFE);
|
2908
|
+
sink.push(0x23);
|
2909
|
+
memarg.encode(sink);
|
2910
|
+
}
|
2911
|
+
Instruction::I64AtomicRmw32AddU(memarg) => {
|
2912
|
+
sink.push(0xFE);
|
2913
|
+
sink.push(0x24);
|
2914
|
+
memarg.encode(sink);
|
2915
|
+
}
|
2916
|
+
Instruction::I32AtomicRmwSub(memarg) => {
|
2917
|
+
sink.push(0xFE);
|
2918
|
+
sink.push(0x25);
|
2919
|
+
memarg.encode(sink);
|
2920
|
+
}
|
2921
|
+
Instruction::I64AtomicRmwSub(memarg) => {
|
2922
|
+
sink.push(0xFE);
|
2923
|
+
sink.push(0x26);
|
2924
|
+
memarg.encode(sink);
|
2925
|
+
}
|
2926
|
+
Instruction::I32AtomicRmw8SubU(memarg) => {
|
2927
|
+
sink.push(0xFE);
|
2928
|
+
sink.push(0x27);
|
2929
|
+
memarg.encode(sink);
|
2930
|
+
}
|
2931
|
+
Instruction::I32AtomicRmw16SubU(memarg) => {
|
2932
|
+
sink.push(0xFE);
|
2933
|
+
sink.push(0x28);
|
2934
|
+
memarg.encode(sink);
|
2935
|
+
}
|
2936
|
+
Instruction::I64AtomicRmw8SubU(memarg) => {
|
2937
|
+
sink.push(0xFE);
|
2938
|
+
sink.push(0x29);
|
2939
|
+
memarg.encode(sink);
|
2940
|
+
}
|
2941
|
+
Instruction::I64AtomicRmw16SubU(memarg) => {
|
2942
|
+
sink.push(0xFE);
|
2943
|
+
sink.push(0x2A);
|
2944
|
+
memarg.encode(sink);
|
2945
|
+
}
|
2946
|
+
Instruction::I64AtomicRmw32SubU(memarg) => {
|
2947
|
+
sink.push(0xFE);
|
2948
|
+
sink.push(0x2B);
|
2949
|
+
memarg.encode(sink);
|
2950
|
+
}
|
2951
|
+
Instruction::I32AtomicRmwAnd(memarg) => {
|
2952
|
+
sink.push(0xFE);
|
2953
|
+
sink.push(0x2C);
|
2954
|
+
memarg.encode(sink);
|
2955
|
+
}
|
2956
|
+
Instruction::I64AtomicRmwAnd(memarg) => {
|
2957
|
+
sink.push(0xFE);
|
2958
|
+
sink.push(0x2D);
|
2959
|
+
memarg.encode(sink);
|
2960
|
+
}
|
2961
|
+
Instruction::I32AtomicRmw8AndU(memarg) => {
|
2962
|
+
sink.push(0xFE);
|
2963
|
+
sink.push(0x2E);
|
2964
|
+
memarg.encode(sink);
|
2965
|
+
}
|
2966
|
+
Instruction::I32AtomicRmw16AndU(memarg) => {
|
2967
|
+
sink.push(0xFE);
|
2968
|
+
sink.push(0x2F);
|
2969
|
+
memarg.encode(sink);
|
2970
|
+
}
|
2971
|
+
Instruction::I64AtomicRmw8AndU(memarg) => {
|
2972
|
+
sink.push(0xFE);
|
2973
|
+
sink.push(0x30);
|
2974
|
+
memarg.encode(sink);
|
2975
|
+
}
|
2976
|
+
Instruction::I64AtomicRmw16AndU(memarg) => {
|
2977
|
+
sink.push(0xFE);
|
2978
|
+
sink.push(0x31);
|
2979
|
+
memarg.encode(sink);
|
2980
|
+
}
|
2981
|
+
Instruction::I64AtomicRmw32AndU(memarg) => {
|
2982
|
+
sink.push(0xFE);
|
2983
|
+
sink.push(0x32);
|
2984
|
+
memarg.encode(sink);
|
2985
|
+
}
|
2986
|
+
Instruction::I32AtomicRmwOr(memarg) => {
|
2987
|
+
sink.push(0xFE);
|
2988
|
+
sink.push(0x33);
|
2989
|
+
memarg.encode(sink);
|
2990
|
+
}
|
2991
|
+
Instruction::I64AtomicRmwOr(memarg) => {
|
2992
|
+
sink.push(0xFE);
|
2993
|
+
sink.push(0x34);
|
2994
|
+
memarg.encode(sink);
|
2995
|
+
}
|
2996
|
+
Instruction::I32AtomicRmw8OrU(memarg) => {
|
2997
|
+
sink.push(0xFE);
|
2998
|
+
sink.push(0x35);
|
2999
|
+
memarg.encode(sink);
|
3000
|
+
}
|
3001
|
+
Instruction::I32AtomicRmw16OrU(memarg) => {
|
3002
|
+
sink.push(0xFE);
|
3003
|
+
sink.push(0x36);
|
3004
|
+
memarg.encode(sink);
|
3005
|
+
}
|
3006
|
+
Instruction::I64AtomicRmw8OrU(memarg) => {
|
3007
|
+
sink.push(0xFE);
|
3008
|
+
sink.push(0x37);
|
3009
|
+
memarg.encode(sink);
|
3010
|
+
}
|
3011
|
+
Instruction::I64AtomicRmw16OrU(memarg) => {
|
3012
|
+
sink.push(0xFE);
|
3013
|
+
sink.push(0x38);
|
3014
|
+
memarg.encode(sink);
|
3015
|
+
}
|
3016
|
+
Instruction::I64AtomicRmw32OrU(memarg) => {
|
3017
|
+
sink.push(0xFE);
|
3018
|
+
sink.push(0x39);
|
3019
|
+
memarg.encode(sink);
|
3020
|
+
}
|
3021
|
+
Instruction::I32AtomicRmwXor(memarg) => {
|
3022
|
+
sink.push(0xFE);
|
3023
|
+
sink.push(0x3A);
|
3024
|
+
memarg.encode(sink);
|
3025
|
+
}
|
3026
|
+
Instruction::I64AtomicRmwXor(memarg) => {
|
3027
|
+
sink.push(0xFE);
|
3028
|
+
sink.push(0x3B);
|
3029
|
+
memarg.encode(sink);
|
3030
|
+
}
|
3031
|
+
Instruction::I32AtomicRmw8XorU(memarg) => {
|
3032
|
+
sink.push(0xFE);
|
3033
|
+
sink.push(0x3C);
|
3034
|
+
memarg.encode(sink);
|
3035
|
+
}
|
3036
|
+
Instruction::I32AtomicRmw16XorU(memarg) => {
|
3037
|
+
sink.push(0xFE);
|
3038
|
+
sink.push(0x3D);
|
3039
|
+
memarg.encode(sink);
|
3040
|
+
}
|
3041
|
+
Instruction::I64AtomicRmw8XorU(memarg) => {
|
3042
|
+
sink.push(0xFE);
|
3043
|
+
sink.push(0x3E);
|
3044
|
+
memarg.encode(sink);
|
3045
|
+
}
|
3046
|
+
Instruction::I64AtomicRmw16XorU(memarg) => {
|
3047
|
+
sink.push(0xFE);
|
3048
|
+
sink.push(0x3F);
|
3049
|
+
memarg.encode(sink);
|
3050
|
+
}
|
3051
|
+
Instruction::I64AtomicRmw32XorU(memarg) => {
|
3052
|
+
sink.push(0xFE);
|
3053
|
+
sink.push(0x40);
|
3054
|
+
memarg.encode(sink);
|
3055
|
+
}
|
3056
|
+
Instruction::I32AtomicRmwXchg(memarg) => {
|
3057
|
+
sink.push(0xFE);
|
3058
|
+
sink.push(0x41);
|
3059
|
+
memarg.encode(sink);
|
3060
|
+
}
|
3061
|
+
Instruction::I64AtomicRmwXchg(memarg) => {
|
3062
|
+
sink.push(0xFE);
|
3063
|
+
sink.push(0x42);
|
3064
|
+
memarg.encode(sink);
|
3065
|
+
}
|
3066
|
+
Instruction::I32AtomicRmw8XchgU(memarg) => {
|
3067
|
+
sink.push(0xFE);
|
3068
|
+
sink.push(0x43);
|
3069
|
+
memarg.encode(sink);
|
3070
|
+
}
|
3071
|
+
Instruction::I32AtomicRmw16XchgU(memarg) => {
|
3072
|
+
sink.push(0xFE);
|
3073
|
+
sink.push(0x44);
|
3074
|
+
memarg.encode(sink);
|
3075
|
+
}
|
3076
|
+
Instruction::I64AtomicRmw8XchgU(memarg) => {
|
3077
|
+
sink.push(0xFE);
|
3078
|
+
sink.push(0x45);
|
3079
|
+
memarg.encode(sink);
|
3080
|
+
}
|
3081
|
+
Instruction::I64AtomicRmw16XchgU(memarg) => {
|
3082
|
+
sink.push(0xFE);
|
3083
|
+
sink.push(0x46);
|
3084
|
+
memarg.encode(sink);
|
3085
|
+
}
|
3086
|
+
Instruction::I64AtomicRmw32XchgU(memarg) => {
|
3087
|
+
sink.push(0xFE);
|
3088
|
+
sink.push(0x47);
|
3089
|
+
memarg.encode(sink);
|
3090
|
+
}
|
3091
|
+
Instruction::I32AtomicRmwCmpxchg(memarg) => {
|
3092
|
+
sink.push(0xFE);
|
3093
|
+
sink.push(0x48);
|
3094
|
+
memarg.encode(sink);
|
3095
|
+
}
|
3096
|
+
Instruction::I64AtomicRmwCmpxchg(memarg) => {
|
3097
|
+
sink.push(0xFE);
|
3098
|
+
sink.push(0x49);
|
3099
|
+
memarg.encode(sink);
|
3100
|
+
}
|
3101
|
+
Instruction::I32AtomicRmw8CmpxchgU(memarg) => {
|
3102
|
+
sink.push(0xFE);
|
3103
|
+
sink.push(0x4A);
|
3104
|
+
memarg.encode(sink);
|
3105
|
+
}
|
3106
|
+
Instruction::I32AtomicRmw16CmpxchgU(memarg) => {
|
3107
|
+
sink.push(0xFE);
|
3108
|
+
sink.push(0x4B);
|
3109
|
+
memarg.encode(sink);
|
3110
|
+
}
|
3111
|
+
Instruction::I64AtomicRmw8CmpxchgU(memarg) => {
|
3112
|
+
sink.push(0xFE);
|
3113
|
+
sink.push(0x4C);
|
3114
|
+
memarg.encode(sink);
|
3115
|
+
}
|
3116
|
+
Instruction::I64AtomicRmw16CmpxchgU(memarg) => {
|
3117
|
+
sink.push(0xFE);
|
3118
|
+
sink.push(0x4D);
|
3119
|
+
memarg.encode(sink);
|
3120
|
+
}
|
3121
|
+
Instruction::I64AtomicRmw32CmpxchgU(memarg) => {
|
3122
|
+
sink.push(0xFE);
|
3123
|
+
sink.push(0x4E);
|
3124
|
+
memarg.encode(sink);
|
3125
|
+
}
|
3126
|
+
}
|
3127
|
+
}
|
3128
|
+
}
|
3129
|
+
|
3130
|
+
#[derive(Clone, Debug)]
|
3131
|
+
#[allow(missing_docs)]
|
3132
|
+
pub enum Catch {
|
3133
|
+
One { tag: u32, label: u32 },
|
3134
|
+
OneRef { tag: u32, label: u32 },
|
3135
|
+
All { label: u32 },
|
3136
|
+
AllRef { label: u32 },
|
3137
|
+
}
|
3138
|
+
|
3139
|
+
impl Encode for Catch {
|
3140
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
3141
|
+
match self {
|
3142
|
+
Catch::One { tag, label } => {
|
3143
|
+
sink.push(0x00);
|
3144
|
+
tag.encode(sink);
|
3145
|
+
label.encode(sink);
|
3146
|
+
}
|
3147
|
+
Catch::OneRef { tag, label } => {
|
3148
|
+
sink.push(0x01);
|
3149
|
+
tag.encode(sink);
|
3150
|
+
label.encode(sink);
|
3151
|
+
}
|
3152
|
+
Catch::All { label } => {
|
3153
|
+
sink.push(0x02);
|
3154
|
+
label.encode(sink);
|
3155
|
+
}
|
3156
|
+
Catch::AllRef { label } => {
|
3157
|
+
sink.push(0x03);
|
3158
|
+
label.encode(sink);
|
3159
|
+
}
|
3160
|
+
}
|
3161
|
+
}
|
3162
|
+
}
|
3163
|
+
|
3164
|
+
/// A constant expression.
|
3165
|
+
///
|
3166
|
+
/// Usable in contexts such as offsets or initializers.
|
3167
|
+
#[derive(Debug)]
|
3168
|
+
pub struct ConstExpr {
|
3169
|
+
bytes: Vec<u8>,
|
3170
|
+
}
|
3171
|
+
|
3172
|
+
impl ConstExpr {
|
3173
|
+
/// Create a new empty constant expression builder.
|
3174
|
+
pub fn empty() -> Self {
|
3175
|
+
Self { bytes: Vec::new() }
|
3176
|
+
}
|
3177
|
+
|
3178
|
+
/// Create a constant expression with the specified raw encoding of instructions.
|
3179
|
+
pub fn raw(bytes: impl IntoIterator<Item = u8>) -> Self {
|
3180
|
+
Self {
|
3181
|
+
bytes: bytes.into_iter().collect(),
|
3182
|
+
}
|
3183
|
+
}
|
3184
|
+
|
3185
|
+
fn new_insn(insn: Instruction) -> Self {
|
3186
|
+
let mut bytes = vec![];
|
3187
|
+
insn.encode(&mut bytes);
|
3188
|
+
Self { bytes }
|
3189
|
+
}
|
3190
|
+
|
3191
|
+
fn with_insn(mut self, insn: Instruction) -> Self {
|
3192
|
+
insn.encode(&mut self.bytes);
|
3193
|
+
self
|
3194
|
+
}
|
3195
|
+
|
3196
|
+
/// Create a constant expression containing a single `global.get` instruction.
|
3197
|
+
pub fn global_get(index: u32) -> Self {
|
3198
|
+
Self::new_insn(Instruction::GlobalGet(index))
|
3199
|
+
}
|
3200
|
+
|
3201
|
+
/// Create a constant expression containing a single `ref.null` instruction.
|
3202
|
+
pub fn ref_null(ty: HeapType) -> Self {
|
3203
|
+
Self::new_insn(Instruction::RefNull(ty))
|
3204
|
+
}
|
3205
|
+
|
3206
|
+
/// Create a constant expression containing a single `ref.func` instruction.
|
3207
|
+
pub fn ref_func(func: u32) -> Self {
|
3208
|
+
Self::new_insn(Instruction::RefFunc(func))
|
3209
|
+
}
|
3210
|
+
|
3211
|
+
/// Create a constant expression containing a single `i32.const` instruction.
|
3212
|
+
pub fn i32_const(value: i32) -> Self {
|
3213
|
+
Self::new_insn(Instruction::I32Const(value))
|
3214
|
+
}
|
3215
|
+
|
3216
|
+
/// Create a constant expression containing a single `i64.const` instruction.
|
3217
|
+
pub fn i64_const(value: i64) -> Self {
|
3218
|
+
Self::new_insn(Instruction::I64Const(value))
|
3219
|
+
}
|
3220
|
+
|
3221
|
+
/// Create a constant expression containing a single `f32.const` instruction.
|
3222
|
+
pub fn f32_const(value: f32) -> Self {
|
3223
|
+
Self::new_insn(Instruction::F32Const(value))
|
3224
|
+
}
|
3225
|
+
|
3226
|
+
/// Create a constant expression containing a single `f64.const` instruction.
|
3227
|
+
pub fn f64_const(value: f64) -> Self {
|
3228
|
+
Self::new_insn(Instruction::F64Const(value))
|
3229
|
+
}
|
3230
|
+
|
3231
|
+
/// Create a constant expression containing a single `v128.const` instruction.
|
3232
|
+
pub fn v128_const(value: i128) -> Self {
|
3233
|
+
Self::new_insn(Instruction::V128Const(value))
|
3234
|
+
}
|
3235
|
+
|
3236
|
+
/// Add a `global.get` instruction to this constant expression.
|
3237
|
+
pub fn with_global_get(self, index: u32) -> Self {
|
3238
|
+
self.with_insn(Instruction::GlobalGet(index))
|
3239
|
+
}
|
3240
|
+
|
3241
|
+
/// Add a `ref.null` instruction to this constant expression.
|
3242
|
+
pub fn with_ref_null(self, ty: HeapType) -> Self {
|
3243
|
+
self.with_insn(Instruction::RefNull(ty))
|
3244
|
+
}
|
3245
|
+
|
3246
|
+
/// Add a `ref.func` instruction to this constant expression.
|
3247
|
+
pub fn with_ref_func(self, func: u32) -> Self {
|
3248
|
+
self.with_insn(Instruction::RefFunc(func))
|
3249
|
+
}
|
3250
|
+
|
3251
|
+
/// Add an `i32.const` instruction to this constant expression.
|
3252
|
+
pub fn with_i32_const(self, value: i32) -> Self {
|
3253
|
+
self.with_insn(Instruction::I32Const(value))
|
3254
|
+
}
|
3255
|
+
|
3256
|
+
/// Add an `i64.const` instruction to this constant expression.
|
3257
|
+
pub fn with_i64_const(self, value: i64) -> Self {
|
3258
|
+
self.with_insn(Instruction::I64Const(value))
|
3259
|
+
}
|
3260
|
+
|
3261
|
+
/// Add a `f32.const` instruction to this constant expression.
|
3262
|
+
pub fn with_f32_const(self, value: f32) -> Self {
|
3263
|
+
self.with_insn(Instruction::F32Const(value))
|
3264
|
+
}
|
3265
|
+
|
3266
|
+
/// Add a `f64.const` instruction to this constant expression.
|
3267
|
+
pub fn with_f64_const(self, value: f64) -> Self {
|
3268
|
+
self.with_insn(Instruction::F64Const(value))
|
3269
|
+
}
|
3270
|
+
|
3271
|
+
/// Add a `v128.const` instruction to this constant expression.
|
3272
|
+
pub fn with_v128_const(self, value: i128) -> Self {
|
3273
|
+
self.with_insn(Instruction::V128Const(value))
|
3274
|
+
}
|
3275
|
+
|
3276
|
+
/// Add an `i32.add` instruction to this constant expression.
|
3277
|
+
pub fn with_i32_add(self) -> Self {
|
3278
|
+
self.with_insn(Instruction::I32Add)
|
3279
|
+
}
|
3280
|
+
|
3281
|
+
/// Add an `i32.sub` instruction to this constant expression.
|
3282
|
+
pub fn with_i32_sub(self) -> Self {
|
3283
|
+
self.with_insn(Instruction::I32Sub)
|
3284
|
+
}
|
3285
|
+
|
3286
|
+
/// Add an `i32.mul` instruction to this constant expression.
|
3287
|
+
pub fn with_i32_mul(self) -> Self {
|
3288
|
+
self.with_insn(Instruction::I32Mul)
|
3289
|
+
}
|
3290
|
+
|
3291
|
+
/// Add an `i64.add` instruction to this constant expression.
|
3292
|
+
pub fn with_i64_add(self) -> Self {
|
3293
|
+
self.with_insn(Instruction::I64Add)
|
3294
|
+
}
|
3295
|
+
|
3296
|
+
/// Add an `i64.sub` instruction to this constant expression.
|
3297
|
+
pub fn with_i64_sub(self) -> Self {
|
3298
|
+
self.with_insn(Instruction::I64Sub)
|
3299
|
+
}
|
3300
|
+
|
3301
|
+
/// Add an `i64.mul` instruction to this constant expression.
|
3302
|
+
pub fn with_i64_mul(self) -> Self {
|
3303
|
+
self.with_insn(Instruction::I64Mul)
|
3304
|
+
}
|
3305
|
+
|
3306
|
+
/// Returns the function, if any, referenced by this global.
|
3307
|
+
pub fn get_ref_func(&self) -> Option<u32> {
|
3308
|
+
let prefix = *self.bytes.get(0)?;
|
3309
|
+
// 0xd2 == `ref.func` opcode, and if that's found then load the leb
|
3310
|
+
// corresponding to the function index.
|
3311
|
+
if prefix != 0xd2 {
|
3312
|
+
return None;
|
3313
|
+
}
|
3314
|
+
leb128::read::unsigned(&mut &self.bytes[1..])
|
3315
|
+
.ok()?
|
3316
|
+
.try_into()
|
3317
|
+
.ok()
|
3318
|
+
}
|
3319
|
+
}
|
3320
|
+
|
3321
|
+
impl Encode for ConstExpr {
|
3322
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
3323
|
+
sink.extend(&self.bytes);
|
3324
|
+
Instruction::End.encode(sink);
|
3325
|
+
}
|
3326
|
+
}
|
3327
|
+
|
3328
|
+
/// An error when converting a `wasmparser::ConstExpr` into a
|
3329
|
+
/// `wasm_encoder::ConstExpr`.
|
3330
|
+
#[cfg(feature = "wasmparser")]
|
3331
|
+
#[derive(Debug)]
|
3332
|
+
pub enum ConstExprConversionError {
|
3333
|
+
/// There was an error when parsing the const expression.
|
3334
|
+
ParseError(wasmparser::BinaryReaderError),
|
3335
|
+
|
3336
|
+
/// The const expression is invalid: not actually constant or something like
|
3337
|
+
/// that.
|
3338
|
+
Invalid,
|
3339
|
+
|
3340
|
+
/// There was a type reference that was canonicalized and no longer
|
3341
|
+
/// references an index into a module's types space, so we cannot encode it
|
3342
|
+
/// into a Wasm binary again.
|
3343
|
+
CanonicalizedTypeReference,
|
3344
|
+
}
|
3345
|
+
|
3346
|
+
#[cfg(feature = "wasmparser")]
|
3347
|
+
impl std::fmt::Display for ConstExprConversionError {
|
3348
|
+
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
3349
|
+
match self {
|
3350
|
+
Self::ParseError(_e) => {
|
3351
|
+
write!(f, "There was an error when parsing the const expression")
|
3352
|
+
}
|
3353
|
+
Self::Invalid => write!(f, "The const expression was invalid"),
|
3354
|
+
Self::CanonicalizedTypeReference => write!(
|
3355
|
+
f,
|
3356
|
+
"There was a canonicalized type reference without type index information"
|
3357
|
+
),
|
3358
|
+
}
|
3359
|
+
}
|
3360
|
+
}
|
3361
|
+
|
3362
|
+
#[cfg(feature = "wasmparser")]
|
3363
|
+
impl std::error::Error for ConstExprConversionError {
|
3364
|
+
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
|
3365
|
+
match self {
|
3366
|
+
Self::ParseError(e) => Some(e),
|
3367
|
+
Self::Invalid | Self::CanonicalizedTypeReference => None,
|
3368
|
+
}
|
3369
|
+
}
|
3370
|
+
}
|
3371
|
+
|
3372
|
+
#[cfg(feature = "wasmparser")]
|
3373
|
+
impl<'a> TryFrom<wasmparser::ConstExpr<'a>> for ConstExpr {
|
3374
|
+
type Error = ConstExprConversionError;
|
3375
|
+
|
3376
|
+
fn try_from(const_expr: wasmparser::ConstExpr) -> Result<Self, Self::Error> {
|
3377
|
+
let mut ops = const_expr.get_operators_reader().into_iter();
|
3378
|
+
|
3379
|
+
let result = match ops.next() {
|
3380
|
+
Some(Ok(wasmparser::Operator::I32Const { value })) => ConstExpr::i32_const(value),
|
3381
|
+
Some(Ok(wasmparser::Operator::I64Const { value })) => ConstExpr::i64_const(value),
|
3382
|
+
Some(Ok(wasmparser::Operator::F32Const { value })) => {
|
3383
|
+
ConstExpr::f32_const(value.bits() as _)
|
3384
|
+
}
|
3385
|
+
Some(Ok(wasmparser::Operator::F64Const { value })) => {
|
3386
|
+
ConstExpr::f64_const(value.bits() as _)
|
3387
|
+
}
|
3388
|
+
Some(Ok(wasmparser::Operator::V128Const { value })) => {
|
3389
|
+
ConstExpr::v128_const(i128::from_le_bytes(*value.bytes()))
|
3390
|
+
}
|
3391
|
+
Some(Ok(wasmparser::Operator::RefNull { hty })) => ConstExpr::ref_null(
|
3392
|
+
HeapType::try_from(hty)
|
3393
|
+
.map_err(|_| ConstExprConversionError::CanonicalizedTypeReference)?,
|
3394
|
+
),
|
3395
|
+
Some(Ok(wasmparser::Operator::RefFunc { function_index })) => {
|
3396
|
+
ConstExpr::ref_func(function_index)
|
3397
|
+
}
|
3398
|
+
Some(Ok(wasmparser::Operator::GlobalGet { global_index })) => {
|
3399
|
+
ConstExpr::global_get(global_index)
|
3400
|
+
}
|
3401
|
+
|
3402
|
+
// TODO: support the extended-const proposal.
|
3403
|
+
Some(Ok(_op)) => return Err(ConstExprConversionError::Invalid),
|
3404
|
+
|
3405
|
+
Some(Err(e)) => return Err(ConstExprConversionError::ParseError(e)),
|
3406
|
+
None => return Err(ConstExprConversionError::Invalid),
|
3407
|
+
};
|
3408
|
+
|
3409
|
+
match (ops.next(), ops.next()) {
|
3410
|
+
(Some(Ok(wasmparser::Operator::End)), None) => Ok(result),
|
3411
|
+
_ => Err(ConstExprConversionError::Invalid),
|
3412
|
+
}
|
3413
|
+
}
|
3414
|
+
}
|
3415
|
+
|
3416
|
+
#[cfg(test)]
|
3417
|
+
mod tests {
|
3418
|
+
#[test]
|
3419
|
+
fn function_new_with_locals_test() {
|
3420
|
+
use super::*;
|
3421
|
+
|
3422
|
+
// Test the algorithm for conversion is correct
|
3423
|
+
let f1 = Function::new_with_locals_types([
|
3424
|
+
ValType::I32,
|
3425
|
+
ValType::I32,
|
3426
|
+
ValType::I64,
|
3427
|
+
ValType::F32,
|
3428
|
+
ValType::F32,
|
3429
|
+
ValType::F32,
|
3430
|
+
ValType::I32,
|
3431
|
+
ValType::I64,
|
3432
|
+
ValType::I64,
|
3433
|
+
]);
|
3434
|
+
let f2 = Function::new([
|
3435
|
+
(2, ValType::I32),
|
3436
|
+
(1, ValType::I64),
|
3437
|
+
(3, ValType::F32),
|
3438
|
+
(1, ValType::I32),
|
3439
|
+
(2, ValType::I64),
|
3440
|
+
]);
|
3441
|
+
|
3442
|
+
assert_eq!(f1.bytes, f2.bytes)
|
3443
|
+
}
|
3444
|
+
}
|