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
@@ -1,2041 +0,0 @@
|
|
1
|
-
//! A verifier for ensuring that functions are well formed.
|
2
|
-
//! It verifies:
|
3
|
-
//!
|
4
|
-
//! block integrity
|
5
|
-
//!
|
6
|
-
//! - All instructions reached from the `block_insts` iterator must belong to
|
7
|
-
//! the block as reported by `inst_block()`.
|
8
|
-
//! - Every block must end in a terminator instruction, and no other instruction
|
9
|
-
//! can be a terminator.
|
10
|
-
//! - Every value in the `block_params` iterator belongs to the block as reported by `value_block`.
|
11
|
-
//!
|
12
|
-
//! Instruction integrity
|
13
|
-
//!
|
14
|
-
//! - The instruction format must match the opcode.
|
15
|
-
//! - All result values must be created for multi-valued instructions.
|
16
|
-
//! - All referenced entities must exist. (Values, blocks, stack slots, ...)
|
17
|
-
//! - Instructions must not reference (eg. branch to) the entry block.
|
18
|
-
//!
|
19
|
-
//! SSA form
|
20
|
-
//!
|
21
|
-
//! - Values must be defined by an instruction that exists and that is inserted in
|
22
|
-
//! a block, or be an argument of an existing block.
|
23
|
-
//! - Values used by an instruction must dominate the instruction.
|
24
|
-
//!
|
25
|
-
//! Control flow graph and dominator tree integrity:
|
26
|
-
//!
|
27
|
-
//! - All predecessors in the CFG must be branches to the block.
|
28
|
-
//! - All branches to a block must be present in the CFG.
|
29
|
-
//! - A recomputed dominator tree is identical to the existing one.
|
30
|
-
//! - The entry block must not be a cold block.
|
31
|
-
//!
|
32
|
-
//! Type checking
|
33
|
-
//!
|
34
|
-
//! - Compare input and output values against the opcode's type constraints.
|
35
|
-
//! For polymorphic opcodes, determine the controlling type variable first.
|
36
|
-
//! - Branches and jumps must pass arguments to destination blocks that match the
|
37
|
-
//! expected types exactly. The number of arguments must match.
|
38
|
-
//! - All blocks in a jump table must take no arguments.
|
39
|
-
//! - Function calls are type checked against their signature.
|
40
|
-
//! - The entry block must take arguments that match the signature of the current
|
41
|
-
//! function.
|
42
|
-
//! - All return instructions must have return value operands matching the current
|
43
|
-
//! function signature.
|
44
|
-
//!
|
45
|
-
//! Global values
|
46
|
-
//!
|
47
|
-
//! - Detect cycles in global values.
|
48
|
-
//! - Detect use of 'vmctx' global value when no corresponding parameter is defined.
|
49
|
-
//!
|
50
|
-
//! Memory types
|
51
|
-
//!
|
52
|
-
//! - Ensure that struct fields are in offset order.
|
53
|
-
//! - Ensure that struct fields are completely within the overall
|
54
|
-
//! struct size, and do not overlap.
|
55
|
-
//!
|
56
|
-
//! TODO:
|
57
|
-
//! Ad hoc checking
|
58
|
-
//!
|
59
|
-
//! - Stack slot loads and stores must be in-bounds.
|
60
|
-
//! - Immediate constraints for certain opcodes, like `udiv_imm v3, 0`.
|
61
|
-
//! - `Insertlane` and `extractlane` instructions have immediate lane numbers that must be in
|
62
|
-
//! range for their polymorphic type.
|
63
|
-
//! - Swizzle and shuffle instructions take a variable number of lane arguments. The number
|
64
|
-
//! of arguments must match the destination type, and the lane indexes must be in range.
|
65
|
-
|
66
|
-
use crate::dbg::DisplayList;
|
67
|
-
use crate::dominator_tree::DominatorTree;
|
68
|
-
use crate::entity::SparseSet;
|
69
|
-
use crate::flowgraph::{BlockPredecessor, ControlFlowGraph};
|
70
|
-
use crate::ir::entities::AnyEntity;
|
71
|
-
use crate::ir::instructions::{CallInfo, InstructionFormat, ResolvedConstraint};
|
72
|
-
use crate::ir::{self, ArgumentExtension};
|
73
|
-
use crate::ir::{
|
74
|
-
types, ArgumentPurpose, Block, Constant, DynamicStackSlot, FuncRef, Function, GlobalValue,
|
75
|
-
Inst, JumpTable, MemFlags, MemoryTypeData, Opcode, SigRef, StackSlot, Type, Value, ValueDef,
|
76
|
-
ValueList,
|
77
|
-
};
|
78
|
-
use crate::isa::TargetIsa;
|
79
|
-
use crate::iterators::IteratorExtras;
|
80
|
-
use crate::print_errors::pretty_verifier_error;
|
81
|
-
use crate::settings::FlagsOrIsa;
|
82
|
-
use crate::timing;
|
83
|
-
use alloc::collections::BTreeSet;
|
84
|
-
use alloc::string::{String, ToString};
|
85
|
-
use alloc::vec::Vec;
|
86
|
-
use core::cmp::Ordering;
|
87
|
-
use core::fmt::{self, Display, Formatter};
|
88
|
-
|
89
|
-
/// A verifier error.
|
90
|
-
#[derive(Debug, PartialEq, Eq, Clone)]
|
91
|
-
pub struct VerifierError {
|
92
|
-
/// The entity causing the verifier error.
|
93
|
-
pub location: AnyEntity,
|
94
|
-
/// Optionally provide some context for the given location; e.g., for `inst42` provide
|
95
|
-
/// `Some("v3 = iconst.i32 0")` for more comprehensible errors.
|
96
|
-
pub context: Option<String>,
|
97
|
-
/// The error message.
|
98
|
-
pub message: String,
|
99
|
-
}
|
100
|
-
|
101
|
-
// This is manually implementing Error and Display instead of using thiserror to reduce the amount
|
102
|
-
// of dependencies used by Cranelift.
|
103
|
-
impl std::error::Error for VerifierError {}
|
104
|
-
|
105
|
-
impl Display for VerifierError {
|
106
|
-
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
107
|
-
match &self.context {
|
108
|
-
None => write!(f, "{}: {}", self.location, self.message),
|
109
|
-
Some(context) => write!(f, "{} ({}): {}", self.location, context, self.message),
|
110
|
-
}
|
111
|
-
}
|
112
|
-
}
|
113
|
-
|
114
|
-
/// Convenience converter for making error-reporting less verbose.
|
115
|
-
///
|
116
|
-
/// Converts a tuple of `(location, context, message)` to a `VerifierError`.
|
117
|
-
/// ```
|
118
|
-
/// use cranelift_codegen::verifier::VerifierErrors;
|
119
|
-
/// use cranelift_codegen::ir::Inst;
|
120
|
-
/// let mut errors = VerifierErrors::new();
|
121
|
-
/// errors.report((Inst::from_u32(42), "v3 = iadd v1, v2", "iadd cannot be used with values of this type"));
|
122
|
-
/// // note the double parenthenses to use this syntax
|
123
|
-
/// ```
|
124
|
-
impl<L, C, M> From<(L, C, M)> for VerifierError
|
125
|
-
where
|
126
|
-
L: Into<AnyEntity>,
|
127
|
-
C: Into<String>,
|
128
|
-
M: Into<String>,
|
129
|
-
{
|
130
|
-
fn from(items: (L, C, M)) -> Self {
|
131
|
-
let (location, context, message) = items;
|
132
|
-
Self {
|
133
|
-
location: location.into(),
|
134
|
-
context: Some(context.into()),
|
135
|
-
message: message.into(),
|
136
|
-
}
|
137
|
-
}
|
138
|
-
}
|
139
|
-
|
140
|
-
/// Convenience converter for making error-reporting less verbose.
|
141
|
-
///
|
142
|
-
/// Same as above but without `context`.
|
143
|
-
impl<L, M> From<(L, M)> for VerifierError
|
144
|
-
where
|
145
|
-
L: Into<AnyEntity>,
|
146
|
-
M: Into<String>,
|
147
|
-
{
|
148
|
-
fn from(items: (L, M)) -> Self {
|
149
|
-
let (location, message) = items;
|
150
|
-
Self {
|
151
|
-
location: location.into(),
|
152
|
-
context: None,
|
153
|
-
message: message.into(),
|
154
|
-
}
|
155
|
-
}
|
156
|
-
}
|
157
|
-
|
158
|
-
/// Result of a step in the verification process.
|
159
|
-
///
|
160
|
-
/// Functions that return `VerifierStepResult<()>` should also take a
|
161
|
-
/// mutable reference to `VerifierErrors` as argument in order to report
|
162
|
-
/// errors.
|
163
|
-
///
|
164
|
-
/// Here, `Ok` represents a step that **did not lead to a fatal error**,
|
165
|
-
/// meaning that the verification process may continue. However, other (non-fatal)
|
166
|
-
/// errors might have been reported through the previously mentioned `VerifierErrors`
|
167
|
-
/// argument.
|
168
|
-
pub type VerifierStepResult<T> = Result<T, ()>;
|
169
|
-
|
170
|
-
/// Result of a verification operation.
|
171
|
-
///
|
172
|
-
/// Unlike `VerifierStepResult<()>` which may be `Ok` while still having reported
|
173
|
-
/// errors, this type always returns `Err` if an error (fatal or not) was reported.
|
174
|
-
pub type VerifierResult<T> = Result<T, VerifierErrors>;
|
175
|
-
|
176
|
-
/// List of verifier errors.
|
177
|
-
#[derive(Debug, Default, PartialEq, Eq, Clone)]
|
178
|
-
pub struct VerifierErrors(pub Vec<VerifierError>);
|
179
|
-
|
180
|
-
// This is manually implementing Error and Display instead of using thiserror to reduce the amount
|
181
|
-
// of dependencies used by Cranelift.
|
182
|
-
impl std::error::Error for VerifierErrors {}
|
183
|
-
|
184
|
-
impl VerifierErrors {
|
185
|
-
/// Return a new `VerifierErrors` struct.
|
186
|
-
#[inline]
|
187
|
-
pub fn new() -> Self {
|
188
|
-
Self(Vec::new())
|
189
|
-
}
|
190
|
-
|
191
|
-
/// Return whether no errors were reported.
|
192
|
-
#[inline]
|
193
|
-
pub fn is_empty(&self) -> bool {
|
194
|
-
self.0.is_empty()
|
195
|
-
}
|
196
|
-
|
197
|
-
/// Return whether one or more errors were reported.
|
198
|
-
#[inline]
|
199
|
-
pub fn has_error(&self) -> bool {
|
200
|
-
!self.0.is_empty()
|
201
|
-
}
|
202
|
-
|
203
|
-
/// Return a `VerifierStepResult` that is fatal if at least one error was reported,
|
204
|
-
/// and non-fatal otherwise.
|
205
|
-
#[inline]
|
206
|
-
pub fn as_result(&self) -> VerifierStepResult<()> {
|
207
|
-
if self.is_empty() {
|
208
|
-
Ok(())
|
209
|
-
} else {
|
210
|
-
Err(())
|
211
|
-
}
|
212
|
-
}
|
213
|
-
|
214
|
-
/// Report an error, adding it to the list of errors.
|
215
|
-
pub fn report(&mut self, error: impl Into<VerifierError>) {
|
216
|
-
self.0.push(error.into());
|
217
|
-
}
|
218
|
-
|
219
|
-
/// Report a fatal error and return `Err`.
|
220
|
-
pub fn fatal(&mut self, error: impl Into<VerifierError>) -> VerifierStepResult<()> {
|
221
|
-
self.report(error);
|
222
|
-
Err(())
|
223
|
-
}
|
224
|
-
|
225
|
-
/// Report a non-fatal error and return `Ok`.
|
226
|
-
pub fn nonfatal(&mut self, error: impl Into<VerifierError>) -> VerifierStepResult<()> {
|
227
|
-
self.report(error);
|
228
|
-
Ok(())
|
229
|
-
}
|
230
|
-
}
|
231
|
-
|
232
|
-
impl From<Vec<VerifierError>> for VerifierErrors {
|
233
|
-
fn from(v: Vec<VerifierError>) -> Self {
|
234
|
-
Self(v)
|
235
|
-
}
|
236
|
-
}
|
237
|
-
|
238
|
-
impl Into<Vec<VerifierError>> for VerifierErrors {
|
239
|
-
fn into(self) -> Vec<VerifierError> {
|
240
|
-
self.0
|
241
|
-
}
|
242
|
-
}
|
243
|
-
|
244
|
-
impl Into<VerifierResult<()>> for VerifierErrors {
|
245
|
-
fn into(self) -> VerifierResult<()> {
|
246
|
-
if self.is_empty() {
|
247
|
-
Ok(())
|
248
|
-
} else {
|
249
|
-
Err(self)
|
250
|
-
}
|
251
|
-
}
|
252
|
-
}
|
253
|
-
|
254
|
-
impl Display for VerifierErrors {
|
255
|
-
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
256
|
-
for err in &self.0 {
|
257
|
-
writeln!(f, "- {}", err)?;
|
258
|
-
}
|
259
|
-
Ok(())
|
260
|
-
}
|
261
|
-
}
|
262
|
-
|
263
|
-
/// Verify `func`.
|
264
|
-
pub fn verify_function<'a, FOI: Into<FlagsOrIsa<'a>>>(
|
265
|
-
func: &Function,
|
266
|
-
fisa: FOI,
|
267
|
-
) -> VerifierResult<()> {
|
268
|
-
let _tt = timing::verifier();
|
269
|
-
let mut errors = VerifierErrors::default();
|
270
|
-
let verifier = Verifier::new(func, fisa.into());
|
271
|
-
let result = verifier.run(&mut errors);
|
272
|
-
if errors.is_empty() {
|
273
|
-
result.unwrap();
|
274
|
-
Ok(())
|
275
|
-
} else {
|
276
|
-
Err(errors)
|
277
|
-
}
|
278
|
-
}
|
279
|
-
|
280
|
-
/// Verify `func` after checking the integrity of associated context data structures `cfg` and
|
281
|
-
/// `domtree`.
|
282
|
-
pub fn verify_context<'a, FOI: Into<FlagsOrIsa<'a>>>(
|
283
|
-
func: &Function,
|
284
|
-
cfg: &ControlFlowGraph,
|
285
|
-
domtree: &DominatorTree,
|
286
|
-
fisa: FOI,
|
287
|
-
errors: &mut VerifierErrors,
|
288
|
-
) -> VerifierStepResult<()> {
|
289
|
-
let _tt = timing::verifier();
|
290
|
-
let verifier = Verifier::new(func, fisa.into());
|
291
|
-
if cfg.is_valid() {
|
292
|
-
verifier.cfg_integrity(cfg, errors)?;
|
293
|
-
}
|
294
|
-
if domtree.is_valid() {
|
295
|
-
verifier.domtree_integrity(domtree, errors)?;
|
296
|
-
}
|
297
|
-
verifier.run(errors)
|
298
|
-
}
|
299
|
-
|
300
|
-
struct Verifier<'a> {
|
301
|
-
func: &'a Function,
|
302
|
-
expected_cfg: ControlFlowGraph,
|
303
|
-
expected_domtree: DominatorTree,
|
304
|
-
isa: Option<&'a dyn TargetIsa>,
|
305
|
-
}
|
306
|
-
|
307
|
-
impl<'a> Verifier<'a> {
|
308
|
-
pub fn new(func: &'a Function, fisa: FlagsOrIsa<'a>) -> Self {
|
309
|
-
let expected_cfg = ControlFlowGraph::with_function(func);
|
310
|
-
let expected_domtree = DominatorTree::with_function(func, &expected_cfg);
|
311
|
-
Self {
|
312
|
-
func,
|
313
|
-
expected_cfg,
|
314
|
-
expected_domtree,
|
315
|
-
isa: fisa.isa,
|
316
|
-
}
|
317
|
-
}
|
318
|
-
|
319
|
-
/// Determine a contextual error string for an instruction.
|
320
|
-
#[inline]
|
321
|
-
fn context(&self, inst: Inst) -> String {
|
322
|
-
self.func.dfg.display_inst(inst).to_string()
|
323
|
-
}
|
324
|
-
|
325
|
-
// Check for:
|
326
|
-
// - cycles in the global value declarations.
|
327
|
-
// - use of 'vmctx' when no special parameter declares it.
|
328
|
-
fn verify_global_values(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
329
|
-
let mut cycle_seen = false;
|
330
|
-
let mut seen = SparseSet::new();
|
331
|
-
|
332
|
-
'gvs: for gv in self.func.global_values.keys() {
|
333
|
-
seen.clear();
|
334
|
-
seen.insert(gv);
|
335
|
-
|
336
|
-
let mut cur = gv;
|
337
|
-
loop {
|
338
|
-
match self.func.global_values[cur] {
|
339
|
-
ir::GlobalValueData::Load { base, .. }
|
340
|
-
| ir::GlobalValueData::IAddImm { base, .. } => {
|
341
|
-
if seen.insert(base).is_some() {
|
342
|
-
if !cycle_seen {
|
343
|
-
errors.report((
|
344
|
-
gv,
|
345
|
-
format!("global value cycle: {}", DisplayList(seen.as_slice())),
|
346
|
-
));
|
347
|
-
// ensures we don't report the cycle multiple times
|
348
|
-
cycle_seen = true;
|
349
|
-
}
|
350
|
-
continue 'gvs;
|
351
|
-
}
|
352
|
-
|
353
|
-
cur = base;
|
354
|
-
}
|
355
|
-
_ => break,
|
356
|
-
}
|
357
|
-
}
|
358
|
-
|
359
|
-
match self.func.global_values[gv] {
|
360
|
-
ir::GlobalValueData::VMContext { .. } => {
|
361
|
-
if self
|
362
|
-
.func
|
363
|
-
.special_param(ir::ArgumentPurpose::VMContext)
|
364
|
-
.is_none()
|
365
|
-
{
|
366
|
-
errors.report((gv, format!("undeclared vmctx reference {}", gv)));
|
367
|
-
}
|
368
|
-
}
|
369
|
-
ir::GlobalValueData::IAddImm {
|
370
|
-
base, global_type, ..
|
371
|
-
} => {
|
372
|
-
if !global_type.is_int() {
|
373
|
-
errors.report((
|
374
|
-
gv,
|
375
|
-
format!("iadd_imm global value with non-int type {}", global_type),
|
376
|
-
));
|
377
|
-
} else if let Some(isa) = self.isa {
|
378
|
-
let base_type = self.func.global_values[base].global_type(isa);
|
379
|
-
if global_type != base_type {
|
380
|
-
errors.report((
|
381
|
-
gv,
|
382
|
-
format!(
|
383
|
-
"iadd_imm type {} differs from operand type {}",
|
384
|
-
global_type, base_type
|
385
|
-
),
|
386
|
-
));
|
387
|
-
}
|
388
|
-
}
|
389
|
-
}
|
390
|
-
ir::GlobalValueData::Load { base, .. } => {
|
391
|
-
if let Some(isa) = self.isa {
|
392
|
-
let base_type = self.func.global_values[base].global_type(isa);
|
393
|
-
let pointer_type = isa.pointer_type();
|
394
|
-
if base_type != pointer_type {
|
395
|
-
errors.report((
|
396
|
-
gv,
|
397
|
-
format!(
|
398
|
-
"base {} has type {}, which is not the pointer type {}",
|
399
|
-
base, base_type, pointer_type
|
400
|
-
),
|
401
|
-
));
|
402
|
-
}
|
403
|
-
}
|
404
|
-
}
|
405
|
-
_ => {}
|
406
|
-
}
|
407
|
-
}
|
408
|
-
|
409
|
-
// Invalid global values shouldn't stop us from verifying the rest of the function
|
410
|
-
Ok(())
|
411
|
-
}
|
412
|
-
|
413
|
-
fn verify_memory_types(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
414
|
-
// Verify that all fields are statically-sized and lie within
|
415
|
-
// the struct, do not overlap, and are in offset order
|
416
|
-
for (mt, mt_data) in &self.func.memory_types {
|
417
|
-
match mt_data {
|
418
|
-
MemoryTypeData::Struct { size, fields } => {
|
419
|
-
let mut last_offset = 0;
|
420
|
-
for field in fields {
|
421
|
-
if field.offset < last_offset {
|
422
|
-
errors.report((
|
423
|
-
mt,
|
424
|
-
format!(
|
425
|
-
"memory type {} has a field at offset {}, which is out-of-order",
|
426
|
-
mt, field.offset
|
427
|
-
),
|
428
|
-
));
|
429
|
-
}
|
430
|
-
last_offset = match field.offset.checked_add(u64::from(field.ty.bytes())) {
|
431
|
-
Some(o) => o,
|
432
|
-
None => {
|
433
|
-
errors.report((
|
434
|
-
mt,
|
435
|
-
format!(
|
436
|
-
"memory type {} has a field at offset {} of size {}; offset plus size overflows a u64",
|
437
|
-
mt, field.offset, field.ty.bytes()),
|
438
|
-
));
|
439
|
-
break;
|
440
|
-
}
|
441
|
-
};
|
442
|
-
|
443
|
-
if last_offset > *size {
|
444
|
-
errors.report((
|
445
|
-
mt,
|
446
|
-
format!(
|
447
|
-
"memory type {} has a field at offset {} of size {} that overflows the struct size {}",
|
448
|
-
mt, field.offset, field.ty.bytes(), *size),
|
449
|
-
));
|
450
|
-
}
|
451
|
-
}
|
452
|
-
}
|
453
|
-
_ => {}
|
454
|
-
}
|
455
|
-
}
|
456
|
-
|
457
|
-
Ok(())
|
458
|
-
}
|
459
|
-
|
460
|
-
fn verify_tables(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
461
|
-
if let Some(isa) = self.isa {
|
462
|
-
for (table, table_data) in &self.func.tables {
|
463
|
-
let base = table_data.base_gv;
|
464
|
-
if !self.func.global_values.is_valid(base) {
|
465
|
-
return errors.nonfatal((table, format!("invalid base global value {}", base)));
|
466
|
-
}
|
467
|
-
|
468
|
-
let pointer_type = isa.pointer_type();
|
469
|
-
let base_type = self.func.global_values[base].global_type(isa);
|
470
|
-
if base_type != pointer_type {
|
471
|
-
errors.report((
|
472
|
-
table,
|
473
|
-
format!(
|
474
|
-
"table base has type {}, which is not the pointer type {}",
|
475
|
-
base_type, pointer_type
|
476
|
-
),
|
477
|
-
));
|
478
|
-
}
|
479
|
-
|
480
|
-
let bound_gv = table_data.bound_gv;
|
481
|
-
if !self.func.global_values.is_valid(bound_gv) {
|
482
|
-
return errors
|
483
|
-
.nonfatal((table, format!("invalid bound global value {}", bound_gv)));
|
484
|
-
}
|
485
|
-
|
486
|
-
let index_type = table_data.index_type;
|
487
|
-
let bound_type = self.func.global_values[bound_gv].global_type(isa);
|
488
|
-
if index_type != bound_type {
|
489
|
-
errors.report((
|
490
|
-
table,
|
491
|
-
format!(
|
492
|
-
"table index type {} differs from the type of its bound, {}",
|
493
|
-
index_type, bound_type
|
494
|
-
),
|
495
|
-
));
|
496
|
-
}
|
497
|
-
}
|
498
|
-
}
|
499
|
-
|
500
|
-
Ok(())
|
501
|
-
}
|
502
|
-
|
503
|
-
/// Check that the given block can be encoded as a BB, by checking that only
|
504
|
-
/// branching instructions are ending the block.
|
505
|
-
fn encodable_as_bb(&self, block: Block, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
506
|
-
match self.func.is_block_basic(block) {
|
507
|
-
Ok(()) => Ok(()),
|
508
|
-
Err((inst, message)) => errors.fatal((inst, self.context(inst), message)),
|
509
|
-
}
|
510
|
-
}
|
511
|
-
|
512
|
-
fn block_integrity(
|
513
|
-
&self,
|
514
|
-
block: Block,
|
515
|
-
inst: Inst,
|
516
|
-
errors: &mut VerifierErrors,
|
517
|
-
) -> VerifierStepResult<()> {
|
518
|
-
let is_terminator = self.func.dfg.insts[inst].opcode().is_terminator();
|
519
|
-
let is_last_inst = self.func.layout.last_inst(block) == Some(inst);
|
520
|
-
|
521
|
-
if is_terminator && !is_last_inst {
|
522
|
-
// Terminating instructions only occur at the end of blocks.
|
523
|
-
return errors.fatal((
|
524
|
-
inst,
|
525
|
-
self.context(inst),
|
526
|
-
format!(
|
527
|
-
"a terminator instruction was encountered before the end of {}",
|
528
|
-
block
|
529
|
-
),
|
530
|
-
));
|
531
|
-
}
|
532
|
-
if is_last_inst && !is_terminator {
|
533
|
-
return errors.fatal((block, "block does not end in a terminator instruction"));
|
534
|
-
}
|
535
|
-
|
536
|
-
// Instructions belong to the correct block.
|
537
|
-
let inst_block = self.func.layout.inst_block(inst);
|
538
|
-
if inst_block != Some(block) {
|
539
|
-
return errors.fatal((
|
540
|
-
inst,
|
541
|
-
self.context(inst),
|
542
|
-
format!("should belong to {} not {:?}", block, inst_block),
|
543
|
-
));
|
544
|
-
}
|
545
|
-
|
546
|
-
// Parameters belong to the correct block.
|
547
|
-
for &arg in self.func.dfg.block_params(block) {
|
548
|
-
match self.func.dfg.value_def(arg) {
|
549
|
-
ValueDef::Param(arg_block, _) => {
|
550
|
-
if block != arg_block {
|
551
|
-
return errors.fatal((arg, format!("does not belong to {}", block)));
|
552
|
-
}
|
553
|
-
}
|
554
|
-
_ => {
|
555
|
-
return errors.fatal((arg, "expected an argument, found a result"));
|
556
|
-
}
|
557
|
-
}
|
558
|
-
}
|
559
|
-
|
560
|
-
Ok(())
|
561
|
-
}
|
562
|
-
|
563
|
-
fn instruction_integrity(
|
564
|
-
&self,
|
565
|
-
inst: Inst,
|
566
|
-
errors: &mut VerifierErrors,
|
567
|
-
) -> VerifierStepResult<()> {
|
568
|
-
let inst_data = &self.func.dfg.insts[inst];
|
569
|
-
let dfg = &self.func.dfg;
|
570
|
-
|
571
|
-
// The instruction format matches the opcode
|
572
|
-
if inst_data.opcode().format() != InstructionFormat::from(inst_data) {
|
573
|
-
return errors.fatal((
|
574
|
-
inst,
|
575
|
-
self.context(inst),
|
576
|
-
"instruction opcode doesn't match instruction format",
|
577
|
-
));
|
578
|
-
}
|
579
|
-
|
580
|
-
let expected_num_results = dfg.num_expected_results_for_verifier(inst);
|
581
|
-
|
582
|
-
// All result values for multi-valued instructions are created
|
583
|
-
let got_results = dfg.inst_results(inst).len();
|
584
|
-
if got_results != expected_num_results {
|
585
|
-
return errors.fatal((
|
586
|
-
inst,
|
587
|
-
self.context(inst),
|
588
|
-
format!("expected {expected_num_results} result values, found {got_results}"),
|
589
|
-
));
|
590
|
-
}
|
591
|
-
|
592
|
-
self.verify_entity_references(inst, errors)
|
593
|
-
}
|
594
|
-
|
595
|
-
fn verify_entity_references(
|
596
|
-
&self,
|
597
|
-
inst: Inst,
|
598
|
-
errors: &mut VerifierErrors,
|
599
|
-
) -> VerifierStepResult<()> {
|
600
|
-
use crate::ir::instructions::InstructionData::*;
|
601
|
-
|
602
|
-
for arg in self.func.dfg.inst_values(inst) {
|
603
|
-
self.verify_inst_arg(inst, arg, errors)?;
|
604
|
-
|
605
|
-
// All used values must be attached to something.
|
606
|
-
let original = self.func.dfg.resolve_aliases(arg);
|
607
|
-
if !self.func.dfg.value_is_attached(original) {
|
608
|
-
errors.report((
|
609
|
-
inst,
|
610
|
-
self.context(inst),
|
611
|
-
format!("argument {} -> {} is not attached", arg, original),
|
612
|
-
));
|
613
|
-
}
|
614
|
-
}
|
615
|
-
|
616
|
-
for &res in self.func.dfg.inst_results(inst) {
|
617
|
-
self.verify_inst_result(inst, res, errors)?;
|
618
|
-
}
|
619
|
-
|
620
|
-
match self.func.dfg.insts[inst] {
|
621
|
-
MultiAry { ref args, .. } => {
|
622
|
-
self.verify_value_list(inst, args, errors)?;
|
623
|
-
}
|
624
|
-
Jump { destination, .. } => {
|
625
|
-
self.verify_block(inst, destination.block(&self.func.dfg.value_lists), errors)?;
|
626
|
-
}
|
627
|
-
Brif {
|
628
|
-
arg,
|
629
|
-
blocks: [block_then, block_else],
|
630
|
-
..
|
631
|
-
} => {
|
632
|
-
self.verify_value(inst, arg, errors)?;
|
633
|
-
self.verify_block(inst, block_then.block(&self.func.dfg.value_lists), errors)?;
|
634
|
-
self.verify_block(inst, block_else.block(&self.func.dfg.value_lists), errors)?;
|
635
|
-
}
|
636
|
-
BranchTable { table, .. } => {
|
637
|
-
self.verify_jump_table(inst, table, errors)?;
|
638
|
-
}
|
639
|
-
Call {
|
640
|
-
func_ref, ref args, ..
|
641
|
-
} => {
|
642
|
-
self.verify_func_ref(inst, func_ref, errors)?;
|
643
|
-
self.verify_value_list(inst, args, errors)?;
|
644
|
-
}
|
645
|
-
CallIndirect {
|
646
|
-
sig_ref, ref args, ..
|
647
|
-
} => {
|
648
|
-
self.verify_sig_ref(inst, sig_ref, errors)?;
|
649
|
-
self.verify_value_list(inst, args, errors)?;
|
650
|
-
}
|
651
|
-
FuncAddr { func_ref, .. } => {
|
652
|
-
self.verify_func_ref(inst, func_ref, errors)?;
|
653
|
-
}
|
654
|
-
StackLoad { stack_slot, .. } | StackStore { stack_slot, .. } => {
|
655
|
-
self.verify_stack_slot(inst, stack_slot, errors)?;
|
656
|
-
}
|
657
|
-
DynamicStackLoad {
|
658
|
-
dynamic_stack_slot, ..
|
659
|
-
}
|
660
|
-
| DynamicStackStore {
|
661
|
-
dynamic_stack_slot, ..
|
662
|
-
} => {
|
663
|
-
self.verify_dynamic_stack_slot(inst, dynamic_stack_slot, errors)?;
|
664
|
-
}
|
665
|
-
UnaryGlobalValue { global_value, .. } => {
|
666
|
-
self.verify_global_value(inst, global_value, errors)?;
|
667
|
-
}
|
668
|
-
TableAddr { table, .. } => {
|
669
|
-
self.verify_table(inst, table, errors)?;
|
670
|
-
}
|
671
|
-
NullAry {
|
672
|
-
opcode: Opcode::GetPinnedReg,
|
673
|
-
}
|
674
|
-
| Unary {
|
675
|
-
opcode: Opcode::SetPinnedReg,
|
676
|
-
..
|
677
|
-
} => {
|
678
|
-
if let Some(isa) = &self.isa {
|
679
|
-
if !isa.flags().enable_pinned_reg() {
|
680
|
-
return errors.fatal((
|
681
|
-
inst,
|
682
|
-
self.context(inst),
|
683
|
-
"GetPinnedReg/SetPinnedReg cannot be used without enable_pinned_reg",
|
684
|
-
));
|
685
|
-
}
|
686
|
-
} else {
|
687
|
-
return errors.fatal((
|
688
|
-
inst,
|
689
|
-
self.context(inst),
|
690
|
-
"GetPinnedReg/SetPinnedReg need an ISA!",
|
691
|
-
));
|
692
|
-
}
|
693
|
-
}
|
694
|
-
NullAry {
|
695
|
-
opcode: Opcode::GetFramePointer | Opcode::GetReturnAddress,
|
696
|
-
} => {
|
697
|
-
if let Some(isa) = &self.isa {
|
698
|
-
// Backends may already rely on this check implicitly, so do
|
699
|
-
// not relax it without verifying that it is safe to do so.
|
700
|
-
if !isa.flags().preserve_frame_pointers() {
|
701
|
-
return errors.fatal((
|
702
|
-
inst,
|
703
|
-
self.context(inst),
|
704
|
-
"`get_frame_pointer`/`get_return_address` cannot be used without \
|
705
|
-
enabling `preserve_frame_pointers`",
|
706
|
-
));
|
707
|
-
}
|
708
|
-
} else {
|
709
|
-
return errors.fatal((
|
710
|
-
inst,
|
711
|
-
self.context(inst),
|
712
|
-
"`get_frame_pointer`/`get_return_address` require an ISA!",
|
713
|
-
));
|
714
|
-
}
|
715
|
-
}
|
716
|
-
LoadNoOffset {
|
717
|
-
opcode: Opcode::Bitcast,
|
718
|
-
flags,
|
719
|
-
arg,
|
720
|
-
} => {
|
721
|
-
self.verify_bitcast(inst, flags, arg, errors)?;
|
722
|
-
}
|
723
|
-
UnaryConst {
|
724
|
-
opcode: Opcode::Vconst,
|
725
|
-
constant_handle,
|
726
|
-
..
|
727
|
-
} => {
|
728
|
-
self.verify_constant_size(inst, constant_handle, errors)?;
|
729
|
-
}
|
730
|
-
|
731
|
-
// Exhaustive list so we can't forget to add new formats
|
732
|
-
AtomicCas { .. }
|
733
|
-
| AtomicRmw { .. }
|
734
|
-
| LoadNoOffset { .. }
|
735
|
-
| StoreNoOffset { .. }
|
736
|
-
| Unary { .. }
|
737
|
-
| UnaryConst { .. }
|
738
|
-
| UnaryImm { .. }
|
739
|
-
| UnaryIeee32 { .. }
|
740
|
-
| UnaryIeee64 { .. }
|
741
|
-
| Binary { .. }
|
742
|
-
| BinaryImm8 { .. }
|
743
|
-
| BinaryImm64 { .. }
|
744
|
-
| Ternary { .. }
|
745
|
-
| TernaryImm8 { .. }
|
746
|
-
| Shuffle { .. }
|
747
|
-
| IntAddTrap { .. }
|
748
|
-
| IntCompare { .. }
|
749
|
-
| IntCompareImm { .. }
|
750
|
-
| FloatCompare { .. }
|
751
|
-
| Load { .. }
|
752
|
-
| Store { .. }
|
753
|
-
| Trap { .. }
|
754
|
-
| CondTrap { .. }
|
755
|
-
| NullAry { .. } => {}
|
756
|
-
}
|
757
|
-
|
758
|
-
Ok(())
|
759
|
-
}
|
760
|
-
|
761
|
-
fn verify_block(
|
762
|
-
&self,
|
763
|
-
loc: impl Into<AnyEntity>,
|
764
|
-
e: Block,
|
765
|
-
errors: &mut VerifierErrors,
|
766
|
-
) -> VerifierStepResult<()> {
|
767
|
-
if !self.func.dfg.block_is_valid(e) || !self.func.layout.is_block_inserted(e) {
|
768
|
-
return errors.fatal((loc, format!("invalid block reference {}", e)));
|
769
|
-
}
|
770
|
-
if let Some(entry_block) = self.func.layout.entry_block() {
|
771
|
-
if e == entry_block {
|
772
|
-
return errors.fatal((loc, format!("invalid reference to entry block {}", e)));
|
773
|
-
}
|
774
|
-
}
|
775
|
-
Ok(())
|
776
|
-
}
|
777
|
-
|
778
|
-
fn verify_sig_ref(
|
779
|
-
&self,
|
780
|
-
inst: Inst,
|
781
|
-
s: SigRef,
|
782
|
-
errors: &mut VerifierErrors,
|
783
|
-
) -> VerifierStepResult<()> {
|
784
|
-
if !self.func.dfg.signatures.is_valid(s) {
|
785
|
-
errors.fatal((
|
786
|
-
inst,
|
787
|
-
self.context(inst),
|
788
|
-
format!("invalid signature reference {}", s),
|
789
|
-
))
|
790
|
-
} else {
|
791
|
-
Ok(())
|
792
|
-
}
|
793
|
-
}
|
794
|
-
|
795
|
-
fn verify_func_ref(
|
796
|
-
&self,
|
797
|
-
inst: Inst,
|
798
|
-
f: FuncRef,
|
799
|
-
errors: &mut VerifierErrors,
|
800
|
-
) -> VerifierStepResult<()> {
|
801
|
-
if !self.func.dfg.ext_funcs.is_valid(f) {
|
802
|
-
errors.nonfatal((
|
803
|
-
inst,
|
804
|
-
self.context(inst),
|
805
|
-
format!("invalid function reference {}", f),
|
806
|
-
))
|
807
|
-
} else {
|
808
|
-
Ok(())
|
809
|
-
}
|
810
|
-
}
|
811
|
-
|
812
|
-
fn verify_stack_slot(
|
813
|
-
&self,
|
814
|
-
inst: Inst,
|
815
|
-
ss: StackSlot,
|
816
|
-
errors: &mut VerifierErrors,
|
817
|
-
) -> VerifierStepResult<()> {
|
818
|
-
if !self.func.sized_stack_slots.is_valid(ss) {
|
819
|
-
errors.nonfatal((
|
820
|
-
inst,
|
821
|
-
self.context(inst),
|
822
|
-
format!("invalid stack slot {}", ss),
|
823
|
-
))
|
824
|
-
} else {
|
825
|
-
Ok(())
|
826
|
-
}
|
827
|
-
}
|
828
|
-
|
829
|
-
fn verify_dynamic_stack_slot(
|
830
|
-
&self,
|
831
|
-
inst: Inst,
|
832
|
-
ss: DynamicStackSlot,
|
833
|
-
errors: &mut VerifierErrors,
|
834
|
-
) -> VerifierStepResult<()> {
|
835
|
-
if !self.func.dynamic_stack_slots.is_valid(ss) {
|
836
|
-
errors.nonfatal((
|
837
|
-
inst,
|
838
|
-
self.context(inst),
|
839
|
-
format!("invalid dynamic stack slot {}", ss),
|
840
|
-
))
|
841
|
-
} else {
|
842
|
-
Ok(())
|
843
|
-
}
|
844
|
-
}
|
845
|
-
|
846
|
-
fn verify_global_value(
|
847
|
-
&self,
|
848
|
-
inst: Inst,
|
849
|
-
gv: GlobalValue,
|
850
|
-
errors: &mut VerifierErrors,
|
851
|
-
) -> VerifierStepResult<()> {
|
852
|
-
if !self.func.global_values.is_valid(gv) {
|
853
|
-
errors.nonfatal((
|
854
|
-
inst,
|
855
|
-
self.context(inst),
|
856
|
-
format!("invalid global value {}", gv),
|
857
|
-
))
|
858
|
-
} else {
|
859
|
-
Ok(())
|
860
|
-
}
|
861
|
-
}
|
862
|
-
|
863
|
-
fn verify_table(
|
864
|
-
&self,
|
865
|
-
inst: Inst,
|
866
|
-
table: ir::Table,
|
867
|
-
errors: &mut VerifierErrors,
|
868
|
-
) -> VerifierStepResult<()> {
|
869
|
-
if !self.func.tables.is_valid(table) {
|
870
|
-
errors.nonfatal((inst, self.context(inst), format!("invalid table {}", table)))
|
871
|
-
} else {
|
872
|
-
Ok(())
|
873
|
-
}
|
874
|
-
}
|
875
|
-
|
876
|
-
fn verify_value_list(
|
877
|
-
&self,
|
878
|
-
inst: Inst,
|
879
|
-
l: &ValueList,
|
880
|
-
errors: &mut VerifierErrors,
|
881
|
-
) -> VerifierStepResult<()> {
|
882
|
-
if !l.is_valid(&self.func.dfg.value_lists) {
|
883
|
-
errors.nonfatal((
|
884
|
-
inst,
|
885
|
-
self.context(inst),
|
886
|
-
format!("invalid value list reference {:?}", l),
|
887
|
-
))
|
888
|
-
} else {
|
889
|
-
Ok(())
|
890
|
-
}
|
891
|
-
}
|
892
|
-
|
893
|
-
fn verify_jump_table(
|
894
|
-
&self,
|
895
|
-
inst: Inst,
|
896
|
-
j: JumpTable,
|
897
|
-
errors: &mut VerifierErrors,
|
898
|
-
) -> VerifierStepResult<()> {
|
899
|
-
if !self.func.stencil.dfg.jump_tables.is_valid(j) {
|
900
|
-
errors.nonfatal((
|
901
|
-
inst,
|
902
|
-
self.context(inst),
|
903
|
-
format!("invalid jump table reference {}", j),
|
904
|
-
))
|
905
|
-
} else {
|
906
|
-
let pool = &self.func.stencil.dfg.value_lists;
|
907
|
-
for block in self.func.stencil.dfg.jump_tables[j].all_branches() {
|
908
|
-
self.verify_block(inst, block.block(pool), errors)?;
|
909
|
-
}
|
910
|
-
Ok(())
|
911
|
-
}
|
912
|
-
}
|
913
|
-
|
914
|
-
fn verify_value(
|
915
|
-
&self,
|
916
|
-
loc_inst: Inst,
|
917
|
-
v: Value,
|
918
|
-
errors: &mut VerifierErrors,
|
919
|
-
) -> VerifierStepResult<()> {
|
920
|
-
let dfg = &self.func.dfg;
|
921
|
-
if !dfg.value_is_valid(v) {
|
922
|
-
errors.nonfatal((
|
923
|
-
loc_inst,
|
924
|
-
self.context(loc_inst),
|
925
|
-
format!("invalid value reference {}", v),
|
926
|
-
))
|
927
|
-
} else {
|
928
|
-
Ok(())
|
929
|
-
}
|
930
|
-
}
|
931
|
-
|
932
|
-
fn verify_inst_arg(
|
933
|
-
&self,
|
934
|
-
loc_inst: Inst,
|
935
|
-
v: Value,
|
936
|
-
errors: &mut VerifierErrors,
|
937
|
-
) -> VerifierStepResult<()> {
|
938
|
-
self.verify_value(loc_inst, v, errors)?;
|
939
|
-
|
940
|
-
let dfg = &self.func.dfg;
|
941
|
-
let loc_block = self
|
942
|
-
.func
|
943
|
-
.layout
|
944
|
-
.inst_block(loc_inst)
|
945
|
-
.expect("Instruction not in layout.");
|
946
|
-
let is_reachable = self.expected_domtree.is_reachable(loc_block);
|
947
|
-
|
948
|
-
// SSA form
|
949
|
-
match dfg.value_def(v) {
|
950
|
-
ValueDef::Result(def_inst, _) => {
|
951
|
-
// Value is defined by an instruction that exists.
|
952
|
-
if !dfg.inst_is_valid(def_inst) {
|
953
|
-
return errors.fatal((
|
954
|
-
loc_inst,
|
955
|
-
self.context(loc_inst),
|
956
|
-
format!("{} is defined by invalid instruction {}", v, def_inst),
|
957
|
-
));
|
958
|
-
}
|
959
|
-
// Defining instruction is inserted in a block.
|
960
|
-
if self.func.layout.inst_block(def_inst) == None {
|
961
|
-
return errors.fatal((
|
962
|
-
loc_inst,
|
963
|
-
self.context(loc_inst),
|
964
|
-
format!("{} is defined by {} which has no block", v, def_inst),
|
965
|
-
));
|
966
|
-
}
|
967
|
-
// Defining instruction dominates the instruction that uses the value.
|
968
|
-
if is_reachable {
|
969
|
-
if !self
|
970
|
-
.expected_domtree
|
971
|
-
.dominates(def_inst, loc_inst, &self.func.layout)
|
972
|
-
{
|
973
|
-
return errors.fatal((
|
974
|
-
loc_inst,
|
975
|
-
self.context(loc_inst),
|
976
|
-
format!("uses value {} from non-dominating {}", v, def_inst),
|
977
|
-
));
|
978
|
-
}
|
979
|
-
if def_inst == loc_inst {
|
980
|
-
return errors.fatal((
|
981
|
-
loc_inst,
|
982
|
-
self.context(loc_inst),
|
983
|
-
format!("uses value {} from itself", v),
|
984
|
-
));
|
985
|
-
}
|
986
|
-
}
|
987
|
-
}
|
988
|
-
ValueDef::Param(block, _) => {
|
989
|
-
// Value is defined by an existing block.
|
990
|
-
if !dfg.block_is_valid(block) {
|
991
|
-
return errors.fatal((
|
992
|
-
loc_inst,
|
993
|
-
self.context(loc_inst),
|
994
|
-
format!("{} is defined by invalid block {}", v, block),
|
995
|
-
));
|
996
|
-
}
|
997
|
-
// Defining block is inserted in the layout
|
998
|
-
if !self.func.layout.is_block_inserted(block) {
|
999
|
-
return errors.fatal((
|
1000
|
-
loc_inst,
|
1001
|
-
self.context(loc_inst),
|
1002
|
-
format!("{} is defined by {} which is not in the layout", v, block),
|
1003
|
-
));
|
1004
|
-
}
|
1005
|
-
// The defining block dominates the instruction using this value.
|
1006
|
-
if is_reachable
|
1007
|
-
&& !self
|
1008
|
-
.expected_domtree
|
1009
|
-
.dominates(block, loc_inst, &self.func.layout)
|
1010
|
-
{
|
1011
|
-
return errors.fatal((
|
1012
|
-
loc_inst,
|
1013
|
-
self.context(loc_inst),
|
1014
|
-
format!("uses value arg from non-dominating {}", block),
|
1015
|
-
));
|
1016
|
-
}
|
1017
|
-
}
|
1018
|
-
ValueDef::Union(_, _) => {
|
1019
|
-
// Nothing: union nodes themselves have no location,
|
1020
|
-
// so we cannot check any dominance properties.
|
1021
|
-
}
|
1022
|
-
}
|
1023
|
-
Ok(())
|
1024
|
-
}
|
1025
|
-
|
1026
|
-
fn verify_inst_result(
|
1027
|
-
&self,
|
1028
|
-
loc_inst: Inst,
|
1029
|
-
v: Value,
|
1030
|
-
errors: &mut VerifierErrors,
|
1031
|
-
) -> VerifierStepResult<()> {
|
1032
|
-
self.verify_value(loc_inst, v, errors)?;
|
1033
|
-
|
1034
|
-
match self.func.dfg.value_def(v) {
|
1035
|
-
ValueDef::Result(def_inst, _) => {
|
1036
|
-
if def_inst != loc_inst {
|
1037
|
-
errors.fatal((
|
1038
|
-
loc_inst,
|
1039
|
-
self.context(loc_inst),
|
1040
|
-
format!("instruction result {} is not defined by the instruction", v),
|
1041
|
-
))
|
1042
|
-
} else {
|
1043
|
-
Ok(())
|
1044
|
-
}
|
1045
|
-
}
|
1046
|
-
ValueDef::Param(_, _) => errors.fatal((
|
1047
|
-
loc_inst,
|
1048
|
-
self.context(loc_inst),
|
1049
|
-
format!("instruction result {} is not defined by the instruction", v),
|
1050
|
-
)),
|
1051
|
-
ValueDef::Union(_, _) => errors.fatal((
|
1052
|
-
loc_inst,
|
1053
|
-
self.context(loc_inst),
|
1054
|
-
format!("instruction result {} is a union node", v),
|
1055
|
-
)),
|
1056
|
-
}
|
1057
|
-
}
|
1058
|
-
|
1059
|
-
fn verify_bitcast(
|
1060
|
-
&self,
|
1061
|
-
inst: Inst,
|
1062
|
-
flags: MemFlags,
|
1063
|
-
arg: Value,
|
1064
|
-
errors: &mut VerifierErrors,
|
1065
|
-
) -> VerifierStepResult<()> {
|
1066
|
-
let typ = self.func.dfg.ctrl_typevar(inst);
|
1067
|
-
let value_type = self.func.dfg.value_type(arg);
|
1068
|
-
|
1069
|
-
if typ.bits() != value_type.bits() {
|
1070
|
-
errors.fatal((
|
1071
|
-
inst,
|
1072
|
-
format!(
|
1073
|
-
"The bitcast argument {} has a type of {} bits, which doesn't match an expected type of {} bits",
|
1074
|
-
arg,
|
1075
|
-
value_type.bits(),
|
1076
|
-
typ.bits()
|
1077
|
-
),
|
1078
|
-
))
|
1079
|
-
} else if flags != MemFlags::new()
|
1080
|
-
&& flags != MemFlags::new().with_endianness(ir::Endianness::Little)
|
1081
|
-
&& flags != MemFlags::new().with_endianness(ir::Endianness::Big)
|
1082
|
-
{
|
1083
|
-
errors.fatal((
|
1084
|
-
inst,
|
1085
|
-
"The bitcast instruction only accepts the `big` or `little` memory flags",
|
1086
|
-
))
|
1087
|
-
} else if flags == MemFlags::new() && typ.lane_count() != value_type.lane_count() {
|
1088
|
-
errors.fatal((
|
1089
|
-
inst,
|
1090
|
-
"Byte order specifier required for bitcast instruction changing lane count",
|
1091
|
-
))
|
1092
|
-
} else {
|
1093
|
-
Ok(())
|
1094
|
-
}
|
1095
|
-
}
|
1096
|
-
|
1097
|
-
fn verify_constant_size(
|
1098
|
-
&self,
|
1099
|
-
inst: Inst,
|
1100
|
-
constant: Constant,
|
1101
|
-
errors: &mut VerifierErrors,
|
1102
|
-
) -> VerifierStepResult<()> {
|
1103
|
-
let type_size = self.func.dfg.ctrl_typevar(inst).bytes() as usize;
|
1104
|
-
let constant_size = self.func.dfg.constants.get(constant).len();
|
1105
|
-
if type_size != constant_size {
|
1106
|
-
errors.fatal((
|
1107
|
-
inst,
|
1108
|
-
format!(
|
1109
|
-
"The instruction expects {} to have a size of {} bytes but it has {}",
|
1110
|
-
constant, type_size, constant_size
|
1111
|
-
),
|
1112
|
-
))
|
1113
|
-
} else {
|
1114
|
-
Ok(())
|
1115
|
-
}
|
1116
|
-
}
|
1117
|
-
|
1118
|
-
fn domtree_integrity(
|
1119
|
-
&self,
|
1120
|
-
domtree: &DominatorTree,
|
1121
|
-
errors: &mut VerifierErrors,
|
1122
|
-
) -> VerifierStepResult<()> {
|
1123
|
-
// We consider two `DominatorTree`s to be equal if they return the same immediate
|
1124
|
-
// dominator for each block. Therefore the current domtree is valid if it matches the freshly
|
1125
|
-
// computed one.
|
1126
|
-
for block in self.func.layout.blocks() {
|
1127
|
-
let expected = self.expected_domtree.idom(block);
|
1128
|
-
let got = domtree.idom(block);
|
1129
|
-
if got != expected {
|
1130
|
-
return errors.fatal((
|
1131
|
-
block,
|
1132
|
-
format!(
|
1133
|
-
"invalid domtree, expected idom({}) = {:?}, got {:?}",
|
1134
|
-
block, expected, got
|
1135
|
-
),
|
1136
|
-
));
|
1137
|
-
}
|
1138
|
-
}
|
1139
|
-
// We also verify if the postorder defined by `DominatorTree` is sane
|
1140
|
-
if domtree.cfg_postorder().len() != self.expected_domtree.cfg_postorder().len() {
|
1141
|
-
return errors.fatal((
|
1142
|
-
AnyEntity::Function,
|
1143
|
-
"incorrect number of Blocks in postorder traversal",
|
1144
|
-
));
|
1145
|
-
}
|
1146
|
-
for (index, (&test_block, &true_block)) in domtree
|
1147
|
-
.cfg_postorder()
|
1148
|
-
.iter()
|
1149
|
-
.zip(self.expected_domtree.cfg_postorder().iter())
|
1150
|
-
.enumerate()
|
1151
|
-
{
|
1152
|
-
if test_block != true_block {
|
1153
|
-
return errors.fatal((
|
1154
|
-
test_block,
|
1155
|
-
format!(
|
1156
|
-
"invalid domtree, postorder block number {} should be {}, got {}",
|
1157
|
-
index, true_block, test_block
|
1158
|
-
),
|
1159
|
-
));
|
1160
|
-
}
|
1161
|
-
}
|
1162
|
-
// We verify rpo_cmp_block on pairs of adjacent blocks in the postorder
|
1163
|
-
for (&prev_block, &next_block) in domtree.cfg_postorder().iter().adjacent_pairs() {
|
1164
|
-
if self.expected_domtree.rpo_cmp_block(prev_block, next_block) != Ordering::Greater {
|
1165
|
-
return errors.fatal((
|
1166
|
-
next_block,
|
1167
|
-
format!(
|
1168
|
-
"invalid domtree, rpo_cmp_block does not says {} is greater than {}",
|
1169
|
-
prev_block, next_block
|
1170
|
-
),
|
1171
|
-
));
|
1172
|
-
}
|
1173
|
-
}
|
1174
|
-
Ok(())
|
1175
|
-
}
|
1176
|
-
|
1177
|
-
fn typecheck_entry_block_params(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1178
|
-
if let Some(block) = self.func.layout.entry_block() {
|
1179
|
-
let expected_types = &self.func.signature.params;
|
1180
|
-
let block_param_count = self.func.dfg.num_block_params(block);
|
1181
|
-
|
1182
|
-
if block_param_count != expected_types.len() {
|
1183
|
-
return errors.fatal((
|
1184
|
-
block,
|
1185
|
-
format!(
|
1186
|
-
"entry block parameters ({}) must match function signature ({})",
|
1187
|
-
block_param_count,
|
1188
|
-
expected_types.len()
|
1189
|
-
),
|
1190
|
-
));
|
1191
|
-
}
|
1192
|
-
|
1193
|
-
for (i, &arg) in self.func.dfg.block_params(block).iter().enumerate() {
|
1194
|
-
let arg_type = self.func.dfg.value_type(arg);
|
1195
|
-
if arg_type != expected_types[i].value_type {
|
1196
|
-
errors.report((
|
1197
|
-
block,
|
1198
|
-
format!(
|
1199
|
-
"entry block parameter {} expected to have type {}, got {}",
|
1200
|
-
i, expected_types[i], arg_type
|
1201
|
-
),
|
1202
|
-
));
|
1203
|
-
}
|
1204
|
-
}
|
1205
|
-
}
|
1206
|
-
|
1207
|
-
errors.as_result()
|
1208
|
-
}
|
1209
|
-
|
1210
|
-
fn check_entry_not_cold(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1211
|
-
if let Some(entry_block) = self.func.layout.entry_block() {
|
1212
|
-
if self.func.layout.is_cold(entry_block) {
|
1213
|
-
return errors
|
1214
|
-
.fatal((entry_block, format!("entry block cannot be marked as cold")));
|
1215
|
-
}
|
1216
|
-
}
|
1217
|
-
errors.as_result()
|
1218
|
-
}
|
1219
|
-
|
1220
|
-
fn typecheck(&self, inst: Inst, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1221
|
-
let inst_data = &self.func.dfg.insts[inst];
|
1222
|
-
let constraints = inst_data.opcode().constraints();
|
1223
|
-
|
1224
|
-
let ctrl_type = if let Some(value_typeset) = constraints.ctrl_typeset() {
|
1225
|
-
// For polymorphic opcodes, determine the controlling type variable first.
|
1226
|
-
let ctrl_type = self.func.dfg.ctrl_typevar(inst);
|
1227
|
-
|
1228
|
-
if !value_typeset.contains(ctrl_type) {
|
1229
|
-
errors.report((
|
1230
|
-
inst,
|
1231
|
-
self.context(inst),
|
1232
|
-
format!(
|
1233
|
-
"has an invalid controlling type {} (allowed set is {:?})",
|
1234
|
-
ctrl_type, value_typeset
|
1235
|
-
),
|
1236
|
-
));
|
1237
|
-
}
|
1238
|
-
|
1239
|
-
ctrl_type
|
1240
|
-
} else {
|
1241
|
-
// Non-polymorphic instructions don't check the controlling type variable, so `Option`
|
1242
|
-
// is unnecessary and we can just make it `INVALID`.
|
1243
|
-
types::INVALID
|
1244
|
-
};
|
1245
|
-
|
1246
|
-
// Typechecking instructions is never fatal
|
1247
|
-
let _ = self.typecheck_results(inst, ctrl_type, errors);
|
1248
|
-
let _ = self.typecheck_fixed_args(inst, ctrl_type, errors);
|
1249
|
-
let _ = self.typecheck_variable_args(inst, errors);
|
1250
|
-
let _ = self.typecheck_return(inst, errors);
|
1251
|
-
let _ = self.typecheck_special(inst, errors);
|
1252
|
-
|
1253
|
-
Ok(())
|
1254
|
-
}
|
1255
|
-
|
1256
|
-
fn typecheck_results(
|
1257
|
-
&self,
|
1258
|
-
inst: Inst,
|
1259
|
-
ctrl_type: Type,
|
1260
|
-
errors: &mut VerifierErrors,
|
1261
|
-
) -> VerifierStepResult<()> {
|
1262
|
-
let mut i = 0;
|
1263
|
-
for &result in self.func.dfg.inst_results(inst) {
|
1264
|
-
let result_type = self.func.dfg.value_type(result);
|
1265
|
-
let expected_type = self.func.dfg.compute_result_type(inst, i, ctrl_type);
|
1266
|
-
if let Some(expected_type) = expected_type {
|
1267
|
-
if result_type != expected_type {
|
1268
|
-
errors.report((
|
1269
|
-
inst,
|
1270
|
-
self.context(inst),
|
1271
|
-
format!(
|
1272
|
-
"expected result {} ({}) to have type {}, found {}",
|
1273
|
-
i, result, expected_type, result_type
|
1274
|
-
),
|
1275
|
-
));
|
1276
|
-
}
|
1277
|
-
} else {
|
1278
|
-
return errors.nonfatal((
|
1279
|
-
inst,
|
1280
|
-
self.context(inst),
|
1281
|
-
"has more result values than expected",
|
1282
|
-
));
|
1283
|
-
}
|
1284
|
-
i += 1;
|
1285
|
-
}
|
1286
|
-
|
1287
|
-
// There aren't any more result types left.
|
1288
|
-
if self.func.dfg.compute_result_type(inst, i, ctrl_type) != None {
|
1289
|
-
return errors.nonfatal((
|
1290
|
-
inst,
|
1291
|
-
self.context(inst),
|
1292
|
-
"has fewer result values than expected",
|
1293
|
-
));
|
1294
|
-
}
|
1295
|
-
Ok(())
|
1296
|
-
}
|
1297
|
-
|
1298
|
-
fn typecheck_fixed_args(
|
1299
|
-
&self,
|
1300
|
-
inst: Inst,
|
1301
|
-
ctrl_type: Type,
|
1302
|
-
errors: &mut VerifierErrors,
|
1303
|
-
) -> VerifierStepResult<()> {
|
1304
|
-
let constraints = self.func.dfg.insts[inst].opcode().constraints();
|
1305
|
-
|
1306
|
-
for (i, &arg) in self.func.dfg.inst_fixed_args(inst).iter().enumerate() {
|
1307
|
-
let arg_type = self.func.dfg.value_type(arg);
|
1308
|
-
match constraints.value_argument_constraint(i, ctrl_type) {
|
1309
|
-
ResolvedConstraint::Bound(expected_type) => {
|
1310
|
-
if arg_type != expected_type {
|
1311
|
-
errors.report((
|
1312
|
-
inst,
|
1313
|
-
self.context(inst),
|
1314
|
-
format!(
|
1315
|
-
"arg {} ({}) has type {}, expected {}",
|
1316
|
-
i, arg, arg_type, expected_type
|
1317
|
-
),
|
1318
|
-
));
|
1319
|
-
}
|
1320
|
-
}
|
1321
|
-
ResolvedConstraint::Free(type_set) => {
|
1322
|
-
if !type_set.contains(arg_type) {
|
1323
|
-
errors.report((
|
1324
|
-
inst,
|
1325
|
-
self.context(inst),
|
1326
|
-
format!(
|
1327
|
-
"arg {} ({}) with type {} failed to satisfy type set {:?}",
|
1328
|
-
i, arg, arg_type, type_set
|
1329
|
-
),
|
1330
|
-
));
|
1331
|
-
}
|
1332
|
-
}
|
1333
|
-
}
|
1334
|
-
}
|
1335
|
-
Ok(())
|
1336
|
-
}
|
1337
|
-
|
1338
|
-
/// Typecheck both instructions that contain variable arguments like calls, and those that
|
1339
|
-
/// include references to basic blocks with their arguments.
|
1340
|
-
fn typecheck_variable_args(
|
1341
|
-
&self,
|
1342
|
-
inst: Inst,
|
1343
|
-
errors: &mut VerifierErrors,
|
1344
|
-
) -> VerifierStepResult<()> {
|
1345
|
-
match &self.func.dfg.insts[inst] {
|
1346
|
-
ir::InstructionData::Jump { destination, .. } => {
|
1347
|
-
self.typecheck_block_call(inst, destination, errors)?;
|
1348
|
-
}
|
1349
|
-
ir::InstructionData::Brif {
|
1350
|
-
blocks: [block_then, block_else],
|
1351
|
-
..
|
1352
|
-
} => {
|
1353
|
-
self.typecheck_block_call(inst, block_then, errors)?;
|
1354
|
-
self.typecheck_block_call(inst, block_else, errors)?;
|
1355
|
-
}
|
1356
|
-
ir::InstructionData::BranchTable { table, .. } => {
|
1357
|
-
for block in self.func.stencil.dfg.jump_tables[*table].all_branches() {
|
1358
|
-
self.typecheck_block_call(inst, block, errors)?;
|
1359
|
-
}
|
1360
|
-
}
|
1361
|
-
inst => debug_assert!(!inst.opcode().is_branch()),
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
match self.func.dfg.insts[inst].analyze_call(&self.func.dfg.value_lists) {
|
1365
|
-
CallInfo::Direct(func_ref, args) => {
|
1366
|
-
let sig_ref = self.func.dfg.ext_funcs[func_ref].signature;
|
1367
|
-
let arg_types = self.func.dfg.signatures[sig_ref]
|
1368
|
-
.params
|
1369
|
-
.iter()
|
1370
|
-
.map(|a| a.value_type);
|
1371
|
-
self.typecheck_variable_args_iterator(inst, arg_types, args, errors)?;
|
1372
|
-
}
|
1373
|
-
CallInfo::Indirect(sig_ref, args) => {
|
1374
|
-
let arg_types = self.func.dfg.signatures[sig_ref]
|
1375
|
-
.params
|
1376
|
-
.iter()
|
1377
|
-
.map(|a| a.value_type);
|
1378
|
-
self.typecheck_variable_args_iterator(inst, arg_types, args, errors)?;
|
1379
|
-
}
|
1380
|
-
CallInfo::NotACall => {}
|
1381
|
-
}
|
1382
|
-
Ok(())
|
1383
|
-
}
|
1384
|
-
|
1385
|
-
fn typecheck_block_call(
|
1386
|
-
&self,
|
1387
|
-
inst: Inst,
|
1388
|
-
block: &ir::BlockCall,
|
1389
|
-
errors: &mut VerifierErrors,
|
1390
|
-
) -> VerifierStepResult<()> {
|
1391
|
-
let pool = &self.func.dfg.value_lists;
|
1392
|
-
let iter = self
|
1393
|
-
.func
|
1394
|
-
.dfg
|
1395
|
-
.block_params(block.block(pool))
|
1396
|
-
.iter()
|
1397
|
-
.map(|&v| self.func.dfg.value_type(v));
|
1398
|
-
let args = block.args_slice(pool);
|
1399
|
-
self.typecheck_variable_args_iterator(inst, iter, args, errors)
|
1400
|
-
}
|
1401
|
-
|
1402
|
-
fn typecheck_variable_args_iterator<I: Iterator<Item = Type>>(
|
1403
|
-
&self,
|
1404
|
-
inst: Inst,
|
1405
|
-
iter: I,
|
1406
|
-
variable_args: &[Value],
|
1407
|
-
errors: &mut VerifierErrors,
|
1408
|
-
) -> VerifierStepResult<()> {
|
1409
|
-
let mut i = 0;
|
1410
|
-
|
1411
|
-
for expected_type in iter {
|
1412
|
-
if i >= variable_args.len() {
|
1413
|
-
// Result count mismatch handled below, we want the full argument count first though
|
1414
|
-
i += 1;
|
1415
|
-
continue;
|
1416
|
-
}
|
1417
|
-
let arg = variable_args[i];
|
1418
|
-
let arg_type = self.func.dfg.value_type(arg);
|
1419
|
-
if expected_type != arg_type {
|
1420
|
-
errors.report((
|
1421
|
-
inst,
|
1422
|
-
self.context(inst),
|
1423
|
-
format!(
|
1424
|
-
"arg {} ({}) has type {}, expected {}",
|
1425
|
-
i, variable_args[i], arg_type, expected_type
|
1426
|
-
),
|
1427
|
-
));
|
1428
|
-
}
|
1429
|
-
i += 1;
|
1430
|
-
}
|
1431
|
-
if i != variable_args.len() {
|
1432
|
-
return errors.nonfatal((
|
1433
|
-
inst,
|
1434
|
-
self.context(inst),
|
1435
|
-
format!(
|
1436
|
-
"mismatched argument count for `{}`: got {}, expected {}",
|
1437
|
-
self.func.dfg.display_inst(inst),
|
1438
|
-
variable_args.len(),
|
1439
|
-
i,
|
1440
|
-
),
|
1441
|
-
));
|
1442
|
-
}
|
1443
|
-
Ok(())
|
1444
|
-
}
|
1445
|
-
|
1446
|
-
fn typecheck_return(&self, inst: Inst, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1447
|
-
match self.func.dfg.insts[inst] {
|
1448
|
-
ir::InstructionData::MultiAry {
|
1449
|
-
opcode: Opcode::Return,
|
1450
|
-
args,
|
1451
|
-
} => {
|
1452
|
-
let types = args
|
1453
|
-
.as_slice(&self.func.dfg.value_lists)
|
1454
|
-
.iter()
|
1455
|
-
.map(|v| self.func.dfg.value_type(*v));
|
1456
|
-
self.typecheck_return_types(
|
1457
|
-
inst,
|
1458
|
-
types,
|
1459
|
-
errors,
|
1460
|
-
"arguments of return must match function signature",
|
1461
|
-
)?;
|
1462
|
-
}
|
1463
|
-
ir::InstructionData::Call {
|
1464
|
-
opcode: Opcode::ReturnCall,
|
1465
|
-
func_ref,
|
1466
|
-
..
|
1467
|
-
} => {
|
1468
|
-
let sig_ref = self.func.dfg.ext_funcs[func_ref].signature;
|
1469
|
-
self.typecheck_tail_call(inst, sig_ref, errors)?;
|
1470
|
-
}
|
1471
|
-
ir::InstructionData::CallIndirect {
|
1472
|
-
opcode: Opcode::ReturnCallIndirect,
|
1473
|
-
sig_ref,
|
1474
|
-
..
|
1475
|
-
} => {
|
1476
|
-
self.typecheck_tail_call(inst, sig_ref, errors)?;
|
1477
|
-
}
|
1478
|
-
inst => debug_assert!(!inst.opcode().is_return()),
|
1479
|
-
}
|
1480
|
-
Ok(())
|
1481
|
-
}
|
1482
|
-
|
1483
|
-
fn typecheck_tail_call(
|
1484
|
-
&self,
|
1485
|
-
inst: Inst,
|
1486
|
-
sig_ref: SigRef,
|
1487
|
-
errors: &mut VerifierErrors,
|
1488
|
-
) -> VerifierStepResult<()> {
|
1489
|
-
let signature = &self.func.dfg.signatures[sig_ref];
|
1490
|
-
let cc = signature.call_conv;
|
1491
|
-
if !cc.supports_tail_calls() {
|
1492
|
-
errors.report((
|
1493
|
-
inst,
|
1494
|
-
self.context(inst),
|
1495
|
-
format!("calling convention `{cc}` does not support tail calls"),
|
1496
|
-
));
|
1497
|
-
}
|
1498
|
-
if cc != self.func.signature.call_conv {
|
1499
|
-
errors.report((
|
1500
|
-
inst,
|
1501
|
-
self.context(inst),
|
1502
|
-
"callee's calling convention must match caller",
|
1503
|
-
));
|
1504
|
-
}
|
1505
|
-
let types = signature.returns.iter().map(|param| param.value_type);
|
1506
|
-
self.typecheck_return_types(inst, types, errors, "results of callee must match caller")?;
|
1507
|
-
Ok(())
|
1508
|
-
}
|
1509
|
-
|
1510
|
-
fn typecheck_return_types(
|
1511
|
-
&self,
|
1512
|
-
inst: Inst,
|
1513
|
-
actual_types: impl ExactSizeIterator<Item = Type>,
|
1514
|
-
errors: &mut VerifierErrors,
|
1515
|
-
message: &str,
|
1516
|
-
) -> VerifierStepResult<()> {
|
1517
|
-
let expected_types = &self.func.signature.returns;
|
1518
|
-
if actual_types.len() != expected_types.len() {
|
1519
|
-
return errors.nonfatal((inst, self.context(inst), message));
|
1520
|
-
}
|
1521
|
-
for (i, (actual_type, &expected_type)) in actual_types.zip(expected_types).enumerate() {
|
1522
|
-
if actual_type != expected_type.value_type {
|
1523
|
-
errors.report((
|
1524
|
-
inst,
|
1525
|
-
self.context(inst),
|
1526
|
-
format!(
|
1527
|
-
"result {i} has type {actual_type}, must match function signature of \
|
1528
|
-
{expected_type}"
|
1529
|
-
),
|
1530
|
-
));
|
1531
|
-
}
|
1532
|
-
}
|
1533
|
-
Ok(())
|
1534
|
-
}
|
1535
|
-
|
1536
|
-
// Check special-purpose type constraints that can't be expressed in the normal opcode
|
1537
|
-
// constraints.
|
1538
|
-
fn typecheck_special(&self, inst: Inst, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1539
|
-
match self.func.dfg.insts[inst] {
|
1540
|
-
ir::InstructionData::TableAddr { table, arg, .. } => {
|
1541
|
-
let index_type = self.func.dfg.value_type(arg);
|
1542
|
-
let table_index_type = self.func.tables[table].index_type;
|
1543
|
-
if index_type != table_index_type {
|
1544
|
-
return errors.nonfatal((
|
1545
|
-
inst,
|
1546
|
-
self.context(inst),
|
1547
|
-
format!(
|
1548
|
-
"index type {} differs from table index type {}",
|
1549
|
-
index_type, table_index_type,
|
1550
|
-
),
|
1551
|
-
));
|
1552
|
-
}
|
1553
|
-
}
|
1554
|
-
ir::InstructionData::UnaryGlobalValue { global_value, .. } => {
|
1555
|
-
if let Some(isa) = self.isa {
|
1556
|
-
let inst_type = self.func.dfg.value_type(self.func.dfg.first_result(inst));
|
1557
|
-
let global_type = self.func.global_values[global_value].global_type(isa);
|
1558
|
-
if inst_type != global_type {
|
1559
|
-
return errors.nonfatal((
|
1560
|
-
inst, self.context(inst),
|
1561
|
-
format!(
|
1562
|
-
"global_value instruction with type {} references global value with type {}",
|
1563
|
-
inst_type, global_type
|
1564
|
-
)),
|
1565
|
-
);
|
1566
|
-
}
|
1567
|
-
}
|
1568
|
-
}
|
1569
|
-
_ => {}
|
1570
|
-
}
|
1571
|
-
Ok(())
|
1572
|
-
}
|
1573
|
-
|
1574
|
-
fn cfg_integrity(
|
1575
|
-
&self,
|
1576
|
-
cfg: &ControlFlowGraph,
|
1577
|
-
errors: &mut VerifierErrors,
|
1578
|
-
) -> VerifierStepResult<()> {
|
1579
|
-
let mut expected_succs = BTreeSet::<Block>::new();
|
1580
|
-
let mut got_succs = BTreeSet::<Block>::new();
|
1581
|
-
let mut expected_preds = BTreeSet::<Inst>::new();
|
1582
|
-
let mut got_preds = BTreeSet::<Inst>::new();
|
1583
|
-
|
1584
|
-
for block in self.func.layout.blocks() {
|
1585
|
-
expected_succs.extend(self.expected_cfg.succ_iter(block));
|
1586
|
-
got_succs.extend(cfg.succ_iter(block));
|
1587
|
-
|
1588
|
-
let missing_succs: Vec<Block> =
|
1589
|
-
expected_succs.difference(&got_succs).cloned().collect();
|
1590
|
-
if !missing_succs.is_empty() {
|
1591
|
-
errors.report((
|
1592
|
-
block,
|
1593
|
-
format!("cfg lacked the following successor(s) {:?}", missing_succs),
|
1594
|
-
));
|
1595
|
-
continue;
|
1596
|
-
}
|
1597
|
-
|
1598
|
-
let excess_succs: Vec<Block> = got_succs.difference(&expected_succs).cloned().collect();
|
1599
|
-
if !excess_succs.is_empty() {
|
1600
|
-
errors.report((
|
1601
|
-
block,
|
1602
|
-
format!("cfg had unexpected successor(s) {:?}", excess_succs),
|
1603
|
-
));
|
1604
|
-
continue;
|
1605
|
-
}
|
1606
|
-
|
1607
|
-
expected_preds.extend(
|
1608
|
-
self.expected_cfg
|
1609
|
-
.pred_iter(block)
|
1610
|
-
.map(|BlockPredecessor { inst, .. }| inst),
|
1611
|
-
);
|
1612
|
-
got_preds.extend(
|
1613
|
-
cfg.pred_iter(block)
|
1614
|
-
.map(|BlockPredecessor { inst, .. }| inst),
|
1615
|
-
);
|
1616
|
-
|
1617
|
-
let missing_preds: Vec<Inst> = expected_preds.difference(&got_preds).cloned().collect();
|
1618
|
-
if !missing_preds.is_empty() {
|
1619
|
-
errors.report((
|
1620
|
-
block,
|
1621
|
-
format!(
|
1622
|
-
"cfg lacked the following predecessor(s) {:?}",
|
1623
|
-
missing_preds
|
1624
|
-
),
|
1625
|
-
));
|
1626
|
-
continue;
|
1627
|
-
}
|
1628
|
-
|
1629
|
-
let excess_preds: Vec<Inst> = got_preds.difference(&expected_preds).cloned().collect();
|
1630
|
-
if !excess_preds.is_empty() {
|
1631
|
-
errors.report((
|
1632
|
-
block,
|
1633
|
-
format!("cfg had unexpected predecessor(s) {:?}", excess_preds),
|
1634
|
-
));
|
1635
|
-
continue;
|
1636
|
-
}
|
1637
|
-
|
1638
|
-
expected_succs.clear();
|
1639
|
-
got_succs.clear();
|
1640
|
-
expected_preds.clear();
|
1641
|
-
got_preds.clear();
|
1642
|
-
}
|
1643
|
-
errors.as_result()
|
1644
|
-
}
|
1645
|
-
|
1646
|
-
fn immediate_constraints(
|
1647
|
-
&self,
|
1648
|
-
inst: Inst,
|
1649
|
-
errors: &mut VerifierErrors,
|
1650
|
-
) -> VerifierStepResult<()> {
|
1651
|
-
let inst_data = &self.func.dfg.insts[inst];
|
1652
|
-
|
1653
|
-
match *inst_data {
|
1654
|
-
ir::InstructionData::Store { flags, .. } => {
|
1655
|
-
if flags.readonly() {
|
1656
|
-
errors.fatal((
|
1657
|
-
inst,
|
1658
|
-
self.context(inst),
|
1659
|
-
"A store instruction cannot have the `readonly` MemFlag",
|
1660
|
-
))
|
1661
|
-
} else {
|
1662
|
-
Ok(())
|
1663
|
-
}
|
1664
|
-
}
|
1665
|
-
ir::InstructionData::BinaryImm8 {
|
1666
|
-
opcode: ir::instructions::Opcode::Extractlane,
|
1667
|
-
imm: lane,
|
1668
|
-
arg,
|
1669
|
-
..
|
1670
|
-
}
|
1671
|
-
| ir::InstructionData::TernaryImm8 {
|
1672
|
-
opcode: ir::instructions::Opcode::Insertlane,
|
1673
|
-
imm: lane,
|
1674
|
-
args: [arg, _],
|
1675
|
-
..
|
1676
|
-
} => {
|
1677
|
-
// We must be specific about the opcodes above because other instructions are using
|
1678
|
-
// the same formats.
|
1679
|
-
let ty = self.func.dfg.value_type(arg);
|
1680
|
-
if lane as u32 >= ty.lane_count() {
|
1681
|
-
errors.fatal((
|
1682
|
-
inst,
|
1683
|
-
self.context(inst),
|
1684
|
-
format!("The lane {} does not index into the type {}", lane, ty,),
|
1685
|
-
))
|
1686
|
-
} else {
|
1687
|
-
Ok(())
|
1688
|
-
}
|
1689
|
-
}
|
1690
|
-
ir::InstructionData::Shuffle {
|
1691
|
-
opcode: ir::instructions::Opcode::Shuffle,
|
1692
|
-
imm,
|
1693
|
-
..
|
1694
|
-
} => {
|
1695
|
-
let imm = self.func.dfg.immediates.get(imm).unwrap().as_slice();
|
1696
|
-
if imm.len() != 16 {
|
1697
|
-
errors.fatal((
|
1698
|
-
inst,
|
1699
|
-
self.context(inst),
|
1700
|
-
format!("the shuffle immediate wasn't 16-bytes long"),
|
1701
|
-
))
|
1702
|
-
} else if let Some(i) = imm.iter().find(|i| **i >= 32) {
|
1703
|
-
errors.fatal((
|
1704
|
-
inst,
|
1705
|
-
self.context(inst),
|
1706
|
-
format!("shuffle immediate index {i} is larger than the maximum 31"),
|
1707
|
-
))
|
1708
|
-
} else {
|
1709
|
-
Ok(())
|
1710
|
-
}
|
1711
|
-
}
|
1712
|
-
_ => Ok(()),
|
1713
|
-
}
|
1714
|
-
}
|
1715
|
-
|
1716
|
-
fn iconst_bounds(&self, inst: Inst, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1717
|
-
use crate::ir::instructions::InstructionData::UnaryImm;
|
1718
|
-
|
1719
|
-
let inst_data = &self.func.dfg.insts[inst];
|
1720
|
-
if let UnaryImm {
|
1721
|
-
opcode: Opcode::Iconst,
|
1722
|
-
imm,
|
1723
|
-
} = inst_data
|
1724
|
-
{
|
1725
|
-
let ctrl_typevar = self.func.dfg.ctrl_typevar(inst);
|
1726
|
-
let bounds_mask = match ctrl_typevar {
|
1727
|
-
types::I8 => u8::MAX.into(),
|
1728
|
-
types::I16 => u16::MAX.into(),
|
1729
|
-
types::I32 => u32::MAX.into(),
|
1730
|
-
types::I64 => u64::MAX,
|
1731
|
-
_ => unreachable!(),
|
1732
|
-
};
|
1733
|
-
|
1734
|
-
let value = imm.bits() as u64;
|
1735
|
-
if value & bounds_mask != value {
|
1736
|
-
errors.fatal((
|
1737
|
-
inst,
|
1738
|
-
self.context(inst),
|
1739
|
-
"constant immediate is out of bounds",
|
1740
|
-
))
|
1741
|
-
} else {
|
1742
|
-
Ok(())
|
1743
|
-
}
|
1744
|
-
} else {
|
1745
|
-
Ok(())
|
1746
|
-
}
|
1747
|
-
}
|
1748
|
-
|
1749
|
-
fn typecheck_function_signature(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1750
|
-
let params = self
|
1751
|
-
.func
|
1752
|
-
.signature
|
1753
|
-
.params
|
1754
|
-
.iter()
|
1755
|
-
.enumerate()
|
1756
|
-
.map(|p| (true, p));
|
1757
|
-
let returns = self
|
1758
|
-
.func
|
1759
|
-
.signature
|
1760
|
-
.returns
|
1761
|
-
.iter()
|
1762
|
-
.enumerate()
|
1763
|
-
.map(|p| (false, p));
|
1764
|
-
|
1765
|
-
for (is_argument, (i, param)) in params.chain(returns) {
|
1766
|
-
let is_return = !is_argument;
|
1767
|
-
let item = if is_argument {
|
1768
|
-
"Parameter"
|
1769
|
-
} else {
|
1770
|
-
"Return value"
|
1771
|
-
};
|
1772
|
-
|
1773
|
-
if param.value_type == types::INVALID {
|
1774
|
-
errors.report((
|
1775
|
-
AnyEntity::Function,
|
1776
|
-
format!("{item} at position {i} has an invalid type"),
|
1777
|
-
));
|
1778
|
-
}
|
1779
|
-
|
1780
|
-
if let ArgumentPurpose::StructArgument(_) = param.purpose {
|
1781
|
-
if is_return {
|
1782
|
-
errors.report((
|
1783
|
-
AnyEntity::Function,
|
1784
|
-
format!("{item} at position {i} can't be an struct argument"),
|
1785
|
-
))
|
1786
|
-
}
|
1787
|
-
}
|
1788
|
-
|
1789
|
-
let ty_allows_extension = param.value_type.is_int();
|
1790
|
-
let has_extension = param.extension != ArgumentExtension::None;
|
1791
|
-
if !ty_allows_extension && has_extension {
|
1792
|
-
errors.report((
|
1793
|
-
AnyEntity::Function,
|
1794
|
-
format!(
|
1795
|
-
"{} at position {} has invalid extension {:?}",
|
1796
|
-
item, i, param.extension
|
1797
|
-
),
|
1798
|
-
));
|
1799
|
-
}
|
1800
|
-
}
|
1801
|
-
|
1802
|
-
if errors.has_error() {
|
1803
|
-
Err(())
|
1804
|
-
} else {
|
1805
|
-
Ok(())
|
1806
|
-
}
|
1807
|
-
}
|
1808
|
-
|
1809
|
-
pub fn run(&self, errors: &mut VerifierErrors) -> VerifierStepResult<()> {
|
1810
|
-
self.verify_global_values(errors)?;
|
1811
|
-
self.verify_memory_types(errors)?;
|
1812
|
-
self.verify_tables(errors)?;
|
1813
|
-
self.typecheck_entry_block_params(errors)?;
|
1814
|
-
self.check_entry_not_cold(errors)?;
|
1815
|
-
self.typecheck_function_signature(errors)?;
|
1816
|
-
|
1817
|
-
for block in self.func.layout.blocks() {
|
1818
|
-
if self.func.layout.first_inst(block).is_none() {
|
1819
|
-
return errors.fatal((block, format!("{} cannot be empty", block)));
|
1820
|
-
}
|
1821
|
-
for inst in self.func.layout.block_insts(block) {
|
1822
|
-
self.block_integrity(block, inst, errors)?;
|
1823
|
-
self.instruction_integrity(inst, errors)?;
|
1824
|
-
self.typecheck(inst, errors)?;
|
1825
|
-
self.immediate_constraints(inst, errors)?;
|
1826
|
-
self.iconst_bounds(inst, errors)?;
|
1827
|
-
}
|
1828
|
-
|
1829
|
-
self.encodable_as_bb(block, errors)?;
|
1830
|
-
}
|
1831
|
-
|
1832
|
-
if !errors.is_empty() {
|
1833
|
-
log::warn!(
|
1834
|
-
"Found verifier errors in function:\n{}",
|
1835
|
-
pretty_verifier_error(self.func, None, errors.clone())
|
1836
|
-
);
|
1837
|
-
}
|
1838
|
-
|
1839
|
-
Ok(())
|
1840
|
-
}
|
1841
|
-
}
|
1842
|
-
|
1843
|
-
#[cfg(test)]
|
1844
|
-
mod tests {
|
1845
|
-
use super::{Verifier, VerifierError, VerifierErrors};
|
1846
|
-
use crate::ir::instructions::{InstructionData, Opcode};
|
1847
|
-
use crate::ir::{types, AbiParam, Function, Type};
|
1848
|
-
use crate::settings;
|
1849
|
-
|
1850
|
-
macro_rules! assert_err_with_msg {
|
1851
|
-
($e:expr, $msg:expr) => {
|
1852
|
-
match $e.0.get(0) {
|
1853
|
-
None => panic!("Expected an error"),
|
1854
|
-
Some(&VerifierError { ref message, .. }) => {
|
1855
|
-
if !message.contains($msg) {
|
1856
|
-
#[cfg(feature = "std")]
|
1857
|
-
panic!("'{}' did not contain the substring '{}'", message, $msg);
|
1858
|
-
#[cfg(not(feature = "std"))]
|
1859
|
-
panic!("error message did not contain the expected substring");
|
1860
|
-
}
|
1861
|
-
}
|
1862
|
-
}
|
1863
|
-
};
|
1864
|
-
}
|
1865
|
-
|
1866
|
-
#[test]
|
1867
|
-
fn empty() {
|
1868
|
-
let func = Function::new();
|
1869
|
-
let flags = &settings::Flags::new(settings::builder());
|
1870
|
-
let verifier = Verifier::new(&func, flags.into());
|
1871
|
-
let mut errors = VerifierErrors::default();
|
1872
|
-
|
1873
|
-
assert_eq!(verifier.run(&mut errors), Ok(()));
|
1874
|
-
assert!(errors.0.is_empty());
|
1875
|
-
}
|
1876
|
-
|
1877
|
-
#[test]
|
1878
|
-
fn bad_instruction_format() {
|
1879
|
-
let mut func = Function::new();
|
1880
|
-
let block0 = func.dfg.make_block();
|
1881
|
-
func.layout.append_block(block0);
|
1882
|
-
let nullary_with_bad_opcode = func.dfg.make_inst(InstructionData::UnaryImm {
|
1883
|
-
opcode: Opcode::F32const,
|
1884
|
-
imm: 0.into(),
|
1885
|
-
});
|
1886
|
-
func.layout.append_inst(nullary_with_bad_opcode, block0);
|
1887
|
-
let destination = func.dfg.block_call(block0, &[]);
|
1888
|
-
func.stencil.layout.append_inst(
|
1889
|
-
func.stencil.dfg.make_inst(InstructionData::Jump {
|
1890
|
-
opcode: Opcode::Jump,
|
1891
|
-
destination,
|
1892
|
-
}),
|
1893
|
-
block0,
|
1894
|
-
);
|
1895
|
-
let flags = &settings::Flags::new(settings::builder());
|
1896
|
-
let verifier = Verifier::new(&func, flags.into());
|
1897
|
-
let mut errors = VerifierErrors::default();
|
1898
|
-
|
1899
|
-
let _ = verifier.run(&mut errors);
|
1900
|
-
|
1901
|
-
assert_err_with_msg!(errors, "instruction format");
|
1902
|
-
}
|
1903
|
-
|
1904
|
-
fn test_iconst_bounds(immediate: i64, ctrl_typevar: Type) -> VerifierErrors {
|
1905
|
-
let mut func = Function::new();
|
1906
|
-
let block0 = func.dfg.make_block();
|
1907
|
-
func.layout.append_block(block0);
|
1908
|
-
|
1909
|
-
let test_inst = func.dfg.make_inst(InstructionData::UnaryImm {
|
1910
|
-
opcode: Opcode::Iconst,
|
1911
|
-
imm: immediate.into(),
|
1912
|
-
});
|
1913
|
-
|
1914
|
-
let end_inst = func.dfg.make_inst(InstructionData::MultiAry {
|
1915
|
-
opcode: Opcode::Return,
|
1916
|
-
args: Default::default(),
|
1917
|
-
});
|
1918
|
-
|
1919
|
-
func.dfg.append_result(test_inst, ctrl_typevar);
|
1920
|
-
func.layout.append_inst(test_inst, block0);
|
1921
|
-
func.layout.append_inst(end_inst, block0);
|
1922
|
-
|
1923
|
-
let flags = &settings::Flags::new(settings::builder());
|
1924
|
-
let verifier = Verifier::new(&func, flags.into());
|
1925
|
-
let mut errors = VerifierErrors::default();
|
1926
|
-
|
1927
|
-
let _ = verifier.run(&mut errors);
|
1928
|
-
errors
|
1929
|
-
}
|
1930
|
-
|
1931
|
-
fn test_iconst_bounds_err(immediate: i64, ctrl_typevar: Type) {
|
1932
|
-
assert_err_with_msg!(
|
1933
|
-
test_iconst_bounds(immediate, ctrl_typevar),
|
1934
|
-
"constant immediate is out of bounds"
|
1935
|
-
);
|
1936
|
-
}
|
1937
|
-
|
1938
|
-
fn test_iconst_bounds_ok(immediate: i64, ctrl_typevar: Type) {
|
1939
|
-
assert!(test_iconst_bounds(immediate, ctrl_typevar).is_empty());
|
1940
|
-
}
|
1941
|
-
|
1942
|
-
#[test]
|
1943
|
-
fn negative_iconst_8() {
|
1944
|
-
test_iconst_bounds_err(-10, types::I8);
|
1945
|
-
}
|
1946
|
-
|
1947
|
-
#[test]
|
1948
|
-
fn negative_iconst_32() {
|
1949
|
-
test_iconst_bounds_err(-1, types::I32);
|
1950
|
-
}
|
1951
|
-
|
1952
|
-
#[test]
|
1953
|
-
fn large_iconst_8() {
|
1954
|
-
test_iconst_bounds_err(1 + u8::MAX as i64, types::I8);
|
1955
|
-
}
|
1956
|
-
|
1957
|
-
#[test]
|
1958
|
-
fn large_iconst_16() {
|
1959
|
-
test_iconst_bounds_err(10 + u16::MAX as i64, types::I16);
|
1960
|
-
}
|
1961
|
-
|
1962
|
-
#[test]
|
1963
|
-
fn valid_iconst_8() {
|
1964
|
-
test_iconst_bounds_ok(10, types::I8);
|
1965
|
-
}
|
1966
|
-
|
1967
|
-
#[test]
|
1968
|
-
fn valid_iconst_32() {
|
1969
|
-
test_iconst_bounds_ok(u32::MAX as i64, types::I32);
|
1970
|
-
}
|
1971
|
-
|
1972
|
-
#[test]
|
1973
|
-
fn test_function_invalid_param() {
|
1974
|
-
let mut func = Function::new();
|
1975
|
-
func.signature.params.push(AbiParam::new(types::INVALID));
|
1976
|
-
|
1977
|
-
let mut errors = VerifierErrors::default();
|
1978
|
-
let flags = &settings::Flags::new(settings::builder());
|
1979
|
-
let verifier = Verifier::new(&func, flags.into());
|
1980
|
-
|
1981
|
-
let _ = verifier.typecheck_function_signature(&mut errors);
|
1982
|
-
assert_err_with_msg!(errors, "Parameter at position 0 has an invalid type");
|
1983
|
-
}
|
1984
|
-
|
1985
|
-
#[test]
|
1986
|
-
fn test_function_invalid_return_value() {
|
1987
|
-
let mut func = Function::new();
|
1988
|
-
func.signature.returns.push(AbiParam::new(types::INVALID));
|
1989
|
-
|
1990
|
-
let mut errors = VerifierErrors::default();
|
1991
|
-
let flags = &settings::Flags::new(settings::builder());
|
1992
|
-
let verifier = Verifier::new(&func, flags.into());
|
1993
|
-
|
1994
|
-
let _ = verifier.typecheck_function_signature(&mut errors);
|
1995
|
-
assert_err_with_msg!(errors, "Return value at position 0 has an invalid type");
|
1996
|
-
}
|
1997
|
-
|
1998
|
-
#[test]
|
1999
|
-
fn test_printing_contextual_errors() {
|
2000
|
-
// Build function.
|
2001
|
-
let mut func = Function::new();
|
2002
|
-
let block0 = func.dfg.make_block();
|
2003
|
-
func.layout.append_block(block0);
|
2004
|
-
|
2005
|
-
// Build instruction: v0, v1 = iconst 42
|
2006
|
-
let inst = func.dfg.make_inst(InstructionData::UnaryImm {
|
2007
|
-
opcode: Opcode::Iconst,
|
2008
|
-
imm: 42.into(),
|
2009
|
-
});
|
2010
|
-
func.dfg.append_result(inst, types::I32);
|
2011
|
-
func.dfg.append_result(inst, types::I32);
|
2012
|
-
func.layout.append_inst(inst, block0);
|
2013
|
-
|
2014
|
-
// Setup verifier.
|
2015
|
-
let mut errors = VerifierErrors::default();
|
2016
|
-
let flags = &settings::Flags::new(settings::builder());
|
2017
|
-
let verifier = Verifier::new(&func, flags.into());
|
2018
|
-
|
2019
|
-
// Now the error message, when printed, should contain the instruction sequence causing the
|
2020
|
-
// error (i.e. v0, v1 = iconst.i32 42) and not only its entity value (i.e. inst0)
|
2021
|
-
let _ = verifier.typecheck_results(inst, types::I32, &mut errors);
|
2022
|
-
assert_eq!(
|
2023
|
-
format!("{}", errors.0[0]),
|
2024
|
-
"inst0 (v0, v1 = iconst.i32 42): has more result values than expected"
|
2025
|
-
)
|
2026
|
-
}
|
2027
|
-
|
2028
|
-
#[test]
|
2029
|
-
fn test_empty_block() {
|
2030
|
-
let mut func = Function::new();
|
2031
|
-
let block0 = func.dfg.make_block();
|
2032
|
-
func.layout.append_block(block0);
|
2033
|
-
|
2034
|
-
let flags = &settings::Flags::new(settings::builder());
|
2035
|
-
let verifier = Verifier::new(&func, flags.into());
|
2036
|
-
let mut errors = VerifierErrors::default();
|
2037
|
-
let _ = verifier.run(&mut errors);
|
2038
|
-
|
2039
|
-
assert_err_with_msg!(errors, "block0 cannot be empty");
|
2040
|
-
}
|
2041
|
-
}
|