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,73 @@
|
|
1
|
+
use std::borrow::Cow;
|
2
|
+
|
3
|
+
use crate::{encoding_size, Encode, Section, SectionId};
|
4
|
+
|
5
|
+
/// A custom section holding arbitrary data.
|
6
|
+
#[derive(Clone, Debug)]
|
7
|
+
pub struct CustomSection<'a> {
|
8
|
+
/// The name of this custom section.
|
9
|
+
pub name: Cow<'a, str>,
|
10
|
+
/// This custom section's data.
|
11
|
+
pub data: Cow<'a, [u8]>,
|
12
|
+
}
|
13
|
+
|
14
|
+
impl Encode for CustomSection<'_> {
|
15
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
16
|
+
let encoded_name_len = encoding_size(u32::try_from(self.name.len()).unwrap());
|
17
|
+
(encoded_name_len + self.name.len() + self.data.len()).encode(sink);
|
18
|
+
self.name.encode(sink);
|
19
|
+
sink.extend(&*self.data);
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
impl Section for CustomSection<'_> {
|
24
|
+
fn id(&self) -> u8 {
|
25
|
+
SectionId::Custom.into()
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
/// A raw custom section where the bytes specified contain the leb-encoded
|
30
|
+
/// length of the custom section, the custom section's name, and the custom
|
31
|
+
/// section's data.
|
32
|
+
#[derive(Clone, Debug)]
|
33
|
+
pub struct RawCustomSection<'a>(pub &'a [u8]);
|
34
|
+
|
35
|
+
impl Encode for RawCustomSection<'_> {
|
36
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
37
|
+
sink.extend(self.0);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
impl Section for RawCustomSection<'_> {
|
42
|
+
fn id(&self) -> u8 {
|
43
|
+
SectionId::Custom.into()
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
#[cfg(test)]
|
48
|
+
mod tests {
|
49
|
+
use super::*;
|
50
|
+
|
51
|
+
#[test]
|
52
|
+
fn test_custom_section() {
|
53
|
+
let custom = CustomSection {
|
54
|
+
name: "test".into(),
|
55
|
+
data: Cow::Borrowed(&[11, 22, 33, 44]),
|
56
|
+
};
|
57
|
+
|
58
|
+
let mut encoded = vec![];
|
59
|
+
custom.encode(&mut encoded);
|
60
|
+
|
61
|
+
#[rustfmt::skip]
|
62
|
+
assert_eq!(encoded, vec![
|
63
|
+
// LEB128 length of section.
|
64
|
+
9,
|
65
|
+
// LEB128 length of name.
|
66
|
+
4,
|
67
|
+
// Name.
|
68
|
+
b't', b'e', b's', b't',
|
69
|
+
// Data.
|
70
|
+
11, 22, 33, 44,
|
71
|
+
]);
|
72
|
+
}
|
73
|
+
}
|
@@ -0,0 +1,185 @@
|
|
1
|
+
use crate::{encode_section, encoding_size, ConstExpr, Encode, Section, SectionId};
|
2
|
+
|
3
|
+
/// An encoder for the data section.
|
4
|
+
///
|
5
|
+
/// Data sections are only supported for modules.
|
6
|
+
///
|
7
|
+
/// # Example
|
8
|
+
///
|
9
|
+
/// ```
|
10
|
+
/// use wasm_encoder::{
|
11
|
+
/// ConstExpr, DataSection, Instruction, MemorySection, MemoryType,
|
12
|
+
/// Module,
|
13
|
+
/// };
|
14
|
+
///
|
15
|
+
/// let mut memory = MemorySection::new();
|
16
|
+
/// memory.memory(MemoryType {
|
17
|
+
/// minimum: 1,
|
18
|
+
/// maximum: None,
|
19
|
+
/// memory64: false,
|
20
|
+
/// shared: false,
|
21
|
+
/// });
|
22
|
+
///
|
23
|
+
/// let mut data = DataSection::new();
|
24
|
+
/// let memory_index = 0;
|
25
|
+
/// let offset = ConstExpr::i32_const(42);
|
26
|
+
/// let segment_data = b"hello";
|
27
|
+
/// data.active(memory_index, &offset, segment_data.iter().copied());
|
28
|
+
///
|
29
|
+
/// let mut module = Module::new();
|
30
|
+
/// module
|
31
|
+
/// .section(&memory)
|
32
|
+
/// .section(&data);
|
33
|
+
///
|
34
|
+
/// let wasm_bytes = module.finish();
|
35
|
+
/// ```
|
36
|
+
#[derive(Clone, Default, Debug)]
|
37
|
+
pub struct DataSection {
|
38
|
+
bytes: Vec<u8>,
|
39
|
+
num_added: u32,
|
40
|
+
}
|
41
|
+
|
42
|
+
/// A segment in the data section.
|
43
|
+
#[derive(Clone, Debug)]
|
44
|
+
pub struct DataSegment<'a, D> {
|
45
|
+
/// This data segment's mode.
|
46
|
+
pub mode: DataSegmentMode<'a>,
|
47
|
+
/// This data segment's data.
|
48
|
+
pub data: D,
|
49
|
+
}
|
50
|
+
|
51
|
+
/// A data segment's mode.
|
52
|
+
#[derive(Clone, Debug)]
|
53
|
+
pub enum DataSegmentMode<'a> {
|
54
|
+
/// An active data segment.
|
55
|
+
Active {
|
56
|
+
/// The memory this segment applies to.
|
57
|
+
memory_index: u32,
|
58
|
+
/// The offset where this segment's data is initialized at.
|
59
|
+
offset: &'a ConstExpr,
|
60
|
+
},
|
61
|
+
/// A passive data segment.
|
62
|
+
///
|
63
|
+
/// Passive data segments are part of the bulk memory proposal.
|
64
|
+
Passive,
|
65
|
+
}
|
66
|
+
|
67
|
+
impl DataSection {
|
68
|
+
/// Create a new data section encoder.
|
69
|
+
pub fn new() -> Self {
|
70
|
+
Self::default()
|
71
|
+
}
|
72
|
+
|
73
|
+
/// The number of data segments in the section.
|
74
|
+
pub fn len(&self) -> u32 {
|
75
|
+
self.num_added
|
76
|
+
}
|
77
|
+
|
78
|
+
/// Determines if the section is empty.
|
79
|
+
pub fn is_empty(&self) -> bool {
|
80
|
+
self.num_added == 0
|
81
|
+
}
|
82
|
+
|
83
|
+
/// Define a data segment.
|
84
|
+
pub fn segment<D>(&mut self, segment: DataSegment<D>) -> &mut Self
|
85
|
+
where
|
86
|
+
D: IntoIterator<Item = u8>,
|
87
|
+
D::IntoIter: ExactSizeIterator,
|
88
|
+
{
|
89
|
+
match segment.mode {
|
90
|
+
DataSegmentMode::Passive => {
|
91
|
+
self.bytes.push(0x01);
|
92
|
+
}
|
93
|
+
DataSegmentMode::Active {
|
94
|
+
memory_index: 0,
|
95
|
+
offset,
|
96
|
+
} => {
|
97
|
+
self.bytes.push(0x00);
|
98
|
+
offset.encode(&mut self.bytes);
|
99
|
+
}
|
100
|
+
DataSegmentMode::Active {
|
101
|
+
memory_index,
|
102
|
+
offset,
|
103
|
+
} => {
|
104
|
+
self.bytes.push(0x02);
|
105
|
+
memory_index.encode(&mut self.bytes);
|
106
|
+
offset.encode(&mut self.bytes);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
let data = segment.data.into_iter();
|
111
|
+
data.len().encode(&mut self.bytes);
|
112
|
+
self.bytes.extend(data);
|
113
|
+
|
114
|
+
self.num_added += 1;
|
115
|
+
self
|
116
|
+
}
|
117
|
+
|
118
|
+
/// Define an active data segment.
|
119
|
+
pub fn active<D>(&mut self, memory_index: u32, offset: &ConstExpr, data: D) -> &mut Self
|
120
|
+
where
|
121
|
+
D: IntoIterator<Item = u8>,
|
122
|
+
D::IntoIter: ExactSizeIterator,
|
123
|
+
{
|
124
|
+
self.segment(DataSegment {
|
125
|
+
mode: DataSegmentMode::Active {
|
126
|
+
memory_index,
|
127
|
+
offset,
|
128
|
+
},
|
129
|
+
data,
|
130
|
+
})
|
131
|
+
}
|
132
|
+
|
133
|
+
/// Define a passive data segment.
|
134
|
+
///
|
135
|
+
/// Passive data segments are part of the bulk memory proposal.
|
136
|
+
pub fn passive<D>(&mut self, data: D) -> &mut Self
|
137
|
+
where
|
138
|
+
D: IntoIterator<Item = u8>,
|
139
|
+
D::IntoIter: ExactSizeIterator,
|
140
|
+
{
|
141
|
+
self.segment(DataSegment {
|
142
|
+
mode: DataSegmentMode::Passive,
|
143
|
+
data,
|
144
|
+
})
|
145
|
+
}
|
146
|
+
|
147
|
+
/// Copy an already-encoded data segment into this data section.
|
148
|
+
pub fn raw(&mut self, already_encoded_data_segment: &[u8]) -> &mut Self {
|
149
|
+
self.bytes.extend_from_slice(already_encoded_data_segment);
|
150
|
+
self.num_added += 1;
|
151
|
+
self
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
impl Encode for DataSection {
|
156
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
157
|
+
encode_section(sink, self.num_added, &self.bytes);
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
impl Section for DataSection {
|
162
|
+
fn id(&self) -> u8 {
|
163
|
+
SectionId::Data.into()
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
/// An encoder for the data count section.
|
168
|
+
#[derive(Clone, Copy, Debug)]
|
169
|
+
pub struct DataCountSection {
|
170
|
+
/// The number of segments in the data section.
|
171
|
+
pub count: u32,
|
172
|
+
}
|
173
|
+
|
174
|
+
impl Encode for DataCountSection {
|
175
|
+
fn encode(&self, sink: &mut Vec<u8>) {
|
176
|
+
encoding_size(self.count).encode(sink);
|
177
|
+
self.count.encode(sink);
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
impl Section for DataCountSection {
|
182
|
+
fn id(&self) -> u8 {
|
183
|
+
SectionId::DataCount.into()
|
184
|
+
}
|
185
|
+
}
|