wasmtime 14.0.3 → 14.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +68 -59
- data/ext/Cargo.toml +8 -8
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/Cargo.toml +1 -2
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/README.md +1 -2
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/interval.rs +0 -11
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/lib.rs +0 -1
- data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/state.rs +20 -13
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/tests/interval.rs +23 -0
- data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/Cargo.toml +2 -2
- data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/Cargo.toml +3 -3
- data/ext/cargo-vendor/wasm-encoder-0.36.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/builder.rs +455 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/canonicals.rs +159 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/exports.rs +124 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/imports.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/instances.rs +200 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/names.rs +149 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component/types.rs +771 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/code.rs +2989 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/data.rs +185 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/elements.rs +220 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/exports.rs +98 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/globals.rs +100 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/imports.rs +155 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/memories.rs +111 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/names.rs +265 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/producers.rs +180 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/tables.rs +115 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/tags.rs +104 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core/types.rs +584 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/core.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/lib.rs +215 -0
- data/ext/cargo-vendor/wasm-encoder-0.36.2/src/raw.rs +30 -0
- data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/Cargo.toml +10 -10
- data/ext/cargo-vendor/wasmtime-asm-macros-14.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wasmtime-asm-macros-14.0.3 → wasmtime-asm-macros-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/Cargo.toml +3 -3
- data/ext/cargo-vendor/wasmtime-component-util-14.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wasmtime-component-util-14.0.3 → wasmtime-component-util-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/Cargo.toml +10 -10
- data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/Cargo.toml +5 -5
- data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/Cargo.lock +7 -7
- data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/Cargo.toml +4 -4
- data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/Cargo.toml +4 -4
- data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/Cargo.toml +5 -5
- data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/Cargo.toml +2 -2
- data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/Cargo.toml +8 -8
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-14.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wasmtime-versioned-export-macros-14.0.3 → wasmtime-versioned-export-macros-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/Cargo.toml +6 -6
- data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/filesystem.rs +13 -4
- data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/Cargo.toml +5 -5
- data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/wasmtime-wmemcheck-14.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wasmtime-wmemcheck-14.0.3 → wasmtime-wmemcheck-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/Cargo.toml +2 -2
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/binary.rs +9 -29
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/import.rs +13 -11
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/resolve.rs +1 -1
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/binary.rs +2 -2
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/names.rs +1 -1
- data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/types.rs +4 -4
- data/ext/cargo-vendor/wat-1.0.79/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/Cargo.toml +2 -2
- data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/Cargo.toml +3 -3
- data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/Cargo.toml +1 -1
- data/ext/cargo-vendor/wiggle-macro-14.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-macro-14.0.4}/Cargo.toml +2 -2
- data/ext/cargo-vendor/wiggle-macro-14.0.4/LICENSE +220 -0
- data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/.cargo-checksum.json +1 -1
- data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/Cargo.toml +3 -3
- data/lib/wasmtime/version.rb +1 -1
- metadata +723 -687
- data/ext/cargo-vendor/async-timer-1.0.0-beta.10/tests/interval.rs +0 -69
- data/ext/cargo-vendor/wasmtime-asm-macros-14.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-14.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-14.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wmemcheck-14.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.77/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-14.0.3/.cargo-checksum.json +0 -1
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/c_wrapper/posix.c +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/apple.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/async_tokio1.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/dummy.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/posix.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/web.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/timer/win.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/tests/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.10 → async-timer-1.0.0-beta.11}/tests/timer.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-14.0.3 → wasi-cap-std-sync-14.0.4}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-14.0.3 → wasi-common-14.0.4}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasm-encoder-0.36.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-14.0.3 → wasmtime-14.0.4}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-14.0.3 → wasmtime-asm-macros-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cache-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-14.0.3 → wasmtime-cache-14.0.4}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-14.0.3 → wasmtime-component-macro-14.0.4}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-14.0.3 → wasmtime-component-util-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-cranelift-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/compiler/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/func_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-14.0.3 → wasmtime-cranelift-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-14.0.3 → wasmtime-cranelift-shared-14.0.4}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-environ-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/info.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/types/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-14.0.3 → wasmtime-environ-14.0.4}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-fiber-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-14.0.3 → wasmtime-fiber-14.0.4}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-jit-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-14.0.3 → wasmtime-jit-14.0.4}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-14.0.3 → wasmtime-jit-debug-14.0.4}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-14.0.3 → wasmtime-jit-icache-coherence-14.0.4}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-runtime-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/memory_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-14.0.3 → wasmtime-runtime-14.0.4}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-14.0.3 → wasmtime-versioned-export-macros-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wasmtime-wasi-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/src/preview2/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/logging/logging.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/logging/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-14.0.3 → wasmtime-wasi-14.0.4}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-14.0.3 → wasmtime-winch-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-14.0.3 → wasmtime-wit-bindgen-14.0.4}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wmemcheck-14.0.3 → wasmtime-wmemcheck-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.0.77 → wast-67.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-66.0.2 → wast-67.0.1}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wat-1.0.79}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.77 → wat-1.0.79}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-14.0.3 → wiggle-14.0.4}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-generate-14.0.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-14.0.3 → wiggle-macro-14.0.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/context.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/codegen/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.12.3 → winch-codegen-0.12.4}/src/visitor.rs +0 -0
@@ -0,0 +1,455 @@
|
|
1
|
+
use crate::component::*;
|
2
|
+
use crate::{ExportKind, Module, RawSection, ValType};
|
3
|
+
use std::mem;
|
4
|
+
|
5
|
+
/// Convenience type to build a component incrementally and automatically keep
|
6
|
+
/// track of index spaces.
|
7
|
+
///
|
8
|
+
/// This type is intended to be a wrapper around the [`Component`] encoding type
|
9
|
+
/// which is useful for building it up incrementally over time. This type will
|
10
|
+
/// automatically collect definitions into sections and reports the index of all
|
11
|
+
/// items added by keeping track of indices internally.
|
12
|
+
#[derive(Debug, Default)]
|
13
|
+
pub struct ComponentBuilder {
|
14
|
+
/// The binary component that's being built.
|
15
|
+
component: Component,
|
16
|
+
|
17
|
+
/// The last section which was appended to during encoding. This type is
|
18
|
+
/// generated by the `section_accessors` macro below.
|
19
|
+
///
|
20
|
+
/// When something is encoded this is used if it matches the kind of item
|
21
|
+
/// being encoded, otherwise it's "flushed" to the output component and a
|
22
|
+
/// new section is started.
|
23
|
+
last_section: LastSection,
|
24
|
+
|
25
|
+
// Core index spaces
|
26
|
+
core_modules: u32,
|
27
|
+
core_funcs: u32,
|
28
|
+
core_types: u32,
|
29
|
+
core_memories: u32,
|
30
|
+
core_tables: u32,
|
31
|
+
core_instances: u32,
|
32
|
+
core_tags: u32,
|
33
|
+
core_globals: u32,
|
34
|
+
|
35
|
+
// Component index spaces
|
36
|
+
funcs: u32,
|
37
|
+
instances: u32,
|
38
|
+
types: u32,
|
39
|
+
components: u32,
|
40
|
+
values: u32,
|
41
|
+
}
|
42
|
+
|
43
|
+
impl ComponentBuilder {
|
44
|
+
/// Returns the current number of core modules.
|
45
|
+
pub fn core_module_count(&self) -> u32 {
|
46
|
+
self.core_modules
|
47
|
+
}
|
48
|
+
|
49
|
+
/// Returns the current number of core funcs.
|
50
|
+
pub fn core_func_count(&self) -> u32 {
|
51
|
+
self.core_funcs
|
52
|
+
}
|
53
|
+
|
54
|
+
/// Returns the current number of core types.
|
55
|
+
pub fn core_type_count(&self) -> u32 {
|
56
|
+
self.core_types
|
57
|
+
}
|
58
|
+
|
59
|
+
/// Returns the current number of core memories.
|
60
|
+
pub fn core_memory_count(&self) -> u32 {
|
61
|
+
self.core_memories
|
62
|
+
}
|
63
|
+
|
64
|
+
/// Returns the current number of core tables.
|
65
|
+
pub fn core_table_count(&self) -> u32 {
|
66
|
+
self.core_tables
|
67
|
+
}
|
68
|
+
|
69
|
+
/// Returns the current number of core instances.
|
70
|
+
pub fn core_instance_count(&self) -> u32 {
|
71
|
+
self.core_instances
|
72
|
+
}
|
73
|
+
|
74
|
+
/// Returns the current number of core tags.
|
75
|
+
pub fn core_tag_count(&self) -> u32 {
|
76
|
+
self.core_tags
|
77
|
+
}
|
78
|
+
|
79
|
+
/// Returns the current number of core globals.
|
80
|
+
pub fn core_global_count(&self) -> u32 {
|
81
|
+
self.core_globals
|
82
|
+
}
|
83
|
+
|
84
|
+
/// Returns the current number of component funcs.
|
85
|
+
pub fn func_count(&self) -> u32 {
|
86
|
+
self.funcs
|
87
|
+
}
|
88
|
+
|
89
|
+
/// Returns the current number of component instances.
|
90
|
+
pub fn instance_count(&self) -> u32 {
|
91
|
+
self.instances
|
92
|
+
}
|
93
|
+
|
94
|
+
/// Returns the current number of component values.
|
95
|
+
pub fn value_count(&self) -> u32 {
|
96
|
+
self.values
|
97
|
+
}
|
98
|
+
|
99
|
+
/// Returns the current number of components.
|
100
|
+
pub fn component_count(&self) -> u32 {
|
101
|
+
self.components
|
102
|
+
}
|
103
|
+
|
104
|
+
/// Returns the current number of component types.
|
105
|
+
pub fn type_count(&self) -> u32 {
|
106
|
+
self.types
|
107
|
+
}
|
108
|
+
|
109
|
+
/// Completes this component and returns the binary encoding of the entire
|
110
|
+
/// component.
|
111
|
+
pub fn finish(mut self) -> Vec<u8> {
|
112
|
+
self.flush();
|
113
|
+
self.component.finish()
|
114
|
+
}
|
115
|
+
|
116
|
+
/// Encodes a core wasm `Module` into this component, returning its index.
|
117
|
+
pub fn core_module(&mut self, module: &Module) -> u32 {
|
118
|
+
self.flush();
|
119
|
+
self.component.section(&ModuleSection(module));
|
120
|
+
inc(&mut self.core_modules)
|
121
|
+
}
|
122
|
+
|
123
|
+
/// Encodes a core wasm `module` into this component, returning its index.
|
124
|
+
pub fn core_module_raw(&mut self, module: &[u8]) -> u32 {
|
125
|
+
self.flush();
|
126
|
+
self.component.section(&RawSection {
|
127
|
+
id: ComponentSectionId::CoreModule.into(),
|
128
|
+
data: module,
|
129
|
+
});
|
130
|
+
inc(&mut self.core_modules)
|
131
|
+
}
|
132
|
+
|
133
|
+
/// Instantiates a core wasm module at `module_index` with the `args`
|
134
|
+
/// provided.
|
135
|
+
///
|
136
|
+
/// Returns the index of the core wasm instance crated.
|
137
|
+
pub fn core_instantiate<'a, A>(&mut self, module_index: u32, args: A) -> u32
|
138
|
+
where
|
139
|
+
A: IntoIterator<Item = (&'a str, ModuleArg)>,
|
140
|
+
A::IntoIter: ExactSizeIterator,
|
141
|
+
{
|
142
|
+
self.instances().instantiate(module_index, args);
|
143
|
+
inc(&mut self.core_instances)
|
144
|
+
}
|
145
|
+
|
146
|
+
/// Creates a new core wasm instance from the `exports` provided.
|
147
|
+
///
|
148
|
+
/// Returns the index of the core wasm instance crated.
|
149
|
+
pub fn core_instantiate_exports<'a, E>(&mut self, exports: E) -> u32
|
150
|
+
where
|
151
|
+
E: IntoIterator<Item = (&'a str, ExportKind, u32)>,
|
152
|
+
E::IntoIter: ExactSizeIterator,
|
153
|
+
{
|
154
|
+
self.instances().export_items(exports);
|
155
|
+
inc(&mut self.core_instances)
|
156
|
+
}
|
157
|
+
|
158
|
+
/// Creates a new aliased item where the core `instance` specified has its
|
159
|
+
/// export `name` aliased out with the `kind` specified.
|
160
|
+
///
|
161
|
+
/// Returns the index of the item crated.
|
162
|
+
pub fn core_alias_export(&mut self, instance: u32, name: &str, kind: ExportKind) -> u32 {
|
163
|
+
self.alias(Alias::CoreInstanceExport {
|
164
|
+
instance,
|
165
|
+
kind,
|
166
|
+
name,
|
167
|
+
})
|
168
|
+
}
|
169
|
+
|
170
|
+
/// Adds a new alias to this component
|
171
|
+
pub fn alias(&mut self, alias: Alias<'_>) -> u32 {
|
172
|
+
self.aliases().alias(alias);
|
173
|
+
match alias {
|
174
|
+
Alias::InstanceExport { kind, .. } => self.inc_kind(kind),
|
175
|
+
Alias::CoreInstanceExport { kind, .. } => self.inc_core_kind(kind),
|
176
|
+
Alias::Outer {
|
177
|
+
kind: ComponentOuterAliasKind::Type,
|
178
|
+
..
|
179
|
+
} => inc(&mut self.types),
|
180
|
+
Alias::Outer {
|
181
|
+
kind: ComponentOuterAliasKind::CoreModule,
|
182
|
+
..
|
183
|
+
} => inc(&mut self.core_modules),
|
184
|
+
Alias::Outer {
|
185
|
+
kind: ComponentOuterAliasKind::Component,
|
186
|
+
..
|
187
|
+
} => inc(&mut self.components),
|
188
|
+
Alias::Outer {
|
189
|
+
kind: ComponentOuterAliasKind::CoreType,
|
190
|
+
..
|
191
|
+
} => inc(&mut self.core_types),
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
/// Creates an alias to a previous component instance's exported item.
|
196
|
+
///
|
197
|
+
/// The `instance` provided is the instance to access and the `name` is the
|
198
|
+
/// item to access.
|
199
|
+
///
|
200
|
+
/// Returns the index of the new item defined.
|
201
|
+
pub fn alias_export(&mut self, instance: u32, name: &str, kind: ComponentExportKind) -> u32 {
|
202
|
+
self.alias(Alias::InstanceExport {
|
203
|
+
instance,
|
204
|
+
kind,
|
205
|
+
name,
|
206
|
+
})
|
207
|
+
}
|
208
|
+
|
209
|
+
fn inc_kind(&mut self, kind: ComponentExportKind) -> u32 {
|
210
|
+
match kind {
|
211
|
+
ComponentExportKind::Func => inc(&mut self.funcs),
|
212
|
+
ComponentExportKind::Module => inc(&mut self.core_modules),
|
213
|
+
ComponentExportKind::Type => inc(&mut self.types),
|
214
|
+
ComponentExportKind::Component => inc(&mut self.components),
|
215
|
+
ComponentExportKind::Instance => inc(&mut self.instances),
|
216
|
+
ComponentExportKind::Value => inc(&mut self.values),
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
fn inc_core_kind(&mut self, kind: ExportKind) -> u32 {
|
221
|
+
match kind {
|
222
|
+
ExportKind::Func => inc(&mut self.core_funcs),
|
223
|
+
ExportKind::Table => inc(&mut self.core_tables),
|
224
|
+
ExportKind::Memory => inc(&mut self.core_memories),
|
225
|
+
ExportKind::Global => inc(&mut self.core_globals),
|
226
|
+
ExportKind::Tag => inc(&mut self.core_tags),
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
/// Lowers the `func_index` component function into a core wasm function
|
231
|
+
/// using the `options` provided.
|
232
|
+
///
|
233
|
+
/// Returns the index of the core wasm function created.
|
234
|
+
pub fn lower_func<O>(&mut self, func_index: u32, options: O) -> u32
|
235
|
+
where
|
236
|
+
O: IntoIterator<Item = CanonicalOption>,
|
237
|
+
O::IntoIter: ExactSizeIterator,
|
238
|
+
{
|
239
|
+
self.canonical_functions().lower(func_index, options);
|
240
|
+
inc(&mut self.core_funcs)
|
241
|
+
}
|
242
|
+
|
243
|
+
/// Lifts the core wasm `core_func_index` function with the component
|
244
|
+
/// function type `type_index` and `options`.
|
245
|
+
///
|
246
|
+
/// Returns the index of the component function created.
|
247
|
+
pub fn lift_func<O>(&mut self, core_func_index: u32, type_index: u32, options: O) -> u32
|
248
|
+
where
|
249
|
+
O: IntoIterator<Item = CanonicalOption>,
|
250
|
+
O::IntoIter: ExactSizeIterator,
|
251
|
+
{
|
252
|
+
self.canonical_functions()
|
253
|
+
.lift(core_func_index, type_index, options);
|
254
|
+
inc(&mut self.funcs)
|
255
|
+
}
|
256
|
+
|
257
|
+
/// Imports a new item into this component with the `name` and `ty` specified.
|
258
|
+
pub fn import(&mut self, name: &str, ty: ComponentTypeRef) -> u32 {
|
259
|
+
let ret = match &ty {
|
260
|
+
ComponentTypeRef::Instance(_) => inc(&mut self.instances),
|
261
|
+
ComponentTypeRef::Func(_) => inc(&mut self.funcs),
|
262
|
+
ComponentTypeRef::Type(..) => inc(&mut self.types),
|
263
|
+
ComponentTypeRef::Component(_) => inc(&mut self.components),
|
264
|
+
ComponentTypeRef::Module(_) => inc(&mut self.core_modules),
|
265
|
+
ComponentTypeRef::Value(_) => inc(&mut self.values),
|
266
|
+
};
|
267
|
+
self.imports().import(name, ty);
|
268
|
+
ret
|
269
|
+
}
|
270
|
+
|
271
|
+
/// Exports a new item from this component with the `name` and `kind`
|
272
|
+
/// specified.
|
273
|
+
///
|
274
|
+
/// The `idx` is the item to export and the `ty` is an optional type to
|
275
|
+
/// ascribe to the export.
|
276
|
+
pub fn export(
|
277
|
+
&mut self,
|
278
|
+
name: &str,
|
279
|
+
kind: ComponentExportKind,
|
280
|
+
idx: u32,
|
281
|
+
ty: Option<ComponentTypeRef>,
|
282
|
+
) -> u32 {
|
283
|
+
self.exports().export(name, kind, idx, ty);
|
284
|
+
self.inc_kind(kind)
|
285
|
+
}
|
286
|
+
|
287
|
+
/// Creates a new encoder for the next core type in this component.
|
288
|
+
pub fn core_type(&mut self) -> (u32, CoreTypeEncoder<'_>) {
|
289
|
+
(inc(&mut self.core_types), self.core_types().ty())
|
290
|
+
}
|
291
|
+
|
292
|
+
/// Creates a new encoder for the next type in this component.
|
293
|
+
pub fn ty(&mut self) -> (u32, ComponentTypeEncoder<'_>) {
|
294
|
+
(inc(&mut self.types), self.types().ty())
|
295
|
+
}
|
296
|
+
|
297
|
+
/// Creates a new instance type within this component.
|
298
|
+
pub fn type_instance(&mut self, ty: &InstanceType) -> u32 {
|
299
|
+
self.types().instance(ty);
|
300
|
+
inc(&mut self.types)
|
301
|
+
}
|
302
|
+
|
303
|
+
/// Creates a new component type within this component.
|
304
|
+
pub fn type_component(&mut self, ty: &ComponentType) -> u32 {
|
305
|
+
self.types().component(ty);
|
306
|
+
inc(&mut self.types)
|
307
|
+
}
|
308
|
+
|
309
|
+
/// Creates a new defined component type within this component.
|
310
|
+
pub fn type_defined(&mut self) -> (u32, ComponentDefinedTypeEncoder<'_>) {
|
311
|
+
(inc(&mut self.types), self.types().defined_type())
|
312
|
+
}
|
313
|
+
|
314
|
+
/// Creates a new component function type within this component.
|
315
|
+
pub fn type_function(&mut self) -> (u32, ComponentFuncTypeEncoder<'_>) {
|
316
|
+
(inc(&mut self.types), self.types().function())
|
317
|
+
}
|
318
|
+
|
319
|
+
/// Declares a
|
320
|
+
pub fn type_resource(&mut self, rep: ValType, dtor: Option<u32>) -> u32 {
|
321
|
+
self.types().resource(rep, dtor);
|
322
|
+
inc(&mut self.types)
|
323
|
+
}
|
324
|
+
|
325
|
+
/// Defines a new subcomponent of this component.
|
326
|
+
pub fn component(&mut self, mut builder: ComponentBuilder) -> u32 {
|
327
|
+
builder.flush();
|
328
|
+
self.flush();
|
329
|
+
self.component
|
330
|
+
.section(&NestedComponentSection(&builder.component));
|
331
|
+
inc(&mut self.components)
|
332
|
+
}
|
333
|
+
|
334
|
+
/// Defines a new subcomponent of this component.
|
335
|
+
pub fn component_raw(&mut self, data: &[u8]) -> u32 {
|
336
|
+
let raw_section = RawSection {
|
337
|
+
id: ComponentSectionId::Component.into(),
|
338
|
+
data,
|
339
|
+
};
|
340
|
+
self.flush();
|
341
|
+
self.component.section(&raw_section);
|
342
|
+
inc(&mut self.components)
|
343
|
+
}
|
344
|
+
|
345
|
+
/// Instantiates the `component_index` specified with the `args` specified.
|
346
|
+
pub fn instantiate<A, S>(&mut self, component_index: u32, args: A) -> u32
|
347
|
+
where
|
348
|
+
A: IntoIterator<Item = (S, ComponentExportKind, u32)>,
|
349
|
+
A::IntoIter: ExactSizeIterator,
|
350
|
+
S: AsRef<str>,
|
351
|
+
{
|
352
|
+
self.component_instances()
|
353
|
+
.instantiate(component_index, args);
|
354
|
+
inc(&mut self.instances)
|
355
|
+
}
|
356
|
+
|
357
|
+
/// Declares a new `resource.drop` intrinsic.
|
358
|
+
pub fn resource_drop(&mut self, ty: u32) -> u32 {
|
359
|
+
self.canonical_functions().resource_drop(ty);
|
360
|
+
inc(&mut self.core_funcs)
|
361
|
+
}
|
362
|
+
|
363
|
+
/// Declares a new `resource.new` intrinsic.
|
364
|
+
pub fn resource_new(&mut self, ty: u32) -> u32 {
|
365
|
+
self.canonical_functions().resource_new(ty);
|
366
|
+
inc(&mut self.core_funcs)
|
367
|
+
}
|
368
|
+
|
369
|
+
/// Declares a new `resource.rep` intrinsic.
|
370
|
+
pub fn resource_rep(&mut self, ty: u32) -> u32 {
|
371
|
+
self.canonical_functions().resource_rep(ty);
|
372
|
+
inc(&mut self.core_funcs)
|
373
|
+
}
|
374
|
+
|
375
|
+
/// Adds a new custom section to this component.
|
376
|
+
pub fn custom_section(&mut self, section: &CustomSection<'_>) {
|
377
|
+
self.flush();
|
378
|
+
self.component.section(section);
|
379
|
+
}
|
380
|
+
|
381
|
+
/// Adds a new custom section to this component.
|
382
|
+
pub fn raw_custom_section(&mut self, section: &[u8]) {
|
383
|
+
self.flush();
|
384
|
+
self.component.section(&RawCustomSection(section));
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
// Helper macro to generate methods on `ComponentBuilder` to get specific
|
389
|
+
// section encoders that automatically flush and write out prior sections as
|
390
|
+
// necessary.
|
391
|
+
macro_rules! section_accessors {
|
392
|
+
($($method:ident => $section:ident)*) => (
|
393
|
+
#[derive(Debug, Default)]
|
394
|
+
enum LastSection {
|
395
|
+
#[default]
|
396
|
+
None,
|
397
|
+
$($section($section),)*
|
398
|
+
}
|
399
|
+
|
400
|
+
impl ComponentBuilder {
|
401
|
+
$(
|
402
|
+
fn $method(&mut self) -> &mut $section {
|
403
|
+
match &self.last_section {
|
404
|
+
// The last encoded section matches the section that's
|
405
|
+
// being requested, so no change is necessary.
|
406
|
+
LastSection::$section(_) => {}
|
407
|
+
|
408
|
+
// Otherwise the last section didn't match this section,
|
409
|
+
// so flush any prior section if needed and start
|
410
|
+
// encoding the desired section of this method.
|
411
|
+
_ => {
|
412
|
+
self.flush();
|
413
|
+
self.last_section = LastSection::$section($section::new());
|
414
|
+
}
|
415
|
+
}
|
416
|
+
match &mut self.last_section {
|
417
|
+
LastSection::$section(ret) => ret,
|
418
|
+
_ => unreachable!()
|
419
|
+
}
|
420
|
+
}
|
421
|
+
)*
|
422
|
+
|
423
|
+
/// Writes out the last section into the final component binary if
|
424
|
+
/// there is a section specified, otherwise does nothing.
|
425
|
+
fn flush(&mut self) {
|
426
|
+
match mem::take(&mut self.last_section) {
|
427
|
+
LastSection::None => {}
|
428
|
+
$(
|
429
|
+
LastSection::$section(section) => {
|
430
|
+
self.component.section(§ion);
|
431
|
+
}
|
432
|
+
)*
|
433
|
+
}
|
434
|
+
}
|
435
|
+
|
436
|
+
}
|
437
|
+
)
|
438
|
+
}
|
439
|
+
|
440
|
+
section_accessors! {
|
441
|
+
component_instances => ComponentInstanceSection
|
442
|
+
instances => InstanceSection
|
443
|
+
canonical_functions => CanonicalFunctionSection
|
444
|
+
aliases => ComponentAliasSection
|
445
|
+
exports => ComponentExportSection
|
446
|
+
imports => ComponentImportSection
|
447
|
+
types => ComponentTypeSection
|
448
|
+
core_types => CoreTypeSection
|
449
|
+
}
|
450
|
+
|
451
|
+
fn inc(idx: &mut u32) -> u32 {
|
452
|
+
let ret = *idx;
|
453
|
+
*idx += 1;
|
454
|
+
ret
|
455
|
+
}
|
@@ -0,0 +1,159 @@
|
|
1
|
+
use crate::{encode_section, ComponentSection, ComponentSectionId, Encode};
|
2
|
+
|
3
|
+
/// Represents options for canonical function definitions.
|
4
|
+
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
5
|
+
pub enum CanonicalOption {
|
6
|
+
/// The string types in the function signature are UTF-8 encoded.
|
7
|
+
UTF8,
|
8
|
+
/// The string types in the function signature are UTF-16 encoded.
|
9
|
+
UTF16,
|
10
|
+
/// The string types in the function signature are compact UTF-16 encoded.
|
11
|
+
CompactUTF16,
|
12
|
+
/// The memory to use if the lifting or lowering of a function requires memory access.
|
13
|
+
///
|
14
|
+
/// The value is an index to a core memory.
|
15
|
+
Memory(u32),
|
16
|
+
/// The realloc function to use if the lifting or lowering of a function requires memory
|
17
|
+
/// allocation.
|
18
|
+
///
|
19
|
+
/// The value is an index to a core function of type `(func (param i32 i32 i32 i32) (result i32))`.
|
20
|
+
Realloc(u32),
|
21
|
+
/// The post-return function to use if the lifting of a function requires
|
22
|
+
/// cleanup after the function returns.
|
23
|
+
PostReturn(u32),
|
24
|
+
}
|
25
|
+
|
26
|
+
impl Encode for CanonicalOption {
|
27
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
28
|
+
match self {
|
29
|
+
Self::UTF8 => sink.push(0x00),
|
30
|
+
Self::UTF16 => sink.push(0x01),
|
31
|
+
Self::CompactUTF16 => sink.push(0x02),
|
32
|
+
Self::Memory(idx) => {
|
33
|
+
sink.push(0x03);
|
34
|
+
idx.encode(sink);
|
35
|
+
}
|
36
|
+
Self::Realloc(idx) => {
|
37
|
+
sink.push(0x04);
|
38
|
+
idx.encode(sink);
|
39
|
+
}
|
40
|
+
Self::PostReturn(idx) => {
|
41
|
+
sink.push(0x05);
|
42
|
+
idx.encode(sink);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
/// An encoder for the canonical function section of WebAssembly components.
|
49
|
+
///
|
50
|
+
/// # Example
|
51
|
+
///
|
52
|
+
/// ```
|
53
|
+
/// use wasm_encoder::{Component, CanonicalFunctionSection, CanonicalOption};
|
54
|
+
///
|
55
|
+
/// let mut functions = CanonicalFunctionSection::new();
|
56
|
+
/// functions.lift(0, 0, [CanonicalOption::UTF8]);
|
57
|
+
///
|
58
|
+
/// let mut component = Component::new();
|
59
|
+
/// component.section(&functions);
|
60
|
+
///
|
61
|
+
/// let bytes = component.finish();
|
62
|
+
/// ```
|
63
|
+
#[derive(Clone, Debug, Default)]
|
64
|
+
pub struct CanonicalFunctionSection {
|
65
|
+
bytes: Vec<u8>,
|
66
|
+
num_added: u32,
|
67
|
+
}
|
68
|
+
|
69
|
+
impl CanonicalFunctionSection {
|
70
|
+
/// Construct a new component function section encoder.
|
71
|
+
pub fn new() -> Self {
|
72
|
+
Self::default()
|
73
|
+
}
|
74
|
+
|
75
|
+
/// The number of functions in the section.
|
76
|
+
pub fn len(&self) -> u32 {
|
77
|
+
self.num_added
|
78
|
+
}
|
79
|
+
|
80
|
+
/// Determines if the section is empty.
|
81
|
+
pub fn is_empty(&self) -> bool {
|
82
|
+
self.num_added == 0
|
83
|
+
}
|
84
|
+
|
85
|
+
/// Define a function that will lift a core WebAssembly function to the canonical ABI.
|
86
|
+
pub fn lift<O>(&mut self, core_func_index: u32, type_index: u32, options: O) -> &mut Self
|
87
|
+
where
|
88
|
+
O: IntoIterator<Item = CanonicalOption>,
|
89
|
+
O::IntoIter: ExactSizeIterator,
|
90
|
+
{
|
91
|
+
let options = options.into_iter();
|
92
|
+
self.bytes.push(0x00);
|
93
|
+
self.bytes.push(0x00);
|
94
|
+
core_func_index.encode(&mut self.bytes);
|
95
|
+
options.len().encode(&mut self.bytes);
|
96
|
+
for option in options {
|
97
|
+
option.encode(&mut self.bytes);
|
98
|
+
}
|
99
|
+
type_index.encode(&mut self.bytes);
|
100
|
+
self.num_added += 1;
|
101
|
+
self
|
102
|
+
}
|
103
|
+
|
104
|
+
/// Define a function that will lower a canonical ABI function to a core WebAssembly function.
|
105
|
+
pub fn lower<O>(&mut self, func_index: u32, options: O) -> &mut Self
|
106
|
+
where
|
107
|
+
O: IntoIterator<Item = CanonicalOption>,
|
108
|
+
O::IntoIter: ExactSizeIterator,
|
109
|
+
{
|
110
|
+
let options = options.into_iter();
|
111
|
+
self.bytes.push(0x01);
|
112
|
+
self.bytes.push(0x00);
|
113
|
+
func_index.encode(&mut self.bytes);
|
114
|
+
options.len().encode(&mut self.bytes);
|
115
|
+
for option in options {
|
116
|
+
option.encode(&mut self.bytes);
|
117
|
+
}
|
118
|
+
self.num_added += 1;
|
119
|
+
self
|
120
|
+
}
|
121
|
+
|
122
|
+
/// Defines a function which will create an owned handle to the resource
|
123
|
+
/// specified by `ty_index`.
|
124
|
+
pub fn resource_new(&mut self, ty_index: u32) -> &mut Self {
|
125
|
+
self.bytes.push(0x02);
|
126
|
+
ty_index.encode(&mut self.bytes);
|
127
|
+
self.num_added += 1;
|
128
|
+
self
|
129
|
+
}
|
130
|
+
|
131
|
+
/// Defines a function which will drop the specified type of handle.
|
132
|
+
pub fn resource_drop(&mut self, ty_index: u32) -> &mut Self {
|
133
|
+
self.bytes.push(0x03);
|
134
|
+
ty_index.encode(&mut self.bytes);
|
135
|
+
self.num_added += 1;
|
136
|
+
self
|
137
|
+
}
|
138
|
+
|
139
|
+
/// Defines a function which will return the representation of the specified
|
140
|
+
/// resource type.
|
141
|
+
pub fn resource_rep(&mut self, ty_index: u32) -> &mut Self {
|
142
|
+
self.bytes.push(0x04);
|
143
|
+
ty_index.encode(&mut self.bytes);
|
144
|
+
self.num_added += 1;
|
145
|
+
self
|
146
|
+
}
|
147
|
+
}
|
148
|
+
|
149
|
+
impl Encode for CanonicalFunctionSection {
|
150
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
151
|
+
encode_section(sink, self.num_added, &self.bytes);
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
impl ComponentSection for CanonicalFunctionSection {
|
156
|
+
fn id(&self) -> u8 {
|
157
|
+
ComponentSectionId::CanonicalFunction.into()
|
158
|
+
}
|
159
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
use crate::{Component, ComponentSection, ComponentSectionId, Encode};
|
2
|
+
|
3
|
+
/// An encoder for the component section of WebAssembly components.
|
4
|
+
///
|
5
|
+
/// # Example
|
6
|
+
///
|
7
|
+
/// ```rust
|
8
|
+
/// use wasm_encoder::{Component, NestedComponentSection};
|
9
|
+
///
|
10
|
+
/// let mut nested = Component::new();
|
11
|
+
/// let mut component = Component::new();
|
12
|
+
/// component.section(&NestedComponentSection(&nested));
|
13
|
+
///
|
14
|
+
/// let bytes = component.finish();
|
15
|
+
/// ```
|
16
|
+
#[derive(Clone, Debug)]
|
17
|
+
pub struct NestedComponentSection<'a>(pub &'a Component);
|
18
|
+
|
19
|
+
impl Encode for NestedComponentSection<'_> {
|
20
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
21
|
+
self.0.bytes.encode(sink);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
impl ComponentSection for NestedComponentSection<'_> {
|
26
|
+
fn id(&self) -> u8 {
|
27
|
+
ComponentSectionId::Component.into()
|
28
|
+
}
|
29
|
+
}
|