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
@@ -1 +1 @@
|
|
1
|
-
{"files":{"Cargo.toml":"55faff5e3895f06b03c0b8d2bf69777dac3e1a5624cf7165388f1474ec1f5de4","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","README.md":"5a0d2b894a3ac74ee2be74715a2f22c40a08520cb4ac59183f4e7356f34ac566","src/component.rs":"23a62f4f2774ccfaf60f68e9d9416e68ba203eea782ce0c39cf553ad293f1df4","src/component/alias.rs":"5ec26333e179dc3778dead489f1273815fe9c1c808ba6a7e60eff54072fad795","src/component/binary.rs":"6b3f192c46029d35384c7c129f74c2edaf3c2780614794ed35e94f0d62f13eb6","src/component/component.rs":"b23f62918bd302fd96636438c2a877fa91a5ea0c70d2c62f16528d16b1ffff9d","src/component/custom.rs":"f5b23c34b73a716a986fd999fc8d8c9e24c341e83292088fe83325cd82dab4f5","src/component/expand.rs":"71b2e23f50957b4a15d758df7f8651fdbaf5cf8f44fbfeb134b412318dbd8921","src/component/export.rs":"f51e824c839d8bb0884eca509622f376c8cce3335be324b2b25033af6216fd2a","src/component/func.rs":"4f69de6c38cc6fe77b638ed7d8000c8a170d7053a11a6585dcd5b4877a06804c","src/component/import.rs":"bc948e9e48d8bac7e963ce656aa1959dde63b4e5d40df37da87a86f81799db93","src/component/instance.rs":"e550a7ee9af092ae084dd41e2c0ae756b7dca8da4b91d672d90265a6a15dff83","src/component/item_ref.rs":"e9c426ccc0210dc0c37bb0448468f5f4d9e52656b72d4ff0f2dc65c89957fe60","src/component/module.rs":"d27a28199d1dea1c64294a514329a524432319288515b0a0e3091fa7d3a33f74","src/component/resolve.rs":"1aa93e8ec3d57ff2d7188dbdb8dc6528cc55acbf1119d7b4ca835d7b0f219a0e","src/component/types.rs":"c854a2df9613145c38720d41cda571d0d01408fc09789bd22740874628cbff99","src/component/wast.rs":"36f9440618be7755db0a2994e5ff14187392c25543cdde2069e4c69111a7f490","src/core.rs":"24b71d1ab2ad874c4e37b4dd709b6532989b60e6bc503194434f95029cc1cda7","src/core/binary.rs":"f1cf6c12b2467eec7a0506c64e80b38604a01cf6af280068a4587042628a3b10","src/core/custom.rs":"398229bf37e96f844229f6f9c4ac0628628a79745cf6c5ea8024ec5e2358bca1","src/core/export.rs":"1322a120d9e1dd6f3aa1485ee0bbc4294961028ae8a7584a24170af5823b73b1","src/core/expr.rs":"96cd994fb0190de718e9ecf586a143ee0be6478a58d1af7fc6918ab895345f8c","src/core/func.rs":"f87239645e45b7e40ecf7f8f2b707a7cfc0620cd2632cfdaca3cb155a06da732","src/core/global.rs":"dec0abecadd2fde9298acb729259deba1ef3c4733ae5afcb4fe8cd4a633f5349","src/core/import.rs":"602a13aed2fd5fa63e2562246586546199861df57f304c2906561ab77810cadd","src/core/memory.rs":"2dc551899837d351975c6453425085ebaf4076c1f135cb1654ed8fdabb3fb695","src/core/module.rs":"0bfe00432ea192d2392d7f3f21d173781c39c353081f868632bad89df0b71405","src/core/resolve/deinline_import_export.rs":"b04b953baa68290aabcfe776ef97ef4080c42614f04671ef84ae53a626fb3d4f","src/core/resolve/mod.rs":"9b2680b00a1cafad2dbbfdac86aa1c135ea67203bbc4dee939302b27f4aff6d0","src/core/resolve/names.rs":"7574c6ef0e418b60c65f5db0aaddc7905624b8115d1907fafecdc78ab4a4adc7","src/core/resolve/types.rs":"ff34eed438539cd88ea6c2c51e49ed42eee0d8be566d40c799254bf08125cfa8","src/core/table.rs":"1be354d0040a1b29903b717baa7b87c1e17ac3bcfa16b1fe1ef386067e687a29","src/core/tag.rs":"8a3d4fcdb86dedd68cdaf25abd930ef52a461cf2a0e9393bb9cb6f425afaaf2e","src/core/types.rs":"aea7b6731e7b12098048db979768f9b4e649c16b65e2a3dcd430d1d424048f79","src/core/wast.rs":"a7307f93fb20274f0c99952deeefb51c28d4afe017702ee75d96324285346442","src/encode.rs":"0b165176db54fb9136202c54180adabda843a88e5436b96c19be9d41623912a3","src/error.rs":"4526260299c7983696a49ffe30a80139beb0d081fa8f42decc5e3283b361b1cb","src/gensym.rs":"b5e02e34443085f01deb5b657e541be7dc5d6dc952304e434a0b08320ea6c185","src/lexer.rs":"24667777c1f20277582e6d506c1331b4f50080120144c6eb6d2f09251ecc9628","src/lib.rs":"1347cd37c19069c0d45ddc46e7cd0321f6078b5b872eb4a911ea0e7cd646b4bf","src/names.rs":"1c255befcc524ba6eab069b678e54f45263e670b7c929433d145c29b79a1f725","src/parser.rs":"33f2e25c31412ab862a03e718ce48b62d85117ae2a58d6fae0a72482dfde9756","src/token.rs":"69df5b797687b92d820d6e682a53769d031a5e1c1f168b35c3eaf830624c4364","src/wast.rs":"af6e208c2a37028461a6ad9101967fbfa5c7fc343fe5eb6ecad54f948c74e15d","src/wat.rs":"b353622be42b9a1dc789b55a5a93d2de7c4b48f2d61c6a156e4a51701dc08f2d","tests/annotations.rs":"06294077550600f93a5a8c0d7e3ac38b47f00bb8933f9dc390ff31868e873afb","tests/comments.rs":"694e8a3467e9c837f723a43c729be0c6f6dfe3441ad9692759b1d55fd63055a2","tests/parse-fail.rs":"0f1d5dffd1e6145105571222096703c89c4f4a46e25c848faa730f731155ea1c","tests/parse-fail/bad-core-func-alias.wat":"b71372064c3fce9d4a616418605040fe5e1356030a709b798b4769d3619cbbfb","tests/parse-fail/bad-core-func-alias.wat.err":"bb63274c26d3a21209bad794767f48372834bdc10cfbebf568a0c65d52803c90","tests/parse-fail/bad-func-alias.wat":"237c07149e1e74afe3b991a1fee6acb63167c1ca8931341614c435000339b887","tests/parse-fail/bad-func-alias.wat.err":"4a4bfc691b06d20fdf71e1dbac04649a52c76787048415599978987d761308fa","tests/parse-fail/bad-index.wat":"d21489daeec3a35327dcc9e2ba2d0acdd05f4aeaff2272cca608fda4d2338497","tests/parse-fail/bad-index.wat.err":"dc11070de0c9160573006ea4e5fa3c4d28e71bc39b24b1938cf6ff3b03ea7154","tests/parse-fail/bad-name.wat":"e5ff5d410007779a0de6609ea4cc693f0e603d36a106b8f5098c1980dd9f8124","tests/parse-fail/bad-name.wat.err":"fb5638476c1b85d9d1919e3dbcb0f16f82d088a4a22d4a0c186d7b8ba6e1902b","tests/parse-fail/bad-name2.wat":"5a6a4d0c19e5f2e48d7cebf361aca9b9000b7ef0c652997b5bd0ffaadbd2ca8a","tests/parse-fail/bad-name2.wat.err":"129707cce45f1e3cfb3e2ca5c702182e16ca5eeb2dbb2edd0710b004a8e194a5","tests/parse-fail/bad-name3.wat":"c19133d738cc84e9174301f27d4050c216bda81c7e9918d03ac792b088f24a05","tests/parse-fail/bad-name3.wat.err":"84ea63d40a619a0782ec6e94fce63921188ab87b1c3875eacae0a371144ed83a","tests/parse-fail/block1.wat":"91e74b5c3b43be692e7a6ae74fbfa674c4b6197299eb61338c4eccf282b18f17","tests/parse-fail/block1.wat.err":"40a083ae496b41dee7002cc6a664c5db0c5e4d904ae03b815773a769c4493fca","tests/parse-fail/block2.wat":"a8c07b4c09d51f10a8ffdf19806586022552398701cd90eb6d09816d45df06e5","tests/parse-fail/block2.wat.err":"33c842ec5dd0f2fdd3a9ce8187dd98b45ceee48c12810802af809d05b9cd25e9","tests/parse-fail/block3.wat":"29739abfbabd7c55f00ddfbbb9ebd818b4a114ef2336d50514f0842f7e075905","tests/parse-fail/block3.wat.err":"fc667ae2e71a260f62a3c7393bc97272e7c0ff38b17594f4370847b8a5019060","tests/parse-fail/confusing-block-comment0.wat":"8f27c9d0d212bbb1862ea89ffd7cbeafde5dfd755d695c1ba696cd520aba1a1d","tests/parse-fail/confusing-block-comment0.wat.err":"b53cbaef7bcec3862c64e09c084b92cd61bd29b954125482b2d083db250cd9e2","tests/parse-fail/confusing-block-comment1.wat":"b1a0447c9a8eaab8938d15cd33bd4adbb8bb69c2d710209b604023991a4347cb","tests/parse-fail/confusing-block-comment1.wat.err":"2fc3b3e4f98416326e1e5ec034026301069b6a98fa24451bc7573e16b8cb3811","tests/parse-fail/confusing-block-comment2.wat":"e3f49c7a388fba81081beb25d87bbd7db0acce5dd8e3eaa04574905ed7ec420c","tests/parse-fail/confusing-block-comment2.wat.err":"2183231d6acd0b5a117f9aea747c3d5c12e758450a6cd74027bb954a3134cf19","tests/parse-fail/confusing-block-comment3.wat":"d83f89c582501eb8833e772b8462c8974984a2f7fbb80b1452dc399fac74e5ed","tests/parse-fail/confusing-block-comment3.wat.err":"8b2096a4833627905c63f49cdabe44be24336646578dcfbdc67e9bfb35cbc601","tests/parse-fail/confusing-block-comment4.wat":"b7c6c68844d918e9ef6dd5ab9c40c7de7b38f04f94fadad630eda4e596f3e0f8","tests/parse-fail/confusing-block-comment4.wat.err":"2f790cc511edfcd89a12c9207901be16039fc1a06a584d73095e77a52f861cd9","tests/parse-fail/confusing-block-comment5.wat":"a159808032638cc914fa80ac4354a68b0af4f435a09cbe3e2d577582e183eb0a","tests/parse-fail/confusing-block-comment5.wat.err":"6fe0d99894307442f83fe93beaa5da706e06c9bdaf8e39d7cbae4c4fffafcb94","tests/parse-fail/confusing-block-comment6.wat":"abe48bcba2587dca98bc80ddde4e813f94fbc8a3538704a0775ea85bca0f8466","tests/parse-fail/confusing-block-comment6.wat.err":"3c97b9bf1112bbb7335d7fe4be5befb6f91eea7bec7dd3e6b543792231003c56","tests/parse-fail/confusing-block-comment7.wat":"e125c416ea5fa0ac35a58295a83a6f345438e2d7ddc6a39bd76c8e89885b3f0e","tests/parse-fail/confusing-block-comment7.wat.err":"5c34528ff2019cd3f0b3df34fd42523c0b66120706321da2c88ec05793478d2e","tests/parse-fail/confusing-block-comment8.wat":"200cc4c0e5af21a25529d7a81633a03642cff807255d6cd72eb45cdccc605cec","tests/parse-fail/confusing-block-comment8.wat.err":"9b81237d150a784b71791eee88fb6264a8bd6412862660f7392945203809e517","tests/parse-fail/confusing-line-comment0.wat":"bcec4c5a1e52b3e392e07c6711c979aa8d7db8baaf2bcdf270ba16d1aa528d26","tests/parse-fail/confusing-line-comment0.wat.err":"41ec5a075dc6b73afe1aec6b3198c5c4ae3a1a900e1610115879058ce034d6f6","tests/parse-fail/confusing-line-comment1.wat":"a2afbcab00ec957dfd9e9bf21fa4238852247b27f0b054f4a00f6b172dddf853","tests/parse-fail/confusing-line-comment1.wat.err":"f19a645e6fb5cbd7a0dd2308732741edcf83dbae0ef62549972029856a9e7fc6","tests/parse-fail/confusing-line-comment2.wat":"7f2a68229d02aac56ec4dfccf139bf2d617a0e89430357b30444dc4239d8aa89","tests/parse-fail/confusing-line-comment2.wat.err":"08add3d33e10e1ab6b4f3ae431f5db61d6f6c0a2b7d6828482a1e51b3a2d3851","tests/parse-fail/confusing-line-comment3.wat":"61173ae54782f6de86685f9555ffb94bbe2cf20b234daf660abb69ba3326f1ff","tests/parse-fail/confusing-line-comment3.wat.err":"4a5333dc02efa3c1eeab9cafa7c707f78abe92defdb01a71d6fe20944e4785f0","tests/parse-fail/confusing-line-comment4.wat":"9ecbbbe82c750e6475af1bfb46fe7a06115e4446a437d19fc08ca3d002f2a1c9","tests/parse-fail/confusing-line-comment4.wat.err":"ddb8aee8006265253b09c313cf5eb5c2dc4da66f502b4f6d3e2e1de77b35aec9","tests/parse-fail/confusing-line-comment5.wat":"8a4c8d342111bc9d37c16dbdf67c52027e1a42632abc9f359b3e4f07a85748b5","tests/parse-fail/confusing-line-comment5.wat.err":"34e368719fc0eab2f1a43c9f8e6f1b31aa9be9f971085d72374e49bde39cbfe5","tests/parse-fail/confusing-line-comment6.wat":"15f0dcdec23736ce92db84b3a7cdfe8689c97f2a7d0b9b0bfb0dcd2675163ed1","tests/parse-fail/confusing-line-comment6.wat.err":"0570be2ede803f071925d249f3858d3a417b5a6d678c9da40fc851d788d12983","tests/parse-fail/confusing-line-comment7.wat":"c7ee59301a701dd52d56cad02df78b0ad3584460bc18efa42ee137fe0c35aef6","tests/parse-fail/confusing-line-comment7.wat.err":"feebbeee8c85d8b3b85cec89435ae18f3ade9f754ca180d747a41406b64ca07a","tests/parse-fail/confusing-line-comment8.wat":"17632a8142154624de88b3cf93516147ed3419d785200bcd7049499eca8e8f04","tests/parse-fail/confusing-line-comment8.wat.err":"9c209285f2295cd2bc999aa7a9534a654932493308ab1f102839ed15a4d04d17","tests/parse-fail/confusing-string0.wat":"497b679b32baddcd6a158f4cadd3d9a9dea3457bac2a8c2c3d4e09b7c2d80842","tests/parse-fail/confusing-string0.wat.err":"cb3d737f2319346675a038716694354cd3b272453daa8a96e32e9861a9277f7b","tests/parse-fail/confusing-string1.wat":"46654cbed1ea6aab5019aef3d20098a391e40dacafa1ad5e83bf4ec384109fce","tests/parse-fail/confusing-string1.wat.err":"de7e7da516dc6c244bd0e4f012577b69f0cacbcc10f727fadb4b50bb04e0e2b4","tests/parse-fail/confusing-string2.wat":"11938f217c14387c05312735130f00c91d9df2d3ff9df7f13395e0f2b81dad54","tests/parse-fail/confusing-string2.wat.err":"e7bd08b146a855d681fefaf9e0576a9c333a2d10044f8e268b916b22a54227c9","tests/parse-fail/confusing-string3.wat":"e0ca4903fcafb9a54a91cf99e5eac95d25c6d2eb67b076f88191ad396f839cb6","tests/parse-fail/confusing-string3.wat.err":"b88d5db9e445c798eb24f95b7661b9c0368934d27ee8208477cd1c99351b939a","tests/parse-fail/confusing-string4.wat":"3ee2aee7f77604d051519c6f1795634469c12e98ae347a98f0c8445eecf1ff3d","tests/parse-fail/confusing-string4.wat.err":"1edc65bb09d8d3eed6ff69e7d9a7a4b5941dc823fa3436fa375657510255f6f4","tests/parse-fail/confusing-string5.wat":"024e50943128840d53f17e31a9b9332ce4f0ee70a847a043015f435b1c3c6e76","tests/parse-fail/confusing-string5.wat.err":"a0f13ec40d596ea2d8b0c4292b0d28775a5116ab7e11d7de88b295d25428c661","tests/parse-fail/confusing-string6.wat":"79cf157e29319800d2652c5a7f3dc90e07ebe2145c9904a70fc12027cdee84b7","tests/parse-fail/confusing-string6.wat.err":"860555e7aa13e3de3639cc2a530d6a42b974b629c4659593e972cbb0f306abae","tests/parse-fail/confusing-string7.wat":"7d8e403766dfb4e569754160d31ed0f9a27f908ed6cff96be43ab3d37f5975d5","tests/parse-fail/confusing-string7.wat.err":"658b6a02ba6d769254485f35c20984e7135d914b4266929963d723f26a40be4a","tests/parse-fail/confusing-string8.wat":"5a9b222e578655d57ee6e9f19bc1ea8e29aa52d652975fac685213444ed6458f","tests/parse-fail/confusing-string8.wat.err":"9a4e1a510330c800a1df7966998ebc3cde931eda20b249e5360f5e9a905dce11","tests/parse-fail/inline1.wat":"4e9767d67207aace2ac5e6f63a30e7510e4aa245ba35420539509e2254470272","tests/parse-fail/inline1.wat.err":"0143017a9825e518baa6009bae2c8d63520051dedd3437705bbe36b038a57f41","tests/parse-fail/newline-in-string.wat":"5c01cf709544ade0a6cdfcc39a3836a3bc018b633dc42a6cd872b6defc763ea7","tests/parse-fail/newline-in-string.wat.err":"1504209cc37a78b2aee778f23eacf78606daf964cf7bff251f5700efcd27ffd7","tests/parse-fail/string1.wat":"620d46d585ce94b382b5fde628c1399f3e562014b7a44af46e92f7bd045ca86e","tests/parse-fail/string1.wat.err":"fc53f3a1c4a65d8f25e5af51dec7699f45cecba114ca9c7871781bc70f664320","tests/parse-fail/string10.wat":"f7409dd45e153a1b11cb23e38f4ed87da12bedde38f8f0ccfe91037b0a4d97bd","tests/parse-fail/string10.wat.err":"ce677db5e37e0ed81ca357ed6b5edb21d85c27303ee194855bea7a88457efb6a","tests/parse-fail/string11.wat":"f6e0400b8c6a2014efa1ac676c567e140d8f86b5f4d5129773e6d67af537b615","tests/parse-fail/string11.wat.err":"4c6a550d29eda38a4e1bf7a589596f11655dc779479d7b8d466cfc53f815a742","tests/parse-fail/string12.wat":"23e30070eef22271651cce096a801fc4f79f3c37343c88bb8d2fc99b32d3b8b9","tests/parse-fail/string12.wat.err":"b5ec59f2996b88b2ee157e22d1774dc3e36fc08ed5bfc621aea830d30f66f586","tests/parse-fail/string13.wat":"81a305b981159ee10e140749ea3220c9edaaff53605e63c21995de47382b5faf","tests/parse-fail/string13.wat.err":"959f26c6b54e0d367b51d11d1addd8a53b5b8ff3caf70ebdd46bbea8ccfa2418","tests/parse-fail/string14.wat":"c45c2cc9f7afbfbd4be8e513106d22f7e5e817091448576c6bdf0701b81d95dd","tests/parse-fail/string14.wat.err":"50b5bccba905ddbe275938edb7ed0b09a5ca53dcdad36a7ff736ce9bc8e7a338","tests/parse-fail/string15.wat":"b5e0d5ade40de53b2d767a132e28376bb8c7a6f6238c4d8c248ae717c41d7f1f","tests/parse-fail/string15.wat.err":"0e9fc502cc90f96d1f592a3f63369fd2a3574bc4a2345a70365dbb76804e870f","tests/parse-fail/string16.wat":"38c3688cee80a9d089d239aa06eb1d27c5364ad2bd270aca57d05997c20aa682","tests/parse-fail/string16.wat.err":"4274b3bbe4df4cf0373619b1fcd082d0c802990817d2aca26ed885168c80e489","tests/parse-fail/string2.wat":"1172964aed31537b8c466d1f045f3e756926e7b221f80b2aff4a9a6721ea0beb","tests/parse-fail/string2.wat.err":"4618d3b20a78a077337eb5d6cae14ac39d9853762f011fbd23cff8921618dbde","tests/parse-fail/string3.wat":"07e0fbcd6270c1db100917c151ee4ac3f935e4ee1b27bce3c453b22b4b74f4d6","tests/parse-fail/string3.wat.err":"08ffc6158a9e030b2e211d53bdb8aeacfd879815c7b284d6a83b030566e35928","tests/parse-fail/string4.wat":"c970da2051b0613bdd1de4664f10424e14f2ebabe604175d4fb9b763b37af577","tests/parse-fail/string4.wat.err":"406706594d305c560fabd66417ad4fc276939990b5e701bd9d13fc223d207219","tests/parse-fail/string5.wat":"386cf314bb05acdaaabdf4da1caf140167271a26bd08bf34c3a7427d4bc4431f","tests/parse-fail/string5.wat.err":"1e56b44a23a37b2b2ad05aa9dd7e1e18191b5cc22151f93bbcf9d618779a57bd","tests/parse-fail/string6.wat":"8f1fe2825ff96f2acee9130a7721f86fcc93c221baa9411bf1fb6f0870d38ccb","tests/parse-fail/string6.wat.err":"d55dfd84d94e893f167ae73b7a080aefb2bfb05cc8a1ec201c4d3066fb8549b4","tests/parse-fail/string7.wat":"b12f8c75313d7f834489d3c353422f90bc945b37139586446eda82e334a97cde","tests/parse-fail/string7.wat.err":"4cee0ca61992c249dd0faaf2529a073cf8deeb36111a3f69b43695e5682560a2","tests/parse-fail/string8.wat":"4c2e0e1f883bb4e8cba9313497ed792130e5848e62bde7716102788d7467be10","tests/parse-fail/string8.wat.err":"840c6def7c60dd7c2b7261549cab435ba78c9b3a937adf6d5d9595ff8af01c91","tests/parse-fail/string9.wat":"2b7670caed2b0688d535de6e4e416f35fa717cfbe096a6cc764a669085c8f52f","tests/parse-fail/string9.wat.err":"37b5a9c3af9631500f31f9e5e3efa821b8d96063c57d60fd01df6be6a5c323e1","tests/parse-fail/unbalanced.wat":"f664fbef53a0308f864ba496d38044eb90482636e32586512939d4930729f3fe","tests/parse-fail/unbalanced.wat.err":"aba579f7b836856e69afe05da8328aabe0643d94e369898e686aa7bb0b07e9c9","tests/recursive.rs":"ad8a2b07bf955121a7c9e326ed35f9b2bc56b440c8cc0bbde24d423a79945c1a"},"package":"93cb43b0ac6dd156f2c375735ccfd72b012a7c0a6e6d09503499b8d3cb6e6072"}
|
1
|
+
{"files":{"Cargo.toml":"bf901f53582577936cb2bc554aa6146fbe5aec8c677f5a39f57cf434d3412a9d","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","README.md":"5a0d2b894a3ac74ee2be74715a2f22c40a08520cb4ac59183f4e7356f34ac566","src/component.rs":"23a62f4f2774ccfaf60f68e9d9416e68ba203eea782ce0c39cf553ad293f1df4","src/component/alias.rs":"5ec26333e179dc3778dead489f1273815fe9c1c808ba6a7e60eff54072fad795","src/component/binary.rs":"02b07602dc755fd5cec95b6348dd919c75f368c16a81402072201cf911be5f0d","src/component/component.rs":"b23f62918bd302fd96636438c2a877fa91a5ea0c70d2c62f16528d16b1ffff9d","src/component/custom.rs":"f5b23c34b73a716a986fd999fc8d8c9e24c341e83292088fe83325cd82dab4f5","src/component/expand.rs":"71b2e23f50957b4a15d758df7f8651fdbaf5cf8f44fbfeb134b412318dbd8921","src/component/export.rs":"f51e824c839d8bb0884eca509622f376c8cce3335be324b2b25033af6216fd2a","src/component/func.rs":"4f69de6c38cc6fe77b638ed7d8000c8a170d7053a11a6585dcd5b4877a06804c","src/component/import.rs":"ffe6e4ab8f2cec68b1022c753135d675ab27ecd1315bd38517472ceaffd0610c","src/component/instance.rs":"e550a7ee9af092ae084dd41e2c0ae756b7dca8da4b91d672d90265a6a15dff83","src/component/item_ref.rs":"e9c426ccc0210dc0c37bb0448468f5f4d9e52656b72d4ff0f2dc65c89957fe60","src/component/module.rs":"d27a28199d1dea1c64294a514329a524432319288515b0a0e3091fa7d3a33f74","src/component/resolve.rs":"4bc58161f3e38499cf0d7fddcbaec875579e8c48e0f347f1c820db21b8aa2d86","src/component/types.rs":"c854a2df9613145c38720d41cda571d0d01408fc09789bd22740874628cbff99","src/component/wast.rs":"36f9440618be7755db0a2994e5ff14187392c25543cdde2069e4c69111a7f490","src/core.rs":"24b71d1ab2ad874c4e37b4dd709b6532989b60e6bc503194434f95029cc1cda7","src/core/binary.rs":"71f4e4925d18ae0063e5fb133e3f58e21001921d3db85384559f901b8ca387c6","src/core/custom.rs":"398229bf37e96f844229f6f9c4ac0628628a79745cf6c5ea8024ec5e2358bca1","src/core/export.rs":"1322a120d9e1dd6f3aa1485ee0bbc4294961028ae8a7584a24170af5823b73b1","src/core/expr.rs":"96cd994fb0190de718e9ecf586a143ee0be6478a58d1af7fc6918ab895345f8c","src/core/func.rs":"f87239645e45b7e40ecf7f8f2b707a7cfc0620cd2632cfdaca3cb155a06da732","src/core/global.rs":"dec0abecadd2fde9298acb729259deba1ef3c4733ae5afcb4fe8cd4a633f5349","src/core/import.rs":"602a13aed2fd5fa63e2562246586546199861df57f304c2906561ab77810cadd","src/core/memory.rs":"2dc551899837d351975c6453425085ebaf4076c1f135cb1654ed8fdabb3fb695","src/core/module.rs":"0bfe00432ea192d2392d7f3f21d173781c39c353081f868632bad89df0b71405","src/core/resolve/deinline_import_export.rs":"b04b953baa68290aabcfe776ef97ef4080c42614f04671ef84ae53a626fb3d4f","src/core/resolve/mod.rs":"9b2680b00a1cafad2dbbfdac86aa1c135ea67203bbc4dee939302b27f4aff6d0","src/core/resolve/names.rs":"c2ef1bb5dc2da8206481ca0ad356beef01355323b1bdff339381654da6ef79a2","src/core/resolve/types.rs":"ff34eed438539cd88ea6c2c51e49ed42eee0d8be566d40c799254bf08125cfa8","src/core/table.rs":"1be354d0040a1b29903b717baa7b87c1e17ac3bcfa16b1fe1ef386067e687a29","src/core/tag.rs":"8a3d4fcdb86dedd68cdaf25abd930ef52a461cf2a0e9393bb9cb6f425afaaf2e","src/core/types.rs":"b00ba78620dcdd9d263ccdfcba8919bff45e8af83d188284f9ae97e4f7d71045","src/core/wast.rs":"a7307f93fb20274f0c99952deeefb51c28d4afe017702ee75d96324285346442","src/encode.rs":"0b165176db54fb9136202c54180adabda843a88e5436b96c19be9d41623912a3","src/error.rs":"4526260299c7983696a49ffe30a80139beb0d081fa8f42decc5e3283b361b1cb","src/gensym.rs":"b5e02e34443085f01deb5b657e541be7dc5d6dc952304e434a0b08320ea6c185","src/lexer.rs":"24667777c1f20277582e6d506c1331b4f50080120144c6eb6d2f09251ecc9628","src/lib.rs":"1347cd37c19069c0d45ddc46e7cd0321f6078b5b872eb4a911ea0e7cd646b4bf","src/names.rs":"1c255befcc524ba6eab069b678e54f45263e670b7c929433d145c29b79a1f725","src/parser.rs":"33f2e25c31412ab862a03e718ce48b62d85117ae2a58d6fae0a72482dfde9756","src/token.rs":"69df5b797687b92d820d6e682a53769d031a5e1c1f168b35c3eaf830624c4364","src/wast.rs":"af6e208c2a37028461a6ad9101967fbfa5c7fc343fe5eb6ecad54f948c74e15d","src/wat.rs":"b353622be42b9a1dc789b55a5a93d2de7c4b48f2d61c6a156e4a51701dc08f2d","tests/annotations.rs":"06294077550600f93a5a8c0d7e3ac38b47f00bb8933f9dc390ff31868e873afb","tests/comments.rs":"694e8a3467e9c837f723a43c729be0c6f6dfe3441ad9692759b1d55fd63055a2","tests/parse-fail.rs":"0f1d5dffd1e6145105571222096703c89c4f4a46e25c848faa730f731155ea1c","tests/parse-fail/bad-core-func-alias.wat":"b71372064c3fce9d4a616418605040fe5e1356030a709b798b4769d3619cbbfb","tests/parse-fail/bad-core-func-alias.wat.err":"bb63274c26d3a21209bad794767f48372834bdc10cfbebf568a0c65d52803c90","tests/parse-fail/bad-func-alias.wat":"237c07149e1e74afe3b991a1fee6acb63167c1ca8931341614c435000339b887","tests/parse-fail/bad-func-alias.wat.err":"4a4bfc691b06d20fdf71e1dbac04649a52c76787048415599978987d761308fa","tests/parse-fail/bad-index.wat":"d21489daeec3a35327dcc9e2ba2d0acdd05f4aeaff2272cca608fda4d2338497","tests/parse-fail/bad-index.wat.err":"dc11070de0c9160573006ea4e5fa3c4d28e71bc39b24b1938cf6ff3b03ea7154","tests/parse-fail/bad-name.wat":"e5ff5d410007779a0de6609ea4cc693f0e603d36a106b8f5098c1980dd9f8124","tests/parse-fail/bad-name.wat.err":"fb5638476c1b85d9d1919e3dbcb0f16f82d088a4a22d4a0c186d7b8ba6e1902b","tests/parse-fail/bad-name2.wat":"5a6a4d0c19e5f2e48d7cebf361aca9b9000b7ef0c652997b5bd0ffaadbd2ca8a","tests/parse-fail/bad-name2.wat.err":"129707cce45f1e3cfb3e2ca5c702182e16ca5eeb2dbb2edd0710b004a8e194a5","tests/parse-fail/bad-name3.wat":"c19133d738cc84e9174301f27d4050c216bda81c7e9918d03ac792b088f24a05","tests/parse-fail/bad-name3.wat.err":"84ea63d40a619a0782ec6e94fce63921188ab87b1c3875eacae0a371144ed83a","tests/parse-fail/block1.wat":"91e74b5c3b43be692e7a6ae74fbfa674c4b6197299eb61338c4eccf282b18f17","tests/parse-fail/block1.wat.err":"40a083ae496b41dee7002cc6a664c5db0c5e4d904ae03b815773a769c4493fca","tests/parse-fail/block2.wat":"a8c07b4c09d51f10a8ffdf19806586022552398701cd90eb6d09816d45df06e5","tests/parse-fail/block2.wat.err":"33c842ec5dd0f2fdd3a9ce8187dd98b45ceee48c12810802af809d05b9cd25e9","tests/parse-fail/block3.wat":"29739abfbabd7c55f00ddfbbb9ebd818b4a114ef2336d50514f0842f7e075905","tests/parse-fail/block3.wat.err":"fc667ae2e71a260f62a3c7393bc97272e7c0ff38b17594f4370847b8a5019060","tests/parse-fail/confusing-block-comment0.wat":"8f27c9d0d212bbb1862ea89ffd7cbeafde5dfd755d695c1ba696cd520aba1a1d","tests/parse-fail/confusing-block-comment0.wat.err":"b53cbaef7bcec3862c64e09c084b92cd61bd29b954125482b2d083db250cd9e2","tests/parse-fail/confusing-block-comment1.wat":"b1a0447c9a8eaab8938d15cd33bd4adbb8bb69c2d710209b604023991a4347cb","tests/parse-fail/confusing-block-comment1.wat.err":"2fc3b3e4f98416326e1e5ec034026301069b6a98fa24451bc7573e16b8cb3811","tests/parse-fail/confusing-block-comment2.wat":"e3f49c7a388fba81081beb25d87bbd7db0acce5dd8e3eaa04574905ed7ec420c","tests/parse-fail/confusing-block-comment2.wat.err":"2183231d6acd0b5a117f9aea747c3d5c12e758450a6cd74027bb954a3134cf19","tests/parse-fail/confusing-block-comment3.wat":"d83f89c582501eb8833e772b8462c8974984a2f7fbb80b1452dc399fac74e5ed","tests/parse-fail/confusing-block-comment3.wat.err":"8b2096a4833627905c63f49cdabe44be24336646578dcfbdc67e9bfb35cbc601","tests/parse-fail/confusing-block-comment4.wat":"b7c6c68844d918e9ef6dd5ab9c40c7de7b38f04f94fadad630eda4e596f3e0f8","tests/parse-fail/confusing-block-comment4.wat.err":"2f790cc511edfcd89a12c9207901be16039fc1a06a584d73095e77a52f861cd9","tests/parse-fail/confusing-block-comment5.wat":"a159808032638cc914fa80ac4354a68b0af4f435a09cbe3e2d577582e183eb0a","tests/parse-fail/confusing-block-comment5.wat.err":"6fe0d99894307442f83fe93beaa5da706e06c9bdaf8e39d7cbae4c4fffafcb94","tests/parse-fail/confusing-block-comment6.wat":"abe48bcba2587dca98bc80ddde4e813f94fbc8a3538704a0775ea85bca0f8466","tests/parse-fail/confusing-block-comment6.wat.err":"3c97b9bf1112bbb7335d7fe4be5befb6f91eea7bec7dd3e6b543792231003c56","tests/parse-fail/confusing-block-comment7.wat":"e125c416ea5fa0ac35a58295a83a6f345438e2d7ddc6a39bd76c8e89885b3f0e","tests/parse-fail/confusing-block-comment7.wat.err":"5c34528ff2019cd3f0b3df34fd42523c0b66120706321da2c88ec05793478d2e","tests/parse-fail/confusing-block-comment8.wat":"200cc4c0e5af21a25529d7a81633a03642cff807255d6cd72eb45cdccc605cec","tests/parse-fail/confusing-block-comment8.wat.err":"9b81237d150a784b71791eee88fb6264a8bd6412862660f7392945203809e517","tests/parse-fail/confusing-line-comment0.wat":"bcec4c5a1e52b3e392e07c6711c979aa8d7db8baaf2bcdf270ba16d1aa528d26","tests/parse-fail/confusing-line-comment0.wat.err":"41ec5a075dc6b73afe1aec6b3198c5c4ae3a1a900e1610115879058ce034d6f6","tests/parse-fail/confusing-line-comment1.wat":"a2afbcab00ec957dfd9e9bf21fa4238852247b27f0b054f4a00f6b172dddf853","tests/parse-fail/confusing-line-comment1.wat.err":"f19a645e6fb5cbd7a0dd2308732741edcf83dbae0ef62549972029856a9e7fc6","tests/parse-fail/confusing-line-comment2.wat":"7f2a68229d02aac56ec4dfccf139bf2d617a0e89430357b30444dc4239d8aa89","tests/parse-fail/confusing-line-comment2.wat.err":"08add3d33e10e1ab6b4f3ae431f5db61d6f6c0a2b7d6828482a1e51b3a2d3851","tests/parse-fail/confusing-line-comment3.wat":"61173ae54782f6de86685f9555ffb94bbe2cf20b234daf660abb69ba3326f1ff","tests/parse-fail/confusing-line-comment3.wat.err":"4a5333dc02efa3c1eeab9cafa7c707f78abe92defdb01a71d6fe20944e4785f0","tests/parse-fail/confusing-line-comment4.wat":"9ecbbbe82c750e6475af1bfb46fe7a06115e4446a437d19fc08ca3d002f2a1c9","tests/parse-fail/confusing-line-comment4.wat.err":"ddb8aee8006265253b09c313cf5eb5c2dc4da66f502b4f6d3e2e1de77b35aec9","tests/parse-fail/confusing-line-comment5.wat":"8a4c8d342111bc9d37c16dbdf67c52027e1a42632abc9f359b3e4f07a85748b5","tests/parse-fail/confusing-line-comment5.wat.err":"34e368719fc0eab2f1a43c9f8e6f1b31aa9be9f971085d72374e49bde39cbfe5","tests/parse-fail/confusing-line-comment6.wat":"15f0dcdec23736ce92db84b3a7cdfe8689c97f2a7d0b9b0bfb0dcd2675163ed1","tests/parse-fail/confusing-line-comment6.wat.err":"0570be2ede803f071925d249f3858d3a417b5a6d678c9da40fc851d788d12983","tests/parse-fail/confusing-line-comment7.wat":"c7ee59301a701dd52d56cad02df78b0ad3584460bc18efa42ee137fe0c35aef6","tests/parse-fail/confusing-line-comment7.wat.err":"feebbeee8c85d8b3b85cec89435ae18f3ade9f754ca180d747a41406b64ca07a","tests/parse-fail/confusing-line-comment8.wat":"17632a8142154624de88b3cf93516147ed3419d785200bcd7049499eca8e8f04","tests/parse-fail/confusing-line-comment8.wat.err":"9c209285f2295cd2bc999aa7a9534a654932493308ab1f102839ed15a4d04d17","tests/parse-fail/confusing-string0.wat":"497b679b32baddcd6a158f4cadd3d9a9dea3457bac2a8c2c3d4e09b7c2d80842","tests/parse-fail/confusing-string0.wat.err":"cb3d737f2319346675a038716694354cd3b272453daa8a96e32e9861a9277f7b","tests/parse-fail/confusing-string1.wat":"46654cbed1ea6aab5019aef3d20098a391e40dacafa1ad5e83bf4ec384109fce","tests/parse-fail/confusing-string1.wat.err":"de7e7da516dc6c244bd0e4f012577b69f0cacbcc10f727fadb4b50bb04e0e2b4","tests/parse-fail/confusing-string2.wat":"11938f217c14387c05312735130f00c91d9df2d3ff9df7f13395e0f2b81dad54","tests/parse-fail/confusing-string2.wat.err":"e7bd08b146a855d681fefaf9e0576a9c333a2d10044f8e268b916b22a54227c9","tests/parse-fail/confusing-string3.wat":"e0ca4903fcafb9a54a91cf99e5eac95d25c6d2eb67b076f88191ad396f839cb6","tests/parse-fail/confusing-string3.wat.err":"b88d5db9e445c798eb24f95b7661b9c0368934d27ee8208477cd1c99351b939a","tests/parse-fail/confusing-string4.wat":"3ee2aee7f77604d051519c6f1795634469c12e98ae347a98f0c8445eecf1ff3d","tests/parse-fail/confusing-string4.wat.err":"1edc65bb09d8d3eed6ff69e7d9a7a4b5941dc823fa3436fa375657510255f6f4","tests/parse-fail/confusing-string5.wat":"024e50943128840d53f17e31a9b9332ce4f0ee70a847a043015f435b1c3c6e76","tests/parse-fail/confusing-string5.wat.err":"a0f13ec40d596ea2d8b0c4292b0d28775a5116ab7e11d7de88b295d25428c661","tests/parse-fail/confusing-string6.wat":"79cf157e29319800d2652c5a7f3dc90e07ebe2145c9904a70fc12027cdee84b7","tests/parse-fail/confusing-string6.wat.err":"860555e7aa13e3de3639cc2a530d6a42b974b629c4659593e972cbb0f306abae","tests/parse-fail/confusing-string7.wat":"7d8e403766dfb4e569754160d31ed0f9a27f908ed6cff96be43ab3d37f5975d5","tests/parse-fail/confusing-string7.wat.err":"658b6a02ba6d769254485f35c20984e7135d914b4266929963d723f26a40be4a","tests/parse-fail/confusing-string8.wat":"5a9b222e578655d57ee6e9f19bc1ea8e29aa52d652975fac685213444ed6458f","tests/parse-fail/confusing-string8.wat.err":"9a4e1a510330c800a1df7966998ebc3cde931eda20b249e5360f5e9a905dce11","tests/parse-fail/inline1.wat":"4e9767d67207aace2ac5e6f63a30e7510e4aa245ba35420539509e2254470272","tests/parse-fail/inline1.wat.err":"0143017a9825e518baa6009bae2c8d63520051dedd3437705bbe36b038a57f41","tests/parse-fail/newline-in-string.wat":"5c01cf709544ade0a6cdfcc39a3836a3bc018b633dc42a6cd872b6defc763ea7","tests/parse-fail/newline-in-string.wat.err":"1504209cc37a78b2aee778f23eacf78606daf964cf7bff251f5700efcd27ffd7","tests/parse-fail/string1.wat":"620d46d585ce94b382b5fde628c1399f3e562014b7a44af46e92f7bd045ca86e","tests/parse-fail/string1.wat.err":"fc53f3a1c4a65d8f25e5af51dec7699f45cecba114ca9c7871781bc70f664320","tests/parse-fail/string10.wat":"f7409dd45e153a1b11cb23e38f4ed87da12bedde38f8f0ccfe91037b0a4d97bd","tests/parse-fail/string10.wat.err":"ce677db5e37e0ed81ca357ed6b5edb21d85c27303ee194855bea7a88457efb6a","tests/parse-fail/string11.wat":"f6e0400b8c6a2014efa1ac676c567e140d8f86b5f4d5129773e6d67af537b615","tests/parse-fail/string11.wat.err":"4c6a550d29eda38a4e1bf7a589596f11655dc779479d7b8d466cfc53f815a742","tests/parse-fail/string12.wat":"23e30070eef22271651cce096a801fc4f79f3c37343c88bb8d2fc99b32d3b8b9","tests/parse-fail/string12.wat.err":"b5ec59f2996b88b2ee157e22d1774dc3e36fc08ed5bfc621aea830d30f66f586","tests/parse-fail/string13.wat":"81a305b981159ee10e140749ea3220c9edaaff53605e63c21995de47382b5faf","tests/parse-fail/string13.wat.err":"959f26c6b54e0d367b51d11d1addd8a53b5b8ff3caf70ebdd46bbea8ccfa2418","tests/parse-fail/string14.wat":"c45c2cc9f7afbfbd4be8e513106d22f7e5e817091448576c6bdf0701b81d95dd","tests/parse-fail/string14.wat.err":"50b5bccba905ddbe275938edb7ed0b09a5ca53dcdad36a7ff736ce9bc8e7a338","tests/parse-fail/string15.wat":"b5e0d5ade40de53b2d767a132e28376bb8c7a6f6238c4d8c248ae717c41d7f1f","tests/parse-fail/string15.wat.err":"0e9fc502cc90f96d1f592a3f63369fd2a3574bc4a2345a70365dbb76804e870f","tests/parse-fail/string16.wat":"38c3688cee80a9d089d239aa06eb1d27c5364ad2bd270aca57d05997c20aa682","tests/parse-fail/string16.wat.err":"4274b3bbe4df4cf0373619b1fcd082d0c802990817d2aca26ed885168c80e489","tests/parse-fail/string2.wat":"1172964aed31537b8c466d1f045f3e756926e7b221f80b2aff4a9a6721ea0beb","tests/parse-fail/string2.wat.err":"4618d3b20a78a077337eb5d6cae14ac39d9853762f011fbd23cff8921618dbde","tests/parse-fail/string3.wat":"07e0fbcd6270c1db100917c151ee4ac3f935e4ee1b27bce3c453b22b4b74f4d6","tests/parse-fail/string3.wat.err":"08ffc6158a9e030b2e211d53bdb8aeacfd879815c7b284d6a83b030566e35928","tests/parse-fail/string4.wat":"c970da2051b0613bdd1de4664f10424e14f2ebabe604175d4fb9b763b37af577","tests/parse-fail/string4.wat.err":"406706594d305c560fabd66417ad4fc276939990b5e701bd9d13fc223d207219","tests/parse-fail/string5.wat":"386cf314bb05acdaaabdf4da1caf140167271a26bd08bf34c3a7427d4bc4431f","tests/parse-fail/string5.wat.err":"1e56b44a23a37b2b2ad05aa9dd7e1e18191b5cc22151f93bbcf9d618779a57bd","tests/parse-fail/string6.wat":"8f1fe2825ff96f2acee9130a7721f86fcc93c221baa9411bf1fb6f0870d38ccb","tests/parse-fail/string6.wat.err":"d55dfd84d94e893f167ae73b7a080aefb2bfb05cc8a1ec201c4d3066fb8549b4","tests/parse-fail/string7.wat":"b12f8c75313d7f834489d3c353422f90bc945b37139586446eda82e334a97cde","tests/parse-fail/string7.wat.err":"4cee0ca61992c249dd0faaf2529a073cf8deeb36111a3f69b43695e5682560a2","tests/parse-fail/string8.wat":"4c2e0e1f883bb4e8cba9313497ed792130e5848e62bde7716102788d7467be10","tests/parse-fail/string8.wat.err":"840c6def7c60dd7c2b7261549cab435ba78c9b3a937adf6d5d9595ff8af01c91","tests/parse-fail/string9.wat":"2b7670caed2b0688d535de6e4e416f35fa717cfbe096a6cc764a669085c8f52f","tests/parse-fail/string9.wat.err":"37b5a9c3af9631500f31f9e5e3efa821b8d96063c57d60fd01df6be6a5c323e1","tests/parse-fail/unbalanced.wat":"f664fbef53a0308f864ba496d38044eb90482636e32586512939d4930729f3fe","tests/parse-fail/unbalanced.wat.err":"aba579f7b836856e69afe05da8328aabe0643d94e369898e686aa7bb0b07e9c9","tests/recursive.rs":"ad8a2b07bf955121a7c9e326ed35f9b2bc56b440c8cc0bbde24d423a79945c1a"},"package":"a974d82fac092b5227c1663e16514e7a85f32014e22e6fdcb08b71aec9d3fb1e"}
|
@@ -12,7 +12,7 @@
|
|
12
12
|
[package]
|
13
13
|
edition = "2021"
|
14
14
|
name = "wast"
|
15
|
-
version = "
|
15
|
+
version = "67.0.1"
|
16
16
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
17
17
|
description = """
|
18
18
|
Customizable Rust parsers for the WebAssembly Text formats WAT and WAST
|
@@ -37,7 +37,7 @@ version = "2.4.1"
|
|
37
37
|
version = "0.1.9"
|
38
38
|
|
39
39
|
[dependencies.wasm-encoder]
|
40
|
-
version = "0.
|
40
|
+
version = "0.36.2"
|
41
41
|
|
42
42
|
[dev-dependencies.anyhow]
|
43
43
|
version = "1.0.58"
|
@@ -274,7 +274,7 @@ impl<'a> Encoder<'a> {
|
|
274
274
|
InstanceKind::BundleOfExports(exports) => {
|
275
275
|
self.instances.export_items(exports.iter().map(|e| {
|
276
276
|
let (kind, index) = (&e.kind).into();
|
277
|
-
(e.name.
|
277
|
+
(e.name.0, kind, index)
|
278
278
|
}));
|
279
279
|
}
|
280
280
|
}
|
@@ -353,10 +353,8 @@ impl<'a> Encoder<'a> {
|
|
353
353
|
fn encode_import(&mut self, import: &ComponentImport<'a>) {
|
354
354
|
let name = get_name(&import.item.id, &import.item.name);
|
355
355
|
self.names_for_item_kind(&import.item.kind).push(name);
|
356
|
-
self.imports
|
357
|
-
|
358
|
-
(&import.item.kind).into(),
|
359
|
-
);
|
356
|
+
self.imports
|
357
|
+
.import(import.name.0, (&import.item.kind).into());
|
360
358
|
self.flush(Some(self.imports.id()));
|
361
359
|
}
|
362
360
|
|
@@ -364,7 +362,7 @@ impl<'a> Encoder<'a> {
|
|
364
362
|
let name = get_name(&export.id, &export.debug_name);
|
365
363
|
let (kind, index) = (&export.kind).into();
|
366
364
|
self.exports.export(
|
367
|
-
|
365
|
+
export.name.0,
|
368
366
|
kind,
|
369
367
|
index,
|
370
368
|
export.ty.as_ref().map(|ty| (&ty.0.kind).into()),
|
@@ -602,8 +600,8 @@ impl From<core::HeapType<'_>> for wasm_encoder::HeapType {
|
|
602
600
|
core::HeapType::Exn => {
|
603
601
|
todo!("encoding of exceptions proposal types not yet implemented")
|
604
602
|
}
|
605
|
-
core::HeapType::
|
606
|
-
core::HeapType::
|
603
|
+
core::HeapType::Concrete(Index::Num(i, _)) => Self::Concrete(i),
|
604
|
+
core::HeapType::Concrete(_) => panic!("unresolved index"),
|
607
605
|
core::HeapType::Any
|
608
606
|
| core::HeapType::Eq
|
609
607
|
| core::HeapType::Struct
|
@@ -833,16 +831,10 @@ impl From<&ComponentType<'_>> for wasm_encoder::ComponentType {
|
|
833
831
|
encoded.alias((&a.target).into());
|
834
832
|
}
|
835
833
|
ComponentTypeDecl::Import(i) => {
|
836
|
-
encoded.import(
|
837
|
-
wasm_encoder::ComponentExternName::from(i.name),
|
838
|
-
(&i.item.kind).into(),
|
839
|
-
);
|
834
|
+
encoded.import(i.name.0, (&i.item.kind).into());
|
840
835
|
}
|
841
836
|
ComponentTypeDecl::Export(e) => {
|
842
|
-
encoded.export(
|
843
|
-
wasm_encoder::ComponentExternName::from(e.name),
|
844
|
-
(&e.item.kind).into(),
|
845
|
-
);
|
837
|
+
encoded.export(e.name.0, (&e.item.kind).into());
|
846
838
|
}
|
847
839
|
}
|
848
840
|
}
|
@@ -867,10 +859,7 @@ impl From<&InstanceType<'_>> for wasm_encoder::InstanceType {
|
|
867
859
|
encoded.alias((&a.target).into());
|
868
860
|
}
|
869
861
|
InstanceTypeDecl::Export(e) => {
|
870
|
-
encoded.export(
|
871
|
-
wasm_encoder::ComponentExternName::from(e.name),
|
872
|
-
(&e.item.kind).into(),
|
873
|
-
);
|
862
|
+
encoded.export(e.name.0, (&e.item.kind).into());
|
874
863
|
}
|
875
864
|
}
|
876
865
|
}
|
@@ -1013,12 +1002,3 @@ impl<'a> From<&AliasTarget<'a>> for wasm_encoder::Alias<'a> {
|
|
1013
1002
|
}
|
1014
1003
|
}
|
1015
1004
|
}
|
1016
|
-
|
1017
|
-
impl<'a> From<ComponentExternName<'a>> for wasm_encoder::ComponentExternName<'a> {
|
1018
|
-
fn from(name: ComponentExternName<'a>) -> Self {
|
1019
|
-
match name {
|
1020
|
-
ComponentExternName::Kebab(name) => Self::Kebab(name),
|
1021
|
-
ComponentExternName::Interface(name) => Self::Interface(name),
|
1022
|
-
}
|
1023
|
-
}
|
1024
|
-
}
|
@@ -25,23 +25,25 @@ impl<'a> Parse<'a> for ComponentImport<'a> {
|
|
25
25
|
|
26
26
|
/// The different ways an import can be named.
|
27
27
|
#[derive(Debug, Copy, Clone)]
|
28
|
-
pub
|
29
|
-
/// This is a kebab-named import where a top-level name is assigned.
|
30
|
-
Kebab(&'a str),
|
31
|
-
/// This is an interface import where the string is an ID.
|
32
|
-
Interface(&'a str),
|
33
|
-
}
|
28
|
+
pub struct ComponentExternName<'a>(pub &'a str);
|
34
29
|
|
35
30
|
impl<'a> Parse<'a> for ComponentExternName<'a> {
|
36
31
|
fn parse(parser: Parser<'a>) -> Result<Self> {
|
37
|
-
|
38
|
-
|
32
|
+
// Prior to WebAssembly/component-model#263 the syntactic form
|
33
|
+
// `(interface "...")` was supported for interface names. This is no
|
34
|
+
// longer part of the syntax of the binary format nor the text format,
|
35
|
+
// but continue to parse this as "sugar" for the current format. This
|
36
|
+
// is intended to avoid breaking folks and provide a smoother transition
|
37
|
+
// forward.
|
38
|
+
let name = if parser.peek::<LParen>()? {
|
39
|
+
parser.parens(|p| {
|
39
40
|
p.parse::<kw::interface>()?;
|
40
41
|
p.parse()
|
41
|
-
})?
|
42
|
+
})?
|
42
43
|
} else {
|
43
|
-
|
44
|
-
}
|
44
|
+
parser.parse()?
|
45
|
+
};
|
46
|
+
Ok(ComponentExternName(name))
|
45
47
|
}
|
46
48
|
}
|
47
49
|
|
@@ -257,8 +257,8 @@ impl<'a> Encode for HeapType<'a> {
|
|
257
257
|
HeapType::None => e.push(0x71),
|
258
258
|
// Note that this is encoded as a signed leb128 so be sure to cast
|
259
259
|
// to an i64 first
|
260
|
-
HeapType::
|
261
|
-
HeapType::
|
260
|
+
HeapType::Concrete(Index::Num(n, _)) => i64::from(*n).encode(e),
|
261
|
+
HeapType::Concrete(Index::Id(n)) => {
|
262
262
|
panic!("unresolved index in emission: {:?}", n)
|
263
263
|
}
|
264
264
|
}
|
@@ -86,9 +86,9 @@ pub enum HeapType<'a> {
|
|
86
86
|
NoExtern,
|
87
87
|
/// The bottom type of the anyref hierarchy. Part of the GC proposal.
|
88
88
|
None,
|
89
|
-
/// A reference to a function, struct, or array
|
90
|
-
/// GC
|
91
|
-
|
89
|
+
/// A reference to a concrete function, struct, or array type defined by
|
90
|
+
/// Wasm: `ref T`. This is part of the function references and GC proposals.
|
91
|
+
Concrete(Index<'a>),
|
92
92
|
}
|
93
93
|
|
94
94
|
impl<'a> Parse<'a> for HeapType<'a> {
|
@@ -128,7 +128,7 @@ impl<'a> Parse<'a> for HeapType<'a> {
|
|
128
128
|
parser.parse::<kw::none>()?;
|
129
129
|
Ok(HeapType::None)
|
130
130
|
} else if l.peek::<Index>()? {
|
131
|
-
Ok(HeapType::
|
131
|
+
Ok(HeapType::Concrete(parser.parse()?))
|
132
132
|
} else {
|
133
133
|
Err(l.error())
|
134
134
|
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"files":{"Cargo.toml":"2db51a24b4e301beaca0da018eb170461af9bf333b14856c0f4d0b33d1f480c4","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","README.md":"e3b0392305a38f5576d85611a17c84917ac9508adfa41693c895f65b6240d257","src/lib.rs":"359f2052c7da433a49257c76761f182cfd6e71dc69e1a094a80cebb905f8760a"},"package":"adb220934f92f8551144c0003d1bc57a060674c99139f45ed623fbbf6d9262e7"}
|
@@ -12,7 +12,7 @@
|
|
12
12
|
[package]
|
13
13
|
edition = "2021"
|
14
14
|
name = "wat"
|
15
|
-
version = "1.0.
|
15
|
+
version = "1.0.79"
|
16
16
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
17
17
|
description = """
|
18
18
|
Rust parser for the WebAssembly Text format, WAT
|
@@ -24,4 +24,4 @@ license = "Apache-2.0 WITH LLVM-exception"
|
|
24
24
|
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wat"
|
25
25
|
|
26
26
|
[dependencies.wast]
|
27
|
-
version = "
|
27
|
+
version = "67.0.1"
|
@@ -1 +1 @@
|
|
1
|
-
{"files":{"Cargo.toml":"
|
1
|
+
{"files":{"Cargo.toml":"c07019078fe4b871f1df8bb646da83c6afe7b4824c1a69a9ec64d0c3acbde0bf","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","README.md":"21422dca0d2d4fd0e55a8cb795e26fc5ba1d6ca84c309c8d7f2344b1b47bdf17","src/borrow.rs":"e333dd895b9f286c5e672539548b1bf245b9efd69b78f5451b1cde5766553fe2","src/error.rs":"deb6a444431fe40eef837b5db8f4f5fa82ef8a03bb9957c3688895d5f6d7bd20","src/guest_type.rs":"75dc917d187e4854d50bdf2550a52ee9e1f17cdd657cbd486db1891e47b93676","src/lib.rs":"d22a44319b9ac13c97af86c9b06546339c976ea6553812ba5c7f44c81a1e7fe1","src/region.rs":"5a4e9284148747f00dbe08831b87c5c2528e68eff266a6f1996fcb11d00ed821","src/wasmtime.rs":"2e9b87395919048ff034c6a4925003f428f5454d274b3205a96803e1010c6cb1"},"package":"7f6ce56a4019ce3d8592c298029a75abe6887d1c95a078a4c53ec77a0628262d"}
|
@@ -12,7 +12,7 @@
|
|
12
12
|
[package]
|
13
13
|
edition = "2021"
|
14
14
|
name = "wiggle"
|
15
|
-
version = "14.0.
|
15
|
+
version = "14.0.4"
|
16
16
|
authors = [
|
17
17
|
"Pat Hickey <phickey@fastly.com>",
|
18
18
|
"Jakub Konka <kubkonk@jakubkonka.com>",
|
@@ -72,11 +72,11 @@ version = "1.0.43"
|
|
72
72
|
version = "0.1.26"
|
73
73
|
|
74
74
|
[dependencies.wasmtime]
|
75
|
-
version = "14.0.
|
75
|
+
version = "14.0.4"
|
76
76
|
default-features = false
|
77
77
|
|
78
78
|
[dependencies.wiggle-macro]
|
79
|
-
version = "=14.0.
|
79
|
+
version = "=14.0.4"
|
80
80
|
|
81
81
|
[dependencies.witx]
|
82
82
|
version = "0.9.1"
|
data/ext/cargo-vendor/{wiggle-generate-14.0.3 → wiggle-generate-14.0.4}/.cargo-checksum.json
RENAMED
@@ -1 +1 @@
|
|
1
|
-
{"files":{"Cargo.toml":"
|
1
|
+
{"files":{"Cargo.toml":"96d3633762a97220d1f510331a6cc3e21825d1b266f4b64120f116637ef24b6a","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","README.md":"eb29b0dead8b5ff41ac51282bfa041e9c122c7c10395e2c8e0050972b7edaa9b","src/codegen_settings.rs":"f53f89264a5bbd7a62a1e1c931539d5054f0030a747a485e9b0b9d65106dd7e8","src/config.rs":"af32f4920a133efefefdb7aa289fc8af8a1868897514dccea3cdbb0f4caea8ff","src/funcs.rs":"8279c990d18a213e3c541bb8739f222b341d9fbbbf9998ad8203246edb3af95d","src/lib.rs":"5f6ec829e43dc37427fefea20aa625e60d91d5dc408a9befa643becf5adef0fa","src/lifetimes.rs":"4b54f556048732580daf5b238963277c61096bc8c2b7bd012d0c2a6771b4cddb","src/module_trait.rs":"95dff309611fbb406506cd394a01a9da23a930c12f56cb3acc5b839f3181c2a0","src/names.rs":"19a579dea7c5631105105a21e42d5cdafe773b2e33dc117adc36333bc0b88b2a","src/types/error.rs":"e21302d7f2cf59161566e7f224c70cd892694f1ea173fb205db0c2cb82c40e2c","src/types/flags.rs":"cc125979ca890fcb2ae7d8fb04452f633830e9e5ab3ac7d97697a779e61246c9","src/types/handle.rs":"618c3b401f492e2125ef33d9f4dc4a7f4669a950895d128faf9d9b0a362b01a6","src/types/mod.rs":"f3dcfcf064abf4475e132eb6793211f6b79b937becd658a38401a2c06634135c","src/types/record.rs":"8d76388881a7eaeeef4d3c373ce080cf0b98058844762c9cd2849dea7b6342f0","src/types/variant.rs":"0c5b963e977112be7e0e5ea1df326941385fe17bf0449547c4292c1fa1c2c689","src/wasmtime.rs":"61cb4b0ad6b7749a052dc5c540b48354651a56a3a77a1042ed60237c37807baf"},"package":"e585a4b1e84195031c77d8484af99cd93f129f45d519e83cb8cc75e9a420cfd3"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"files":{"Cargo.toml":"3f222b6c88a737a2ca4195e9e5aef25a1b35a118764b28eb3533f92dbd9bd748","LICENSE":"268872b9816f90fd8e85db5a28d33f8150ebb8dd016653fb39ef1f94f2686bc5","src/lib.rs":"f900ec4ff2b4b5f11d5ed5b15a1d521470fe94ecea2fbff3da1cb1b241df0d17"},"package":"c6f321dbce722989d65c3082dba479fa392c7b7a1a4c3adc2a39545dd5aa452f"}
|
@@ -12,7 +12,7 @@
|
|
12
12
|
[package]
|
13
13
|
edition = "2021"
|
14
14
|
name = "wiggle-macro"
|
15
|
-
version = "14.0.
|
15
|
+
version = "14.0.4"
|
16
16
|
authors = [
|
17
17
|
"Pat Hickey <phickey@fastly.com>",
|
18
18
|
"Jakub Konka <kubkon@jakubkonka.com>",
|
@@ -47,7 +47,7 @@ version = "2.0.25"
|
|
47
47
|
features = ["full"]
|
48
48
|
|
49
49
|
[dependencies.wiggle-generate]
|
50
|
-
version = "=14.0.
|
50
|
+
version = "=14.0.4"
|
51
51
|
|
52
52
|
[dev-dependencies]
|
53
53
|
|
@@ -0,0 +1,220 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
203
|
+
|
204
|
+
|
205
|
+
--- LLVM Exceptions to the Apache 2.0 License ----
|
206
|
+
|
207
|
+
As an exception, if, as a result of your compiling your source code, portions
|
208
|
+
of this Software are embedded into an Object form of such source code, you
|
209
|
+
may redistribute such embedded portions in such Object form without complying
|
210
|
+
with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
|
211
|
+
|
212
|
+
In addition, if you combine or link compiled forms of this Software with
|
213
|
+
software that is licensed under the GPLv2 ("Combined Software") and if a
|
214
|
+
court of competent jurisdiction determines that the patent provision (Section
|
215
|
+
3), the indemnity provision (Section 9) or other Section of the License
|
216
|
+
conflicts with the conditions of the GPLv2, you may retroactively and
|
217
|
+
prospectively choose to deem waived or otherwise exclude such Section(s) of
|
218
|
+
the License, but only in their entirety and only with respect to the Combined
|
219
|
+
Software.
|
220
|
+
|
@@ -1 +1 @@
|
|
1
|
-
{"files":{"Cargo.toml":"
|
1
|
+
{"files":{"Cargo.toml":"3f95f166acac69aaee36a246fdc3a8a47ba119ec371baab4f9c9c654410711d7","LICENSE":"a6c48161a09acc75a0e25503bab66a731eb5fba5392ed4bb4743e4ba5085327a","build.rs":"d19fe439db9b48a8bf91af26001c20ea6010633133bc52a13679720187a7cf1b","src/abi/local.rs":"9ad1d5acd30f25ca4f5fdc162164a885544b69ebf61e80d779c71e509636e5f0","src/abi/mod.rs":"81722330eb67f99bb8fb35e2f3b2a6ce87ef1ff463a9c64966abe200c60bca84","src/codegen/builtin.rs":"92056e5d804d07a2663ead24dbad75546c59da0f15e9ea8b228f3630002575b9","src/codegen/call.rs":"e25631d5ab3b53198a423a37c0018171a80a79463f25ecaeab97a571d7d95bdf","src/codegen/context.rs":"d25233d3cb1ea21f32ac883d9fd4014366ace5fb5c12f2207aed781efbb20c29","src/codegen/control.rs":"097f6eb5982f988100f5fe99fef8c4fbe874e59077162b9736a0099b8966f1f4","src/codegen/env.rs":"32fa24744b00d452b962af37e7f6862208e260e659f4e0688e909087243c6382","src/codegen/mod.rs":"af7d1488bb1a441231b7d5a83a1ca42909074e0084d21b14870396750e542c78","src/frame/mod.rs":"b63637e32c99ffae244f5e16b6a575ae27ebebc5837d862b58bb8ade238d7713","src/isa/aarch64/abi.rs":"cd41df6c7ec6c9bf5fef3a2331556802948cdaabd0d5c2597165bb82122112e5","src/isa/aarch64/address.rs":"fb50103f9621a42847115717099049c8b0373daeb556d532c1acbba0e639d100","src/isa/aarch64/asm.rs":"23a4a47b5a0ef44af3a3927583ef337f054687ccd4404f0c9b9ca171d251c981","src/isa/aarch64/masm.rs":"fc414a540d928872f69bc3aad99e7e153496fca5ae9cefb86a52c7c484ae0efa","src/isa/aarch64/mod.rs":"580d1f80284a354839c6bdb81afe11c132662ebfc62292cbb1c6819cffb9b370","src/isa/aarch64/regs.rs":"f1a81d310f416c0e94312f5a39cde5648e2b17548883054905e81a69ebc2540b","src/isa/mod.rs":"474671be5d6cf0d8ddf732e028c3685cc9a7957afff992f14a386c8823670915","src/isa/reg.rs":"09e4abe918307f996bcb6df34531759253007480582ea89e3c7ae569907b632b","src/isa/x64/abi.rs":"e48cada308259019b448614aa0952b6b6584782f901bc765693e231251b14dc6","src/isa/x64/address.rs":"50245c51730ab31064628882d24155ba676803c29875ac9d226d081af9f6700d","src/isa/x64/asm.rs":"95f2da6f48710fb4c3e3d311992573e3966ea6fbfb1ce01c9f0c52f303197c2e","src/isa/x64/masm.rs":"d84894efbd1ed9dfa016bc13e90ea53cc19f103ce10085e5a073e797348c318c","src/isa/x64/mod.rs":"358245781c66b4dac32731dfe1c1b30386d700663bf49ed54ad4445708800692","src/isa/x64/regs.rs":"1d21f44b3585fbf1e9fec2a9f9f31ade923b103df9814fd9e3cbff0987e31cb6","src/lib.rs":"d57d657ee8425b77292ed0a835c05b4047bc75f81ff79d61efd48a8d7f8ac69b","src/masm.rs":"35f3d14ad6b136fe1ba0c8d8341b72247ba7aabc98254a6af90d1005aa3a6553","src/regalloc.rs":"2317b8c02c5620a0bd9198d267bf7834847ce4342a5b6254f1e393b09250e696","src/regset.rs":"9e8c7848ea8bc16e176b7c50e84c33f1ec479ec10914071fea4dce68a1e1f75b","src/stack.rs":"9e001eb352223d9a36c218131a0ffc0748fc0141254c53454164457c1be14527","src/trampoline.rs":"3977d838486a33f197075dc4924711edb27651dcad3ecfb5f73c23618eb3e710","src/visitor.rs":"17a55f7ac32ec50108dc467a9ccf19101f7b7424f601066fdff7d497b49b9afe"},"package":"f112bebb367a544d20c254083798087f22ceeb426168a970b955e8436f749dca"}
|