wasmtime 28.0.0 → 29.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +155 -120
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
- data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
- data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
- data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
- data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
- data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
- data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
- data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
- data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
- data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
- data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
- data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
- data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
- data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
- data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
- data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
- data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
- data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
- data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
- data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
- data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
- data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
- data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
- data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
- data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
- data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
- data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
- data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
- data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
- data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
- data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
- data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
- data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
- data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
- data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
- data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2408 -2300
- data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
- data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
- data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
- data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
- data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
- data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
- data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
- data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
- data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
- data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
- data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
- data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
- data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
- data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
- data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
- data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
- data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
- data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
- data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
- data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
- data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
- data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
- data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
- data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
- data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
- data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
- data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
- data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
- data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
- data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
- data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
- data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
- data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
- data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
- data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
- data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
- data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
- data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
- data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
- data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
- data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
- data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
- data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
- data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
- data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
- data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
- data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
- data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
- data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
- data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
- data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
- data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
- data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
- data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
- data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
- data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
- data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
- data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
- data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
- data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
- data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
- data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
- data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
- data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
- data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
- data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
- data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
- data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
- data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
- data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
- data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
- data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
- data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
- data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
- data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
- data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
- data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
- data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
- data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
- data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
- data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
- data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
- data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
- data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
- data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
- data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
- data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
- data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
- data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
- data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
- data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
- data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
- data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
- data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
- data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
- data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
- data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -0,0 +1,4019 @@
|
|
1
|
+
//! State relating to validating a WebAssembly component.
|
2
|
+
|
3
|
+
use super::{
|
4
|
+
check_max,
|
5
|
+
component_types::{
|
6
|
+
Abi, AliasableResourceId, ComponentAnyTypeId, ComponentCoreInstanceTypeId,
|
7
|
+
ComponentCoreModuleTypeId, ComponentCoreTypeId, ComponentDefinedType,
|
8
|
+
ComponentDefinedTypeId, ComponentEntityType, ComponentFuncType, ComponentFuncTypeId,
|
9
|
+
ComponentInstanceType, ComponentInstanceTypeId, ComponentType, ComponentTypeId,
|
10
|
+
ComponentValType, Context, CoreInstanceTypeKind, InstanceType, LoweringInfo, ModuleType,
|
11
|
+
RecordType, Remap, Remapping, ResourceId, SubtypeCx, TupleType, VariantCase, VariantType,
|
12
|
+
},
|
13
|
+
core::{InternRecGroup, Module},
|
14
|
+
types::{CoreTypeId, EntityType, TypeAlloc, TypeInfo, TypeList},
|
15
|
+
};
|
16
|
+
use crate::collections::index_map::Entry;
|
17
|
+
use crate::limits::*;
|
18
|
+
use crate::prelude::*;
|
19
|
+
use crate::validator::names::{ComponentName, ComponentNameKind, KebabStr, KebabString};
|
20
|
+
use crate::{
|
21
|
+
BinaryReaderError, CanonicalOption, ComponentExportName, ComponentExternalKind,
|
22
|
+
ComponentOuterAliasKind, ComponentTypeRef, CompositeInnerType, CompositeType, ExternalKind,
|
23
|
+
FuncType, GlobalType, InstantiationArgKind, MemoryType, PackedIndex, RefType, Result, SubType,
|
24
|
+
TableType, TypeBounds, ValType, WasmFeatures,
|
25
|
+
};
|
26
|
+
use core::mem;
|
27
|
+
|
28
|
+
fn to_kebab_str<'a>(s: &'a str, desc: &str, offset: usize) -> Result<&'a KebabStr> {
|
29
|
+
match KebabStr::new(s) {
|
30
|
+
Some(s) => Ok(s),
|
31
|
+
None => {
|
32
|
+
if s.is_empty() {
|
33
|
+
bail!(offset, "{desc} name cannot be empty");
|
34
|
+
}
|
35
|
+
|
36
|
+
bail!(offset, "{desc} name `{s}` is not in kebab case");
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
pub(crate) struct ComponentState {
|
42
|
+
/// Whether this state is a concrete component, an instance type, or a
|
43
|
+
/// component type.
|
44
|
+
kind: ComponentKind,
|
45
|
+
|
46
|
+
// Core index spaces
|
47
|
+
pub core_types: Vec<ComponentCoreTypeId>,
|
48
|
+
pub core_funcs: Vec<CoreTypeId>,
|
49
|
+
pub core_tags: Vec<CoreTypeId>,
|
50
|
+
pub core_modules: Vec<ComponentCoreModuleTypeId>,
|
51
|
+
pub core_instances: Vec<ComponentCoreInstanceTypeId>,
|
52
|
+
pub core_memories: Vec<MemoryType>,
|
53
|
+
pub core_tables: Vec<TableType>,
|
54
|
+
pub core_globals: Vec<GlobalType>,
|
55
|
+
|
56
|
+
// Component index spaces
|
57
|
+
pub types: Vec<ComponentAnyTypeId>,
|
58
|
+
pub funcs: Vec<ComponentFuncTypeId>,
|
59
|
+
pub values: Vec<(ComponentValType, bool)>,
|
60
|
+
pub instances: Vec<ComponentInstanceTypeId>,
|
61
|
+
pub components: Vec<ComponentTypeId>,
|
62
|
+
|
63
|
+
pub imports: IndexMap<String, ComponentEntityType>,
|
64
|
+
pub import_names: IndexSet<ComponentName>,
|
65
|
+
pub exports: IndexMap<String, ComponentEntityType>,
|
66
|
+
pub export_names: IndexSet<ComponentName>,
|
67
|
+
|
68
|
+
has_start: bool,
|
69
|
+
type_info: TypeInfo,
|
70
|
+
|
71
|
+
/// A mapping of imported resources in this component.
|
72
|
+
///
|
73
|
+
/// This mapping represents all "type variables" imported into the
|
74
|
+
/// component, or resources. This could be resources imported directly as
|
75
|
+
/// a top-level type import or additionally transitively through other
|
76
|
+
/// imported instances.
|
77
|
+
///
|
78
|
+
/// The mapping element here is a "path" which is a list of indexes into
|
79
|
+
/// the import map that will be generated for this component. Each index
|
80
|
+
/// is an index into an `IndexMap`, and each list is guaranteed to have at
|
81
|
+
/// least one element.
|
82
|
+
///
|
83
|
+
/// An example of this map is:
|
84
|
+
///
|
85
|
+
/// ```wasm
|
86
|
+
/// (component
|
87
|
+
/// ;; [0] - the first import
|
88
|
+
/// (import "r" (type (sub resource)))
|
89
|
+
///
|
90
|
+
/// ;; [1] - the second import
|
91
|
+
/// (import "r2" (type (sub resource)))
|
92
|
+
///
|
93
|
+
/// (import "i" (instance
|
94
|
+
/// ;; [2, 0] - the third import, and the first export the instance
|
95
|
+
/// (export "r3" (type (sub resource)))
|
96
|
+
/// ;; [2, 1] - the third import, and the second export the instance
|
97
|
+
/// (export "r4" (type (sub resource)))
|
98
|
+
/// ))
|
99
|
+
///
|
100
|
+
/// ;; ...
|
101
|
+
/// )
|
102
|
+
/// ```
|
103
|
+
///
|
104
|
+
/// The `Vec<usize>` here can be thought of as `Vec<String>` but a
|
105
|
+
/// (hopefully) more efficient representation.
|
106
|
+
///
|
107
|
+
/// Finally note that this map is listed as an "append only" map because all
|
108
|
+
/// insertions into it should always succeed. Any insertion which overlaps
|
109
|
+
/// with a previous entry indicates a bug in the validator which needs to be
|
110
|
+
/// corrected via other means.
|
111
|
+
//
|
112
|
+
// TODO: make these `SkolemResourceId` and then go fix all the compile
|
113
|
+
// errors, don't add skolem things into the type area
|
114
|
+
imported_resources: IndexMapAppendOnly<ResourceId, Vec<usize>>,
|
115
|
+
|
116
|
+
/// A mapping of "defined" resources in this component, or those which
|
117
|
+
/// are defined within the instantiation of this component.
|
118
|
+
///
|
119
|
+
/// Defined resources, as the name implies, can sort of be thought of as
|
120
|
+
/// "these are defined within the component". Note though that the means by
|
121
|
+
/// which a local definition can occur are not simply those defined in the
|
122
|
+
/// component but also in its transitively instantiated components
|
123
|
+
/// internally. This means that this set closes over many transitive
|
124
|
+
/// internal items in addition to those defined immediately in the component
|
125
|
+
/// itself.
|
126
|
+
///
|
127
|
+
/// The `Option<ValType>` in this mapping is whether or not the underlying
|
128
|
+
/// representation of the resource is known to this component. Immediately
|
129
|
+
/// defined resources, for example, will have `Some(I32)` here. Resources
|
130
|
+
/// that come from transitively defined components, for example, will have
|
131
|
+
/// `None`. In the type context all entries here are `None`.
|
132
|
+
///
|
133
|
+
/// Note that like `imported_resources` all insertions into this map are
|
134
|
+
/// expected to succeed to it's declared as append-only.
|
135
|
+
defined_resources: IndexMapAppendOnly<ResourceId, Option<ValType>>,
|
136
|
+
|
137
|
+
/// A mapping of explicitly exported resources from this component in
|
138
|
+
/// addition to the path that they're exported at.
|
139
|
+
///
|
140
|
+
/// For more information on the path here see the documentation for
|
141
|
+
/// `imported_resources`. Note that the indexes here index into the
|
142
|
+
/// list of exports of this component.
|
143
|
+
explicit_resources: IndexMap<ResourceId, Vec<usize>>,
|
144
|
+
|
145
|
+
/// The set of types which are considered "exported" from this component.
|
146
|
+
///
|
147
|
+
/// This is added to whenever a type export is found, or an instance export
|
148
|
+
/// which itself contains a type export. This additionally includes all
|
149
|
+
/// imported types since those are suitable for export as well.
|
150
|
+
///
|
151
|
+
/// This set is consulted whenever an exported item is added since all
|
152
|
+
/// referenced types must be members of this set.
|
153
|
+
exported_types: Set<ComponentAnyTypeId>,
|
154
|
+
|
155
|
+
/// Same as `exported_types`, but for imports.
|
156
|
+
imported_types: Set<ComponentAnyTypeId>,
|
157
|
+
|
158
|
+
/// The set of top-level resource exports and their names.
|
159
|
+
///
|
160
|
+
/// This context is used to validate method names such as `[method]foo.bar`
|
161
|
+
/// to ensure that `foo` is an exported resource and that the type mentioned
|
162
|
+
/// in a function type is actually named `foo`.
|
163
|
+
///
|
164
|
+
/// Note that imports/exports have disjoint contexts to ensure that they're
|
165
|
+
/// validated correctly. Namely you can't retroactively attach methods to an
|
166
|
+
/// import, for example.
|
167
|
+
toplevel_exported_resources: ComponentNameContext,
|
168
|
+
|
169
|
+
/// Same as `toplevel_exported_resources`, but for imports.
|
170
|
+
toplevel_imported_resources: ComponentNameContext,
|
171
|
+
}
|
172
|
+
|
173
|
+
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
174
|
+
pub enum ComponentKind {
|
175
|
+
Component,
|
176
|
+
InstanceType,
|
177
|
+
ComponentType,
|
178
|
+
}
|
179
|
+
|
180
|
+
/// Helper context used to track information about resource names for method
|
181
|
+
/// name validation.
|
182
|
+
#[derive(Default)]
|
183
|
+
struct ComponentNameContext {
|
184
|
+
/// A map from a resource type id to an index in the `all_resource_names`
|
185
|
+
/// set for the name of that resource.
|
186
|
+
resource_name_map: Map<AliasableResourceId, usize>,
|
187
|
+
|
188
|
+
/// All known resource names in this context, used to validate static method
|
189
|
+
/// names to by ensuring that static methods' resource names are somewhere
|
190
|
+
/// in this set.
|
191
|
+
all_resource_names: IndexSet<String>,
|
192
|
+
}
|
193
|
+
|
194
|
+
#[derive(Debug, Copy, Clone)]
|
195
|
+
pub enum ExternKind {
|
196
|
+
Import,
|
197
|
+
Export,
|
198
|
+
}
|
199
|
+
|
200
|
+
impl ExternKind {
|
201
|
+
pub fn desc(&self) -> &'static str {
|
202
|
+
match self {
|
203
|
+
ExternKind::Import => "import",
|
204
|
+
ExternKind::Export => "export",
|
205
|
+
}
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
impl ComponentState {
|
210
|
+
pub fn new(kind: ComponentKind) -> Self {
|
211
|
+
Self {
|
212
|
+
kind,
|
213
|
+
core_types: Default::default(),
|
214
|
+
core_modules: Default::default(),
|
215
|
+
core_instances: Default::default(),
|
216
|
+
core_funcs: Default::default(),
|
217
|
+
core_memories: Default::default(),
|
218
|
+
core_tables: Default::default(),
|
219
|
+
core_globals: Default::default(),
|
220
|
+
core_tags: Default::default(),
|
221
|
+
types: Default::default(),
|
222
|
+
funcs: Default::default(),
|
223
|
+
values: Default::default(),
|
224
|
+
instances: Default::default(),
|
225
|
+
components: Default::default(),
|
226
|
+
imports: Default::default(),
|
227
|
+
exports: Default::default(),
|
228
|
+
import_names: Default::default(),
|
229
|
+
export_names: Default::default(),
|
230
|
+
has_start: Default::default(),
|
231
|
+
type_info: TypeInfo::new(),
|
232
|
+
imported_resources: Default::default(),
|
233
|
+
defined_resources: Default::default(),
|
234
|
+
explicit_resources: Default::default(),
|
235
|
+
exported_types: Default::default(),
|
236
|
+
imported_types: Default::default(),
|
237
|
+
toplevel_exported_resources: Default::default(),
|
238
|
+
toplevel_imported_resources: Default::default(),
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
pub fn type_count(&self) -> usize {
|
243
|
+
self.core_types.len() + self.types.len()
|
244
|
+
}
|
245
|
+
|
246
|
+
pub fn instance_count(&self) -> usize {
|
247
|
+
self.core_instances.len() + self.instances.len()
|
248
|
+
}
|
249
|
+
|
250
|
+
pub fn function_count(&self) -> usize {
|
251
|
+
self.core_funcs.len() + self.funcs.len()
|
252
|
+
}
|
253
|
+
|
254
|
+
pub fn add_core_type(
|
255
|
+
components: &mut [Self],
|
256
|
+
ty: crate::CoreType,
|
257
|
+
features: &WasmFeatures,
|
258
|
+
types: &mut TypeAlloc,
|
259
|
+
offset: usize,
|
260
|
+
check_limit: bool,
|
261
|
+
) -> Result<()> {
|
262
|
+
let current = components.last_mut().unwrap();
|
263
|
+
if check_limit {
|
264
|
+
check_max(current.type_count(), 1, MAX_WASM_TYPES, "types", offset)?;
|
265
|
+
}
|
266
|
+
match ty {
|
267
|
+
crate::CoreType::Rec(rec) => {
|
268
|
+
current.canonicalize_and_intern_rec_group(features, types, rec, offset)?;
|
269
|
+
}
|
270
|
+
crate::CoreType::Module(decls) => {
|
271
|
+
let mod_ty = Self::create_module_type(
|
272
|
+
components,
|
273
|
+
decls.into_vec(),
|
274
|
+
features,
|
275
|
+
types,
|
276
|
+
offset,
|
277
|
+
)?;
|
278
|
+
let id = ComponentCoreTypeId::Module(types.push_ty(mod_ty));
|
279
|
+
components.last_mut().unwrap().core_types.push(id);
|
280
|
+
}
|
281
|
+
}
|
282
|
+
|
283
|
+
Ok(())
|
284
|
+
}
|
285
|
+
|
286
|
+
pub fn add_core_module(
|
287
|
+
&mut self,
|
288
|
+
module: &Module,
|
289
|
+
types: &mut TypeAlloc,
|
290
|
+
offset: usize,
|
291
|
+
) -> Result<()> {
|
292
|
+
let imports = module.imports_for_module_type(offset)?;
|
293
|
+
|
294
|
+
// We have to clone the module's imports and exports here
|
295
|
+
// because we cannot take the data out of the `MaybeOwned`
|
296
|
+
// as it might be shared with a function validator.
|
297
|
+
let mod_ty = ModuleType {
|
298
|
+
info: TypeInfo::core(module.type_size),
|
299
|
+
imports,
|
300
|
+
exports: module.exports.clone(),
|
301
|
+
};
|
302
|
+
|
303
|
+
let mod_id = types.push_ty(mod_ty);
|
304
|
+
self.core_modules.push(mod_id);
|
305
|
+
|
306
|
+
Ok(())
|
307
|
+
}
|
308
|
+
|
309
|
+
pub fn add_core_instance(
|
310
|
+
&mut self,
|
311
|
+
instance: crate::Instance,
|
312
|
+
types: &mut TypeAlloc,
|
313
|
+
offset: usize,
|
314
|
+
) -> Result<()> {
|
315
|
+
let instance = match instance {
|
316
|
+
crate::Instance::Instantiate { module_index, args } => {
|
317
|
+
self.instantiate_core_module(module_index, args.into_vec(), types, offset)?
|
318
|
+
}
|
319
|
+
crate::Instance::FromExports(exports) => {
|
320
|
+
self.instantiate_core_exports(exports.into_vec(), types, offset)?
|
321
|
+
}
|
322
|
+
};
|
323
|
+
|
324
|
+
self.core_instances.push(instance);
|
325
|
+
|
326
|
+
Ok(())
|
327
|
+
}
|
328
|
+
|
329
|
+
pub fn add_type(
|
330
|
+
components: &mut Vec<Self>,
|
331
|
+
ty: crate::ComponentType,
|
332
|
+
features: &WasmFeatures,
|
333
|
+
types: &mut TypeAlloc,
|
334
|
+
offset: usize,
|
335
|
+
check_limit: bool,
|
336
|
+
) -> Result<()> {
|
337
|
+
assert!(!components.is_empty());
|
338
|
+
|
339
|
+
fn current(components: &mut Vec<ComponentState>) -> &mut ComponentState {
|
340
|
+
components.last_mut().unwrap()
|
341
|
+
}
|
342
|
+
|
343
|
+
let id = match ty {
|
344
|
+
crate::ComponentType::Defined(ty) => {
|
345
|
+
let ty = current(components).create_defined_type(ty, types, features, offset)?;
|
346
|
+
types.push(ty).into()
|
347
|
+
}
|
348
|
+
crate::ComponentType::Func(ty) => {
|
349
|
+
let ty = current(components).create_function_type(ty, types, features, offset)?;
|
350
|
+
types.push(ty).into()
|
351
|
+
}
|
352
|
+
crate::ComponentType::Component(decls) => {
|
353
|
+
let ty = Self::create_component_type(
|
354
|
+
components,
|
355
|
+
decls.into_vec(),
|
356
|
+
features,
|
357
|
+
types,
|
358
|
+
offset,
|
359
|
+
)?;
|
360
|
+
types.push(ty).into()
|
361
|
+
}
|
362
|
+
crate::ComponentType::Instance(decls) => {
|
363
|
+
let ty = Self::create_instance_type(
|
364
|
+
components,
|
365
|
+
decls.into_vec(),
|
366
|
+
features,
|
367
|
+
types,
|
368
|
+
offset,
|
369
|
+
)?;
|
370
|
+
types.push(ty).into()
|
371
|
+
}
|
372
|
+
crate::ComponentType::Resource { rep, dtor } => {
|
373
|
+
let component = current(components);
|
374
|
+
|
375
|
+
// Resource types cannot be declared in a type context, only
|
376
|
+
// within a component context.
|
377
|
+
if component.kind != ComponentKind::Component {
|
378
|
+
bail!(
|
379
|
+
offset,
|
380
|
+
"resources can only be defined within a concrete component"
|
381
|
+
);
|
382
|
+
}
|
383
|
+
|
384
|
+
// Current MVP restriction of the component model.
|
385
|
+
if rep != ValType::I32 {
|
386
|
+
bail!(offset, "resources can only be represented by `i32`");
|
387
|
+
}
|
388
|
+
|
389
|
+
// If specified validate that the destructor is both a valid
|
390
|
+
// function and has the correct signature.
|
391
|
+
if let Some(dtor) = dtor {
|
392
|
+
let ty = component.core_function_at(dtor, offset)?;
|
393
|
+
let ty = types[ty].composite_type.unwrap_func();
|
394
|
+
if ty.params() != [rep] || ty.results() != [] {
|
395
|
+
bail!(
|
396
|
+
offset,
|
397
|
+
"core function {dtor} has wrong signature for a destructor"
|
398
|
+
);
|
399
|
+
}
|
400
|
+
}
|
401
|
+
|
402
|
+
// As this is the introduction of a resource create a fresh new
|
403
|
+
// identifier for the resource. This is then added into the
|
404
|
+
// list of defined resources for this component, notably with a
|
405
|
+
// rep listed to enable getting access to various intrinsics
|
406
|
+
// such as `resource.rep`.
|
407
|
+
let id = types.alloc_resource_id();
|
408
|
+
component.defined_resources.insert(id.resource(), Some(rep));
|
409
|
+
id.into()
|
410
|
+
}
|
411
|
+
};
|
412
|
+
|
413
|
+
let current = current(components);
|
414
|
+
if check_limit {
|
415
|
+
check_max(current.type_count(), 1, MAX_WASM_TYPES, "types", offset)?;
|
416
|
+
}
|
417
|
+
current.types.push(id);
|
418
|
+
|
419
|
+
Ok(())
|
420
|
+
}
|
421
|
+
|
422
|
+
pub fn add_import(
|
423
|
+
&mut self,
|
424
|
+
import: crate::ComponentImport,
|
425
|
+
features: &WasmFeatures,
|
426
|
+
types: &mut TypeAlloc,
|
427
|
+
offset: usize,
|
428
|
+
) -> Result<()> {
|
429
|
+
let mut entity = self.check_type_ref(&import.ty, features, types, offset)?;
|
430
|
+
self.add_entity(
|
431
|
+
&mut entity,
|
432
|
+
Some((import.name.0, ExternKind::Import)),
|
433
|
+
features,
|
434
|
+
types,
|
435
|
+
offset,
|
436
|
+
)?;
|
437
|
+
self.toplevel_imported_resources.validate_extern(
|
438
|
+
import.name.0,
|
439
|
+
ExternKind::Import,
|
440
|
+
&entity,
|
441
|
+
types,
|
442
|
+
offset,
|
443
|
+
&mut self.import_names,
|
444
|
+
&mut self.imports,
|
445
|
+
&mut self.type_info,
|
446
|
+
features,
|
447
|
+
)?;
|
448
|
+
Ok(())
|
449
|
+
}
|
450
|
+
|
451
|
+
fn add_entity(
|
452
|
+
&mut self,
|
453
|
+
ty: &mut ComponentEntityType,
|
454
|
+
name_and_kind: Option<(&str, ExternKind)>,
|
455
|
+
features: &WasmFeatures,
|
456
|
+
types: &mut TypeAlloc,
|
457
|
+
offset: usize,
|
458
|
+
) -> Result<()> {
|
459
|
+
let kind = name_and_kind.map(|(_, k)| k);
|
460
|
+
let (len, max, desc) = match ty {
|
461
|
+
ComponentEntityType::Module(id) => {
|
462
|
+
self.core_modules.push(*id);
|
463
|
+
(self.core_modules.len(), MAX_WASM_MODULES, "modules")
|
464
|
+
}
|
465
|
+
ComponentEntityType::Component(id) => {
|
466
|
+
self.components.push(*id);
|
467
|
+
(self.components.len(), MAX_WASM_COMPONENTS, "components")
|
468
|
+
}
|
469
|
+
ComponentEntityType::Instance(id) => {
|
470
|
+
match kind {
|
471
|
+
Some(ExternKind::Import) => self.prepare_instance_import(id, types),
|
472
|
+
Some(ExternKind::Export) => self.prepare_instance_export(id, types),
|
473
|
+
None => {}
|
474
|
+
}
|
475
|
+
self.instances.push(*id);
|
476
|
+
(self.instance_count(), MAX_WASM_INSTANCES, "instances")
|
477
|
+
}
|
478
|
+
ComponentEntityType::Func(id) => {
|
479
|
+
self.funcs.push(*id);
|
480
|
+
(self.function_count(), MAX_WASM_FUNCTIONS, "functions")
|
481
|
+
}
|
482
|
+
ComponentEntityType::Value(ty) => {
|
483
|
+
self.check_value_support(features, offset)?;
|
484
|
+
let value_used = match kind {
|
485
|
+
Some(ExternKind::Import) | None => false,
|
486
|
+
Some(ExternKind::Export) => true,
|
487
|
+
};
|
488
|
+
self.values.push((*ty, value_used));
|
489
|
+
(self.values.len(), MAX_WASM_VALUES, "values")
|
490
|
+
}
|
491
|
+
ComponentEntityType::Type {
|
492
|
+
created,
|
493
|
+
referenced,
|
494
|
+
} => {
|
495
|
+
self.types.push(*created);
|
496
|
+
|
497
|
+
// Extra logic here for resources being imported and exported.
|
498
|
+
// Note that if `created` is the same as `referenced` then this
|
499
|
+
// is the original introduction of the resource which is where
|
500
|
+
// `self.{imported,defined}_resources` are updated.
|
501
|
+
if let ComponentAnyTypeId::Resource(id) = *created {
|
502
|
+
match kind {
|
503
|
+
Some(ExternKind::Import) => {
|
504
|
+
// A fresh new resource is being imported into a
|
505
|
+
// component. This arises from the import section of
|
506
|
+
// a component or from the import declaration in a
|
507
|
+
// component type. In both cases a new imported
|
508
|
+
// resource is injected with a fresh new identifier
|
509
|
+
// into our state.
|
510
|
+
if created == referenced {
|
511
|
+
self.imported_resources
|
512
|
+
.insert(id.resource(), vec![self.imports.len()]);
|
513
|
+
}
|
514
|
+
}
|
515
|
+
|
516
|
+
Some(ExternKind::Export) => {
|
517
|
+
// A fresh resource is being exported from this
|
518
|
+
// component. This arises as part of the
|
519
|
+
// declaration of a component type, for example. In
|
520
|
+
// this situation brand new resource identifier is
|
521
|
+
// allocated and a definition is added, unlike the
|
522
|
+
// import case where an imported resource is added.
|
523
|
+
// Notably the representation of this new resource
|
524
|
+
// is unknown so it's listed as `None`.
|
525
|
+
if created == referenced {
|
526
|
+
self.defined_resources.insert(id.resource(), None);
|
527
|
+
}
|
528
|
+
|
529
|
+
// If this is a type export of a resource type then
|
530
|
+
// update the `explicit_resources` list. A new
|
531
|
+
// export path is about to be created for this
|
532
|
+
// resource and this keeps track of that.
|
533
|
+
self.explicit_resources
|
534
|
+
.insert(id.resource(), vec![self.exports.len()]);
|
535
|
+
}
|
536
|
+
|
537
|
+
None => {}
|
538
|
+
}
|
539
|
+
}
|
540
|
+
(self.types.len(), MAX_WASM_TYPES, "types")
|
541
|
+
}
|
542
|
+
};
|
543
|
+
|
544
|
+
check_max(len, 0, max, desc, offset)?;
|
545
|
+
|
546
|
+
// Before returning perform the final validation of the type of the item
|
547
|
+
// being imported/exported. This will ensure that everything is
|
548
|
+
// appropriately named with respect to type definitions, resources, etc.
|
549
|
+
if let Some((name, kind)) = name_and_kind {
|
550
|
+
if !self.validate_and_register_named_types(Some(name), kind, ty, types) {
|
551
|
+
bail!(
|
552
|
+
offset,
|
553
|
+
"{} not valid to be used as {}",
|
554
|
+
ty.desc(),
|
555
|
+
kind.desc()
|
556
|
+
);
|
557
|
+
}
|
558
|
+
}
|
559
|
+
Ok(())
|
560
|
+
}
|
561
|
+
|
562
|
+
/// Validates that the `ty` referenced only refers to named types internally
|
563
|
+
/// and then inserts anything necessary, if applicable, to the defined sets
|
564
|
+
/// within this component.
|
565
|
+
///
|
566
|
+
/// This function will validate that `ty` only refers to named types. For
|
567
|
+
/// example if it's a record then all of its fields must refer to named
|
568
|
+
/// types. This consults either `self.imported_types` or
|
569
|
+
/// `self.exported_types` as specified by `kind`. Note that this is not
|
570
|
+
/// inherently recursive itself but it ends up being recursive since if
|
571
|
+
/// recursive members were named then all their components must also be
|
572
|
+
/// named. Consequently this check stops at the "one layer deep" position,
|
573
|
+
/// or more accurately the position where types must be named (e.g. tuples
|
574
|
+
/// aren't required to be named).
|
575
|
+
fn validate_and_register_named_types(
|
576
|
+
&mut self,
|
577
|
+
toplevel_name: Option<&str>,
|
578
|
+
kind: ExternKind,
|
579
|
+
ty: &ComponentEntityType,
|
580
|
+
types: &TypeAlloc,
|
581
|
+
) -> bool {
|
582
|
+
if let ComponentEntityType::Type { created, .. } = ty {
|
583
|
+
// If this is a top-level resource then register it in the
|
584
|
+
// appropriate context so later validation of method-like-names
|
585
|
+
// works out.
|
586
|
+
if let Some(name) = toplevel_name {
|
587
|
+
if let ComponentAnyTypeId::Resource(id) = *created {
|
588
|
+
let cx = match kind {
|
589
|
+
ExternKind::Import => &mut self.toplevel_imported_resources,
|
590
|
+
ExternKind::Export => &mut self.toplevel_exported_resources,
|
591
|
+
};
|
592
|
+
cx.register(name, id);
|
593
|
+
}
|
594
|
+
}
|
595
|
+
}
|
596
|
+
|
597
|
+
match self.kind {
|
598
|
+
ComponentKind::Component | ComponentKind::ComponentType => {}
|
599
|
+
ComponentKind::InstanceType => return true,
|
600
|
+
}
|
601
|
+
let set = match kind {
|
602
|
+
ExternKind::Import => &self.imported_types,
|
603
|
+
ExternKind::Export => &self.exported_types,
|
604
|
+
};
|
605
|
+
match ty {
|
606
|
+
// When a type is imported or exported than any recursive type
|
607
|
+
// referred to by that import/export must additionally be exported
|
608
|
+
// or imported. Here this walks the "first layer" of the type which
|
609
|
+
// delegates to `TypeAlloc::type_named_type_id` to determine whether
|
610
|
+
// the components of the type being named here are indeed all they
|
611
|
+
// themselves named.
|
612
|
+
ComponentEntityType::Type {
|
613
|
+
created,
|
614
|
+
referenced,
|
615
|
+
} => {
|
616
|
+
if !self.all_valtypes_named(types, *referenced, set) {
|
617
|
+
return false;
|
618
|
+
}
|
619
|
+
match kind {
|
620
|
+
// Imported types are both valid for import and valid for
|
621
|
+
// export.
|
622
|
+
ExternKind::Import => {
|
623
|
+
self.imported_types.insert(*created);
|
624
|
+
self.exported_types.insert(*created);
|
625
|
+
}
|
626
|
+
ExternKind::Export => {
|
627
|
+
self.exported_types.insert(*created);
|
628
|
+
}
|
629
|
+
}
|
630
|
+
|
631
|
+
true
|
632
|
+
}
|
633
|
+
|
634
|
+
// Instances are slightly nuanced here. The general idea is that if
|
635
|
+
// an instance is imported, then any type exported by the instance
|
636
|
+
// is then also exported. Additionally for exports. To get this to
|
637
|
+
// work out this arm will recursively call
|
638
|
+
// `validate_and_register_named_types` which means that types are
|
639
|
+
// inserted into `self.{imported,exported}_types` as-we-go rather
|
640
|
+
// than all at once.
|
641
|
+
//
|
642
|
+
// This then recursively validates that all items in the instance
|
643
|
+
// itself are valid to import/export, recursive instances are
|
644
|
+
// captured, and everything is appropriately added to the right
|
645
|
+
// imported/exported set.
|
646
|
+
ComponentEntityType::Instance(i) => types[*i]
|
647
|
+
.exports
|
648
|
+
.iter()
|
649
|
+
.all(|(_name, ty)| self.validate_and_register_named_types(None, kind, ty, types)),
|
650
|
+
|
651
|
+
// All types referred to by a function must be named.
|
652
|
+
ComponentEntityType::Func(id) => self.all_valtypes_named_in_func(types, *id, set),
|
653
|
+
|
654
|
+
ComponentEntityType::Value(ty) => types.type_named_valtype(ty, set),
|
655
|
+
|
656
|
+
// Components/modules are always "closed" or "standalone" and don't
|
657
|
+
// need validation with respect to their named types.
|
658
|
+
ComponentEntityType::Component(_) | ComponentEntityType::Module(_) => true,
|
659
|
+
}
|
660
|
+
}
|
661
|
+
|
662
|
+
fn all_valtypes_named(
|
663
|
+
&self,
|
664
|
+
types: &TypeAlloc,
|
665
|
+
id: ComponentAnyTypeId,
|
666
|
+
set: &Set<ComponentAnyTypeId>,
|
667
|
+
) -> bool {
|
668
|
+
match id {
|
669
|
+
// Resource types, in isolation, are always valid to import or
|
670
|
+
// export since they're either attached to an import or being
|
671
|
+
// exported.
|
672
|
+
//
|
673
|
+
// Note that further validation of this happens in `finish`, too.
|
674
|
+
ComponentAnyTypeId::Resource(_) => true,
|
675
|
+
|
676
|
+
// Component types are validated as they are constructed,
|
677
|
+
// so all component types are valid to export if they've
|
678
|
+
// already been constructed.
|
679
|
+
ComponentAnyTypeId::Component(_) => true,
|
680
|
+
|
681
|
+
ComponentAnyTypeId::Defined(id) => self.all_valtypes_named_in_defined(types, id, set),
|
682
|
+
ComponentAnyTypeId::Func(id) => self.all_valtypes_named_in_func(types, id, set),
|
683
|
+
ComponentAnyTypeId::Instance(id) => self.all_valtypes_named_in_instance(types, id, set),
|
684
|
+
}
|
685
|
+
}
|
686
|
+
|
687
|
+
fn all_valtypes_named_in_instance(
|
688
|
+
&self,
|
689
|
+
types: &TypeAlloc,
|
690
|
+
id: ComponentInstanceTypeId,
|
691
|
+
set: &Set<ComponentAnyTypeId>,
|
692
|
+
) -> bool {
|
693
|
+
// Instances must recursively have all referenced types named.
|
694
|
+
let ty = &types[id];
|
695
|
+
ty.exports.values().all(|ty| match ty {
|
696
|
+
ComponentEntityType::Module(_) => true,
|
697
|
+
ComponentEntityType::Func(id) => self.all_valtypes_named_in_func(types, *id, set),
|
698
|
+
ComponentEntityType::Type { created: id, .. } => {
|
699
|
+
self.all_valtypes_named(types, *id, set)
|
700
|
+
}
|
701
|
+
ComponentEntityType::Value(ComponentValType::Type(id)) => {
|
702
|
+
self.all_valtypes_named_in_defined(types, *id, set)
|
703
|
+
}
|
704
|
+
ComponentEntityType::Instance(id) => {
|
705
|
+
self.all_valtypes_named_in_instance(types, *id, set)
|
706
|
+
}
|
707
|
+
ComponentEntityType::Component(_)
|
708
|
+
| ComponentEntityType::Value(ComponentValType::Primitive(_)) => return true,
|
709
|
+
})
|
710
|
+
}
|
711
|
+
|
712
|
+
fn all_valtypes_named_in_defined(
|
713
|
+
&self,
|
714
|
+
types: &TypeAlloc,
|
715
|
+
id: ComponentDefinedTypeId,
|
716
|
+
set: &Set<ComponentAnyTypeId>,
|
717
|
+
) -> bool {
|
718
|
+
let ty = &types[id];
|
719
|
+
match ty {
|
720
|
+
// These types do not contain anything which must be
|
721
|
+
// named.
|
722
|
+
ComponentDefinedType::Primitive(_)
|
723
|
+
| ComponentDefinedType::Flags(_)
|
724
|
+
| ComponentDefinedType::Enum(_)
|
725
|
+
| ComponentDefinedType::ErrorContext => true,
|
726
|
+
|
727
|
+
// Referenced types of all these aggregates must all be
|
728
|
+
// named.
|
729
|
+
ComponentDefinedType::Record(r) => {
|
730
|
+
r.fields.values().all(|t| types.type_named_valtype(t, set))
|
731
|
+
}
|
732
|
+
ComponentDefinedType::Tuple(r) => {
|
733
|
+
r.types.iter().all(|t| types.type_named_valtype(t, set))
|
734
|
+
}
|
735
|
+
ComponentDefinedType::Variant(r) => r
|
736
|
+
.cases
|
737
|
+
.values()
|
738
|
+
.filter_map(|t| t.ty.as_ref())
|
739
|
+
.all(|t| types.type_named_valtype(t, set)),
|
740
|
+
ComponentDefinedType::Result { ok, err } => {
|
741
|
+
ok.as_ref()
|
742
|
+
.map(|t| types.type_named_valtype(t, set))
|
743
|
+
.unwrap_or(true)
|
744
|
+
&& err
|
745
|
+
.as_ref()
|
746
|
+
.map(|t| types.type_named_valtype(t, set))
|
747
|
+
.unwrap_or(true)
|
748
|
+
}
|
749
|
+
ComponentDefinedType::List(ty) | ComponentDefinedType::Option(ty) => {
|
750
|
+
types.type_named_valtype(ty, set)
|
751
|
+
}
|
752
|
+
|
753
|
+
// The resource referred to by own/borrow must be named.
|
754
|
+
ComponentDefinedType::Own(id) | ComponentDefinedType::Borrow(id) => {
|
755
|
+
set.contains(&ComponentAnyTypeId::from(*id))
|
756
|
+
}
|
757
|
+
|
758
|
+
ComponentDefinedType::Future(ty) => ty
|
759
|
+
.as_ref()
|
760
|
+
.map(|ty| types.type_named_valtype(ty, set))
|
761
|
+
.unwrap_or(true),
|
762
|
+
ComponentDefinedType::Stream(ty) => ty
|
763
|
+
.as_ref()
|
764
|
+
.map(|ty| types.type_named_valtype(ty, set))
|
765
|
+
.unwrap_or(true),
|
766
|
+
}
|
767
|
+
}
|
768
|
+
|
769
|
+
fn all_valtypes_named_in_func(
|
770
|
+
&self,
|
771
|
+
types: &TypeAlloc,
|
772
|
+
id: ComponentFuncTypeId,
|
773
|
+
set: &Set<ComponentAnyTypeId>,
|
774
|
+
) -> bool {
|
775
|
+
let ty = &types[id];
|
776
|
+
// Function types must have all their parameters/results named.
|
777
|
+
ty.params
|
778
|
+
.iter()
|
779
|
+
.map(|(_, ty)| ty)
|
780
|
+
.chain(ty.results.iter().map(|(_, ty)| ty))
|
781
|
+
.all(|ty| types.type_named_valtype(ty, set))
|
782
|
+
}
|
783
|
+
|
784
|
+
/// Updates the type `id` specified, an identifier for a component instance
|
785
|
+
/// type, to be imported into this component.
|
786
|
+
///
|
787
|
+
/// Importing an instance type into a component specially handles the
|
788
|
+
/// defined resources registered in the instance type. Notably all
|
789
|
+
/// defined resources are "freshened" into brand new type variables and
|
790
|
+
/// these new variables are substituted within the type. This is what
|
791
|
+
/// creates a new `TypeId` and may update the `id` specified.
|
792
|
+
///
|
793
|
+
/// One side effect of this operation, for example, is that if an instance
|
794
|
+
/// type is used twice to import two different instances then the instances
|
795
|
+
/// do not share resource types despite sharing the same original instance
|
796
|
+
/// type.
|
797
|
+
fn prepare_instance_import(&mut self, id: &mut ComponentInstanceTypeId, types: &mut TypeAlloc) {
|
798
|
+
let ty = &types[*id];
|
799
|
+
|
800
|
+
// No special treatment for imports of instances which themselves have
|
801
|
+
// no defined resources
|
802
|
+
if ty.defined_resources.is_empty() {
|
803
|
+
return;
|
804
|
+
}
|
805
|
+
|
806
|
+
let mut new_ty = ComponentInstanceType {
|
807
|
+
// Copied from the input verbatim
|
808
|
+
info: ty.info,
|
809
|
+
|
810
|
+
// Copied over as temporary storage for now, and both of these are
|
811
|
+
// filled out and expanded below.
|
812
|
+
exports: ty.exports.clone(),
|
813
|
+
explicit_resources: ty.explicit_resources.clone(),
|
814
|
+
|
815
|
+
// Explicitly discard this field since the
|
816
|
+
// defined resources are lifted into `self`
|
817
|
+
defined_resources: Default::default(),
|
818
|
+
};
|
819
|
+
|
820
|
+
// Create brand new resources for all defined ones in the instance.
|
821
|
+
let resources = (0..ty.defined_resources.len())
|
822
|
+
.map(|_| types.alloc_resource_id())
|
823
|
+
.collect::<IndexSet<_>>();
|
824
|
+
|
825
|
+
// Build a map from the defined resources in `ty` to those in `new_ty`.
|
826
|
+
//
|
827
|
+
// As part of this same loop the new resources, which were previously
|
828
|
+
// defined in `ty`, now become imported variables in `self`. Their
|
829
|
+
// path for where they're imported is updated as well with
|
830
|
+
// `self.next_import_index` as the import-to-be soon.
|
831
|
+
let mut mapping = Remapping::default();
|
832
|
+
let ty = &types[*id];
|
833
|
+
for (old, new) in ty.defined_resources.iter().zip(&resources) {
|
834
|
+
let prev = mapping.resources.insert(*old, new.resource());
|
835
|
+
assert!(prev.is_none());
|
836
|
+
|
837
|
+
let mut base = vec![self.imports.len()];
|
838
|
+
base.extend(ty.explicit_resources[old].iter().copied());
|
839
|
+
self.imported_resources.insert(new.resource(), base);
|
840
|
+
}
|
841
|
+
|
842
|
+
// Using the old-to-new resource mapping perform a substitution on
|
843
|
+
// the `exports` and `explicit_resources` fields of `new_ty`
|
844
|
+
for ty in new_ty.exports.values_mut() {
|
845
|
+
types.remap_component_entity(ty, &mut mapping);
|
846
|
+
}
|
847
|
+
for (id, path) in mem::take(&mut new_ty.explicit_resources) {
|
848
|
+
let id = *mapping.resources.get(&id).unwrap_or(&id);
|
849
|
+
new_ty.explicit_resources.insert(id, path);
|
850
|
+
}
|
851
|
+
|
852
|
+
// Now that `new_ty` is complete finish its registration and then
|
853
|
+
// update `id` on the way out.
|
854
|
+
*id = types.push_ty(new_ty);
|
855
|
+
}
|
856
|
+
|
857
|
+
/// Prepares an instance type, pointed to `id`, for being exported as a
|
858
|
+
/// concrete instance from `self`.
|
859
|
+
///
|
860
|
+
/// This will internally perform any resource "freshening" as required and
|
861
|
+
/// then additionally update metadata within `self` about resources being
|
862
|
+
/// exported or defined.
|
863
|
+
fn prepare_instance_export(&mut self, id: &mut ComponentInstanceTypeId, types: &mut TypeAlloc) {
|
864
|
+
// Exports of an instance mean that the enclosing context
|
865
|
+
// is inheriting the resources that the instance
|
866
|
+
// encapsulates. This means that the instance type
|
867
|
+
// recorded for this export will itself have no
|
868
|
+
// defined resources.
|
869
|
+
let ty = &types[*id];
|
870
|
+
|
871
|
+
// Check to see if `defined_resources` is non-empty, and if so then
|
872
|
+
// "freshen" all the resources and inherit them to our own defined
|
873
|
+
// resources, updating `id` in the process.
|
874
|
+
//
|
875
|
+
// Note though that this specifically is not rewriting the resources of
|
876
|
+
// exported instances. The `defined_resources` set on instance types is
|
877
|
+
// a little subtle (see its documentation for more info), but the
|
878
|
+
// general idea is that for a concrete instance it's always empty. Only
|
879
|
+
// for instance type definitions does it ever have elements in it.
|
880
|
+
//
|
881
|
+
// That means that if this set is non-empty then what's happening is
|
882
|
+
// that we're in a type context an exporting an instance of a previously
|
883
|
+
// specified type. In this case all resources are required to be
|
884
|
+
// "freshened" to ensure that multiple exports of the same type all
|
885
|
+
// export different types of resources.
|
886
|
+
//
|
887
|
+
// And finally note that this operation empties out the
|
888
|
+
// `defined_resources` set of the type that is registered for the
|
889
|
+
// instance, as this export is modeled as producing a concrete instance.
|
890
|
+
if !ty.defined_resources.is_empty() {
|
891
|
+
let mut new_ty = ty.clone();
|
892
|
+
let mut mapping = Remapping::default();
|
893
|
+
for old in mem::take(&mut new_ty.defined_resources) {
|
894
|
+
let new = types.alloc_resource_id();
|
895
|
+
mapping.resources.insert(old, new.resource());
|
896
|
+
self.defined_resources.insert(new.resource(), None);
|
897
|
+
}
|
898
|
+
for ty in new_ty.exports.values_mut() {
|
899
|
+
types.remap_component_entity(ty, &mut mapping);
|
900
|
+
}
|
901
|
+
for (id, path) in mem::take(&mut new_ty.explicit_resources) {
|
902
|
+
let id = mapping.resources.get(&id).copied().unwrap_or(id);
|
903
|
+
new_ty.explicit_resources.insert(id, path);
|
904
|
+
}
|
905
|
+
*id = types.push_ty(new_ty);
|
906
|
+
}
|
907
|
+
|
908
|
+
// Any explicit resources in the instance are now additionally explicit
|
909
|
+
// in this component since it's exported.
|
910
|
+
//
|
911
|
+
// The path to each explicit resources gets one element prepended which
|
912
|
+
// is `self.next_export_index`, the index of the export about to be
|
913
|
+
// generated.
|
914
|
+
let ty = &types[*id];
|
915
|
+
for (id, path) in ty.explicit_resources.iter() {
|
916
|
+
let mut new_path = vec![self.exports.len()];
|
917
|
+
new_path.extend(path);
|
918
|
+
self.explicit_resources.insert(*id, new_path);
|
919
|
+
}
|
920
|
+
}
|
921
|
+
|
922
|
+
pub fn add_export(
|
923
|
+
&mut self,
|
924
|
+
name: ComponentExportName<'_>,
|
925
|
+
mut ty: ComponentEntityType,
|
926
|
+
features: &WasmFeatures,
|
927
|
+
types: &mut TypeAlloc,
|
928
|
+
offset: usize,
|
929
|
+
check_limit: bool,
|
930
|
+
) -> Result<()> {
|
931
|
+
if check_limit {
|
932
|
+
check_max(self.exports.len(), 1, MAX_WASM_EXPORTS, "exports", offset)?;
|
933
|
+
}
|
934
|
+
self.add_entity(
|
935
|
+
&mut ty,
|
936
|
+
Some((name.0, ExternKind::Export)),
|
937
|
+
features,
|
938
|
+
types,
|
939
|
+
offset,
|
940
|
+
)?;
|
941
|
+
self.toplevel_exported_resources.validate_extern(
|
942
|
+
name.0,
|
943
|
+
ExternKind::Export,
|
944
|
+
&ty,
|
945
|
+
types,
|
946
|
+
offset,
|
947
|
+
&mut self.export_names,
|
948
|
+
&mut self.exports,
|
949
|
+
&mut self.type_info,
|
950
|
+
features,
|
951
|
+
)?;
|
952
|
+
Ok(())
|
953
|
+
}
|
954
|
+
|
955
|
+
pub fn lift_function(
|
956
|
+
&mut self,
|
957
|
+
core_func_index: u32,
|
958
|
+
type_index: u32,
|
959
|
+
options: Vec<CanonicalOption>,
|
960
|
+
types: &TypeList,
|
961
|
+
offset: usize,
|
962
|
+
features: &WasmFeatures,
|
963
|
+
) -> Result<()> {
|
964
|
+
let ty = self.function_type_at(type_index, types, offset)?;
|
965
|
+
let core_ty = types[self.core_function_at(core_func_index, offset)?].unwrap_func();
|
966
|
+
|
967
|
+
// Lifting a function is for an export, so match the expected canonical ABI
|
968
|
+
// export signature
|
969
|
+
let info = ty.lower(
|
970
|
+
types,
|
971
|
+
if options.contains(&CanonicalOption::Async) {
|
972
|
+
if options
|
973
|
+
.iter()
|
974
|
+
.any(|v| matches!(v, CanonicalOption::Callback(_)))
|
975
|
+
{
|
976
|
+
Abi::LiftAsync
|
977
|
+
} else {
|
978
|
+
Abi::LiftAsyncStackful
|
979
|
+
}
|
980
|
+
} else {
|
981
|
+
Abi::LiftSync
|
982
|
+
},
|
983
|
+
);
|
984
|
+
self.check_options(
|
985
|
+
Some(core_ty),
|
986
|
+
&info,
|
987
|
+
&options,
|
988
|
+
types,
|
989
|
+
offset,
|
990
|
+
features,
|
991
|
+
true,
|
992
|
+
)?;
|
993
|
+
|
994
|
+
if core_ty.params() != info.params.as_slice() {
|
995
|
+
bail!(
|
996
|
+
offset,
|
997
|
+
"lowered parameter types `{:?}` do not match parameter types \
|
998
|
+
`{:?}` of core function {core_func_index}",
|
999
|
+
info.params.as_slice(),
|
1000
|
+
core_ty.params(),
|
1001
|
+
);
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
if core_ty.results() != info.results.as_slice() {
|
1005
|
+
bail!(
|
1006
|
+
offset,
|
1007
|
+
"lowered result types `{:?}` do not match result types \
|
1008
|
+
`{:?}` of core function {core_func_index}",
|
1009
|
+
info.results.as_slice(),
|
1010
|
+
core_ty.results()
|
1011
|
+
);
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
self.funcs
|
1015
|
+
.push(self.types[type_index as usize].unwrap_func());
|
1016
|
+
|
1017
|
+
Ok(())
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
pub fn lower_function(
|
1021
|
+
&mut self,
|
1022
|
+
func_index: u32,
|
1023
|
+
options: Vec<CanonicalOption>,
|
1024
|
+
types: &mut TypeAlloc,
|
1025
|
+
offset: usize,
|
1026
|
+
features: &WasmFeatures,
|
1027
|
+
) -> Result<()> {
|
1028
|
+
let ty = &types[self.function_at(func_index, offset)?];
|
1029
|
+
|
1030
|
+
// Lowering a function is for an import, so use a function type that matches
|
1031
|
+
// the expected canonical ABI import signature.
|
1032
|
+
let info = ty.lower(
|
1033
|
+
types,
|
1034
|
+
if options.contains(&CanonicalOption::Async) {
|
1035
|
+
Abi::LowerAsync
|
1036
|
+
} else {
|
1037
|
+
Abi::LowerSync
|
1038
|
+
},
|
1039
|
+
);
|
1040
|
+
|
1041
|
+
self.check_options(None, &info, &options, types, offset, features, true)?;
|
1042
|
+
|
1043
|
+
let id = types.intern_func_type(info.into_func_type(), offset);
|
1044
|
+
self.core_funcs.push(id);
|
1045
|
+
|
1046
|
+
Ok(())
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
pub fn resource_new(
|
1050
|
+
&mut self,
|
1051
|
+
resource: u32,
|
1052
|
+
types: &mut TypeAlloc,
|
1053
|
+
offset: usize,
|
1054
|
+
) -> Result<()> {
|
1055
|
+
let rep = self.check_local_resource(resource, types, offset)?;
|
1056
|
+
let id = types.intern_func_type(FuncType::new([rep], [ValType::I32]), offset);
|
1057
|
+
self.core_funcs.push(id);
|
1058
|
+
Ok(())
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
pub fn resource_drop(
|
1062
|
+
&mut self,
|
1063
|
+
resource: u32,
|
1064
|
+
types: &mut TypeAlloc,
|
1065
|
+
offset: usize,
|
1066
|
+
) -> Result<()> {
|
1067
|
+
self.resource_at(resource, types, offset)?;
|
1068
|
+
let id = types.intern_func_type(FuncType::new([ValType::I32], []), offset);
|
1069
|
+
self.core_funcs.push(id);
|
1070
|
+
Ok(())
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
pub fn resource_rep(
|
1074
|
+
&mut self,
|
1075
|
+
resource: u32,
|
1076
|
+
types: &mut TypeAlloc,
|
1077
|
+
offset: usize,
|
1078
|
+
) -> Result<()> {
|
1079
|
+
let rep = self.check_local_resource(resource, types, offset)?;
|
1080
|
+
let id = types.intern_func_type(FuncType::new([ValType::I32], [rep]), offset);
|
1081
|
+
self.core_funcs.push(id);
|
1082
|
+
Ok(())
|
1083
|
+
}
|
1084
|
+
|
1085
|
+
pub fn task_backpressure(
|
1086
|
+
&mut self,
|
1087
|
+
types: &mut TypeAlloc,
|
1088
|
+
offset: usize,
|
1089
|
+
features: &WasmFeatures,
|
1090
|
+
) -> Result<()> {
|
1091
|
+
if !features.component_model_async() {
|
1092
|
+
bail!(
|
1093
|
+
offset,
|
1094
|
+
"`task.backpressure` requires the component model async feature"
|
1095
|
+
)
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
self.core_funcs
|
1099
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], []), offset));
|
1100
|
+
Ok(())
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
pub fn task_return(
|
1104
|
+
&mut self,
|
1105
|
+
type_index: u32,
|
1106
|
+
types: &mut TypeAlloc,
|
1107
|
+
offset: usize,
|
1108
|
+
features: &WasmFeatures,
|
1109
|
+
) -> Result<()> {
|
1110
|
+
if !features.component_model_async() {
|
1111
|
+
bail!(
|
1112
|
+
offset,
|
1113
|
+
"`task.return` requires the component model async feature"
|
1114
|
+
)
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
let id = self.type_id_at(type_index, offset)?;
|
1118
|
+
let Some(SubType {
|
1119
|
+
composite_type:
|
1120
|
+
CompositeType {
|
1121
|
+
inner: CompositeInnerType::Func(_),
|
1122
|
+
..
|
1123
|
+
},
|
1124
|
+
..
|
1125
|
+
}) = types.get(id)
|
1126
|
+
else {
|
1127
|
+
bail!(offset, "invalid `task.return` type index");
|
1128
|
+
};
|
1129
|
+
|
1130
|
+
self.core_funcs.push(id);
|
1131
|
+
Ok(())
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
pub fn task_wait(
|
1135
|
+
&mut self,
|
1136
|
+
_async_: bool,
|
1137
|
+
memory: u32,
|
1138
|
+
types: &mut TypeAlloc,
|
1139
|
+
offset: usize,
|
1140
|
+
features: &WasmFeatures,
|
1141
|
+
) -> Result<()> {
|
1142
|
+
if !features.component_model_async() {
|
1143
|
+
bail!(
|
1144
|
+
offset,
|
1145
|
+
"`task.wait` requires the component model async feature"
|
1146
|
+
)
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
self.memory_at(memory, offset)?;
|
1150
|
+
|
1151
|
+
self.core_funcs
|
1152
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1153
|
+
Ok(())
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
pub fn task_poll(
|
1157
|
+
&mut self,
|
1158
|
+
_async_: bool,
|
1159
|
+
memory: u32,
|
1160
|
+
types: &mut TypeAlloc,
|
1161
|
+
offset: usize,
|
1162
|
+
features: &WasmFeatures,
|
1163
|
+
) -> Result<()> {
|
1164
|
+
if !features.component_model_async() {
|
1165
|
+
bail!(
|
1166
|
+
offset,
|
1167
|
+
"`task.poll` requires the component model async feature"
|
1168
|
+
)
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
self.memory_at(memory, offset)?;
|
1172
|
+
|
1173
|
+
self.core_funcs
|
1174
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1175
|
+
Ok(())
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
pub fn task_yield(
|
1179
|
+
&mut self,
|
1180
|
+
_async_: bool,
|
1181
|
+
types: &mut TypeAlloc,
|
1182
|
+
offset: usize,
|
1183
|
+
features: &WasmFeatures,
|
1184
|
+
) -> Result<()> {
|
1185
|
+
if !features.component_model_async() {
|
1186
|
+
bail!(
|
1187
|
+
offset,
|
1188
|
+
"`task.yield` requires the component model async feature"
|
1189
|
+
)
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
self.core_funcs
|
1193
|
+
.push(types.intern_func_type(FuncType::new([], []), offset));
|
1194
|
+
Ok(())
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
pub fn subtask_drop(
|
1198
|
+
&mut self,
|
1199
|
+
types: &mut TypeAlloc,
|
1200
|
+
offset: usize,
|
1201
|
+
features: &WasmFeatures,
|
1202
|
+
) -> Result<()> {
|
1203
|
+
if !features.component_model_async() {
|
1204
|
+
bail!(
|
1205
|
+
offset,
|
1206
|
+
"`subtask.drop` requires the component model async feature"
|
1207
|
+
)
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
self.core_funcs
|
1211
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], []), offset));
|
1212
|
+
Ok(())
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
pub fn stream_new(
|
1216
|
+
&mut self,
|
1217
|
+
ty: u32,
|
1218
|
+
types: &mut TypeAlloc,
|
1219
|
+
offset: usize,
|
1220
|
+
features: &WasmFeatures,
|
1221
|
+
) -> Result<()> {
|
1222
|
+
if !features.component_model_async() {
|
1223
|
+
bail!(
|
1224
|
+
offset,
|
1225
|
+
"`stream.new` requires the component model async feature"
|
1226
|
+
)
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1230
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1231
|
+
bail!(offset, "`stream.new` requires a stream type")
|
1232
|
+
};
|
1233
|
+
|
1234
|
+
self.core_funcs
|
1235
|
+
.push(types.intern_func_type(FuncType::new([], [ValType::I32]), offset));
|
1236
|
+
Ok(())
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
pub fn stream_read(
|
1240
|
+
&mut self,
|
1241
|
+
ty: u32,
|
1242
|
+
options: Vec<CanonicalOption>,
|
1243
|
+
types: &mut TypeAlloc,
|
1244
|
+
offset: usize,
|
1245
|
+
features: &WasmFeatures,
|
1246
|
+
) -> Result<()> {
|
1247
|
+
if !features.component_model_async() {
|
1248
|
+
bail!(
|
1249
|
+
offset,
|
1250
|
+
"`stream.read` requires the component model async feature"
|
1251
|
+
)
|
1252
|
+
}
|
1253
|
+
|
1254
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1255
|
+
let ComponentDefinedType::Stream(payload_type) = &types[ty] else {
|
1256
|
+
bail!(offset, "`stream.read` requires a stream type")
|
1257
|
+
};
|
1258
|
+
|
1259
|
+
let mut info = LoweringInfo::default();
|
1260
|
+
info.requires_memory = true;
|
1261
|
+
info.requires_realloc = payload_type
|
1262
|
+
.map(|ty| ty.contains_ptr(types))
|
1263
|
+
.unwrap_or_default();
|
1264
|
+
self.check_options(None, &info, &options, types, offset, features, true)?;
|
1265
|
+
|
1266
|
+
self.core_funcs
|
1267
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 3], [ValType::I32]), offset));
|
1268
|
+
Ok(())
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
pub fn stream_write(
|
1272
|
+
&mut self,
|
1273
|
+
ty: u32,
|
1274
|
+
options: Vec<CanonicalOption>,
|
1275
|
+
types: &mut TypeAlloc,
|
1276
|
+
offset: usize,
|
1277
|
+
features: &WasmFeatures,
|
1278
|
+
) -> Result<()> {
|
1279
|
+
if !features.component_model_async() {
|
1280
|
+
bail!(
|
1281
|
+
offset,
|
1282
|
+
"`stream.write` requires the component model async feature"
|
1283
|
+
)
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1287
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1288
|
+
bail!(offset, "`stream.write` requires a stream type")
|
1289
|
+
};
|
1290
|
+
|
1291
|
+
let mut info = LoweringInfo::default();
|
1292
|
+
info.requires_memory = true;
|
1293
|
+
info.requires_realloc = false;
|
1294
|
+
self.check_options(None, &info, &options, types, offset, features, true)?;
|
1295
|
+
|
1296
|
+
self.core_funcs
|
1297
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 3], [ValType::I32]), offset));
|
1298
|
+
Ok(())
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
pub fn stream_cancel_read(
|
1302
|
+
&mut self,
|
1303
|
+
ty: u32,
|
1304
|
+
_async_: bool,
|
1305
|
+
types: &mut TypeAlloc,
|
1306
|
+
offset: usize,
|
1307
|
+
features: &WasmFeatures,
|
1308
|
+
) -> Result<()> {
|
1309
|
+
if !features.component_model_async() {
|
1310
|
+
bail!(
|
1311
|
+
offset,
|
1312
|
+
"`stream.cancel-read` requires the component model async feature"
|
1313
|
+
)
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1317
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1318
|
+
bail!(offset, "`stream.cancel-read` requires a stream type")
|
1319
|
+
};
|
1320
|
+
|
1321
|
+
self.core_funcs
|
1322
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1323
|
+
Ok(())
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
pub fn stream_cancel_write(
|
1327
|
+
&mut self,
|
1328
|
+
ty: u32,
|
1329
|
+
_async_: bool,
|
1330
|
+
types: &mut TypeAlloc,
|
1331
|
+
offset: usize,
|
1332
|
+
features: &WasmFeatures,
|
1333
|
+
) -> Result<()> {
|
1334
|
+
if !features.component_model_async() {
|
1335
|
+
bail!(
|
1336
|
+
offset,
|
1337
|
+
"`stream.cancel-write` requires the component model async feature"
|
1338
|
+
)
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1342
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1343
|
+
bail!(offset, "`stream.cancel-write` requires a stream type")
|
1344
|
+
};
|
1345
|
+
|
1346
|
+
self.core_funcs
|
1347
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1348
|
+
Ok(())
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
pub fn stream_close_readable(
|
1352
|
+
&mut self,
|
1353
|
+
ty: u32,
|
1354
|
+
types: &mut TypeAlloc,
|
1355
|
+
offset: usize,
|
1356
|
+
features: &WasmFeatures,
|
1357
|
+
) -> Result<()> {
|
1358
|
+
if !features.component_model_async() {
|
1359
|
+
bail!(
|
1360
|
+
offset,
|
1361
|
+
"`stream.close-readable` requires the component model async feature"
|
1362
|
+
)
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1366
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1367
|
+
bail!(offset, "`stream.close-readable` requires a stream type")
|
1368
|
+
};
|
1369
|
+
|
1370
|
+
self.core_funcs
|
1371
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], []), offset));
|
1372
|
+
Ok(())
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
pub fn stream_close_writable(
|
1376
|
+
&mut self,
|
1377
|
+
ty: u32,
|
1378
|
+
types: &mut TypeAlloc,
|
1379
|
+
offset: usize,
|
1380
|
+
features: &WasmFeatures,
|
1381
|
+
) -> Result<()> {
|
1382
|
+
if !features.component_model_async() {
|
1383
|
+
bail!(
|
1384
|
+
offset,
|
1385
|
+
"`stream.close-writable` requires the component model async feature"
|
1386
|
+
)
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1390
|
+
let ComponentDefinedType::Stream(_) = &types[ty] else {
|
1391
|
+
bail!(offset, "`stream.close-writable` requires a stream type")
|
1392
|
+
};
|
1393
|
+
|
1394
|
+
self.core_funcs
|
1395
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], []), offset));
|
1396
|
+
Ok(())
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
pub fn future_new(
|
1400
|
+
&mut self,
|
1401
|
+
ty: u32,
|
1402
|
+
types: &mut TypeAlloc,
|
1403
|
+
offset: usize,
|
1404
|
+
features: &WasmFeatures,
|
1405
|
+
) -> Result<()> {
|
1406
|
+
if !features.component_model_async() {
|
1407
|
+
bail!(
|
1408
|
+
offset,
|
1409
|
+
"`future.new` requires the component model async feature"
|
1410
|
+
)
|
1411
|
+
}
|
1412
|
+
|
1413
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1414
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1415
|
+
bail!(offset, "`future.new` requires a future type")
|
1416
|
+
};
|
1417
|
+
|
1418
|
+
self.core_funcs
|
1419
|
+
.push(types.intern_func_type(FuncType::new([], [ValType::I32]), offset));
|
1420
|
+
Ok(())
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
pub fn future_read(
|
1424
|
+
&mut self,
|
1425
|
+
ty: u32,
|
1426
|
+
options: Vec<CanonicalOption>,
|
1427
|
+
types: &mut TypeAlloc,
|
1428
|
+
offset: usize,
|
1429
|
+
features: &WasmFeatures,
|
1430
|
+
) -> Result<()> {
|
1431
|
+
if !features.component_model_async() {
|
1432
|
+
bail!(
|
1433
|
+
offset,
|
1434
|
+
"`future.read` requires the component model async feature"
|
1435
|
+
)
|
1436
|
+
}
|
1437
|
+
|
1438
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1439
|
+
let ComponentDefinedType::Future(payload_type) = &types[ty] else {
|
1440
|
+
bail!(offset, "`future.read` requires a future type")
|
1441
|
+
};
|
1442
|
+
|
1443
|
+
let mut info = LoweringInfo::default();
|
1444
|
+
info.requires_memory = true;
|
1445
|
+
info.requires_realloc = payload_type
|
1446
|
+
.map(|ty| ty.contains_ptr(types))
|
1447
|
+
.unwrap_or_default();
|
1448
|
+
self.check_options(None, &info, &options, types, offset, features, true)?;
|
1449
|
+
|
1450
|
+
self.core_funcs
|
1451
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], [ValType::I32]), offset));
|
1452
|
+
Ok(())
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
pub fn future_write(
|
1456
|
+
&mut self,
|
1457
|
+
ty: u32,
|
1458
|
+
options: Vec<CanonicalOption>,
|
1459
|
+
types: &mut TypeAlloc,
|
1460
|
+
offset: usize,
|
1461
|
+
features: &WasmFeatures,
|
1462
|
+
) -> Result<()> {
|
1463
|
+
if !features.component_model_async() {
|
1464
|
+
bail!(
|
1465
|
+
offset,
|
1466
|
+
"`future.write` requires the component model async feature"
|
1467
|
+
)
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1471
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1472
|
+
bail!(offset, "`future.write` requires a future type")
|
1473
|
+
};
|
1474
|
+
|
1475
|
+
let mut info = LoweringInfo::default();
|
1476
|
+
info.requires_memory = true;
|
1477
|
+
info.requires_realloc = false;
|
1478
|
+
self.check_options(None, &info, &options, types, offset, features, true)?;
|
1479
|
+
|
1480
|
+
self.core_funcs
|
1481
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], [ValType::I32]), offset));
|
1482
|
+
Ok(())
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
pub fn future_cancel_read(
|
1486
|
+
&mut self,
|
1487
|
+
ty: u32,
|
1488
|
+
_async_: bool,
|
1489
|
+
types: &mut TypeAlloc,
|
1490
|
+
offset: usize,
|
1491
|
+
features: &WasmFeatures,
|
1492
|
+
) -> Result<()> {
|
1493
|
+
if !features.component_model_async() {
|
1494
|
+
bail!(
|
1495
|
+
offset,
|
1496
|
+
"`future.cancel-read` requires the component model async feature"
|
1497
|
+
)
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1501
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1502
|
+
bail!(offset, "`future.cancel-read` requires a future type")
|
1503
|
+
};
|
1504
|
+
|
1505
|
+
self.core_funcs
|
1506
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1507
|
+
Ok(())
|
1508
|
+
}
|
1509
|
+
|
1510
|
+
pub fn future_cancel_write(
|
1511
|
+
&mut self,
|
1512
|
+
ty: u32,
|
1513
|
+
_async_: bool,
|
1514
|
+
types: &mut TypeAlloc,
|
1515
|
+
offset: usize,
|
1516
|
+
features: &WasmFeatures,
|
1517
|
+
) -> Result<()> {
|
1518
|
+
if !features.component_model_async() {
|
1519
|
+
bail!(
|
1520
|
+
offset,
|
1521
|
+
"`future.cancel-write` requires the component model async feature"
|
1522
|
+
)
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1526
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1527
|
+
bail!(offset, "`future.cancel-write` requires a future type")
|
1528
|
+
};
|
1529
|
+
|
1530
|
+
self.core_funcs
|
1531
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], [ValType::I32]), offset));
|
1532
|
+
Ok(())
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
pub fn future_close_readable(
|
1536
|
+
&mut self,
|
1537
|
+
ty: u32,
|
1538
|
+
types: &mut TypeAlloc,
|
1539
|
+
offset: usize,
|
1540
|
+
features: &WasmFeatures,
|
1541
|
+
) -> Result<()> {
|
1542
|
+
if !features.component_model_async() {
|
1543
|
+
bail!(
|
1544
|
+
offset,
|
1545
|
+
"`future.close-readable` requires the component model async feature"
|
1546
|
+
)
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1550
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1551
|
+
bail!(offset, "`future.close-readable` requires a future type")
|
1552
|
+
};
|
1553
|
+
|
1554
|
+
self.core_funcs
|
1555
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], []), offset));
|
1556
|
+
Ok(())
|
1557
|
+
}
|
1558
|
+
|
1559
|
+
pub fn future_close_writable(
|
1560
|
+
&mut self,
|
1561
|
+
ty: u32,
|
1562
|
+
types: &mut TypeAlloc,
|
1563
|
+
offset: usize,
|
1564
|
+
features: &WasmFeatures,
|
1565
|
+
) -> Result<()> {
|
1566
|
+
if !features.component_model_async() {
|
1567
|
+
bail!(
|
1568
|
+
offset,
|
1569
|
+
"`future.close-writable` requires the component model async feature"
|
1570
|
+
)
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
let ty = self.defined_type_at(ty, offset)?;
|
1574
|
+
let ComponentDefinedType::Future(_) = &types[ty] else {
|
1575
|
+
bail!(offset, "`future.close-writable` requires a future type")
|
1576
|
+
};
|
1577
|
+
|
1578
|
+
self.core_funcs
|
1579
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], []), offset));
|
1580
|
+
Ok(())
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
pub fn error_context_new(
|
1584
|
+
&mut self,
|
1585
|
+
options: Vec<CanonicalOption>,
|
1586
|
+
types: &mut TypeAlloc,
|
1587
|
+
offset: usize,
|
1588
|
+
features: &WasmFeatures,
|
1589
|
+
) -> Result<()> {
|
1590
|
+
if !features.component_model_async() {
|
1591
|
+
bail!(
|
1592
|
+
offset,
|
1593
|
+
"`error-context.new` requires the component model async feature"
|
1594
|
+
)
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
let mut info = LoweringInfo::default();
|
1598
|
+
info.requires_memory = true;
|
1599
|
+
info.requires_realloc = false;
|
1600
|
+
self.check_options(None, &info, &options, types, offset, features, false)?;
|
1601
|
+
|
1602
|
+
self.core_funcs
|
1603
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], [ValType::I32]), offset));
|
1604
|
+
Ok(())
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
pub fn error_context_debug_message(
|
1608
|
+
&mut self,
|
1609
|
+
options: Vec<CanonicalOption>,
|
1610
|
+
types: &mut TypeAlloc,
|
1611
|
+
offset: usize,
|
1612
|
+
features: &WasmFeatures,
|
1613
|
+
) -> Result<()> {
|
1614
|
+
if !features.component_model_async() {
|
1615
|
+
bail!(
|
1616
|
+
offset,
|
1617
|
+
"`error-context.debug-message` requires the component model async feature"
|
1618
|
+
)
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
let mut info = LoweringInfo::default();
|
1622
|
+
info.requires_memory = true;
|
1623
|
+
info.requires_realloc = true;
|
1624
|
+
self.check_options(None, &info, &options, types, offset, features, false)?;
|
1625
|
+
|
1626
|
+
self.core_funcs
|
1627
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32; 2], []), offset));
|
1628
|
+
Ok(())
|
1629
|
+
}
|
1630
|
+
|
1631
|
+
pub fn error_context_drop(
|
1632
|
+
&mut self,
|
1633
|
+
types: &mut TypeAlloc,
|
1634
|
+
offset: usize,
|
1635
|
+
features: &WasmFeatures,
|
1636
|
+
) -> Result<()> {
|
1637
|
+
if !features.component_model_async() {
|
1638
|
+
bail!(
|
1639
|
+
offset,
|
1640
|
+
"`error-context.drop` requires the component model async feature"
|
1641
|
+
)
|
1642
|
+
}
|
1643
|
+
|
1644
|
+
self.core_funcs
|
1645
|
+
.push(types.intern_func_type(FuncType::new([ValType::I32], []), offset));
|
1646
|
+
Ok(())
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
fn check_local_resource(&self, idx: u32, types: &TypeList, offset: usize) -> Result<ValType> {
|
1650
|
+
let resource = self.resource_at(idx, types, offset)?;
|
1651
|
+
match self
|
1652
|
+
.defined_resources
|
1653
|
+
.get(&resource.resource())
|
1654
|
+
.and_then(|rep| *rep)
|
1655
|
+
{
|
1656
|
+
Some(ty) => Ok(ty),
|
1657
|
+
None => bail!(offset, "type {idx} is not a local resource"),
|
1658
|
+
}
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
fn resource_at<'a>(
|
1662
|
+
&self,
|
1663
|
+
idx: u32,
|
1664
|
+
_types: &'a TypeList,
|
1665
|
+
offset: usize,
|
1666
|
+
) -> Result<AliasableResourceId> {
|
1667
|
+
if let ComponentAnyTypeId::Resource(id) = self.component_type_at(idx, offset)? {
|
1668
|
+
return Ok(id);
|
1669
|
+
}
|
1670
|
+
bail!(offset, "type index {} is not a resource type", idx)
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
pub fn thread_spawn(
|
1674
|
+
&mut self,
|
1675
|
+
func_ty_index: u32,
|
1676
|
+
types: &mut TypeAlloc,
|
1677
|
+
offset: usize,
|
1678
|
+
features: &WasmFeatures,
|
1679
|
+
) -> Result<()> {
|
1680
|
+
if !features.shared_everything_threads() {
|
1681
|
+
bail!(
|
1682
|
+
offset,
|
1683
|
+
"`thread.spawn` requires the shared-everything-threads proposal"
|
1684
|
+
)
|
1685
|
+
}
|
1686
|
+
|
1687
|
+
// Validate the type accepted by `thread.spawn`.
|
1688
|
+
let core_type_id = match self.core_type_at(func_ty_index, offset)? {
|
1689
|
+
ComponentCoreTypeId::Sub(c) => c,
|
1690
|
+
ComponentCoreTypeId::Module(_) => bail!(offset, "expected a core function type"),
|
1691
|
+
};
|
1692
|
+
let sub_ty = &types[core_type_id];
|
1693
|
+
if !sub_ty.composite_type.shared {
|
1694
|
+
bail!(offset, "spawn type must be shared");
|
1695
|
+
}
|
1696
|
+
match &sub_ty.composite_type.inner {
|
1697
|
+
CompositeInnerType::Func(func_ty) => {
|
1698
|
+
if func_ty.params() != [ValType::I32] {
|
1699
|
+
bail!(
|
1700
|
+
offset,
|
1701
|
+
"spawn function must take a single `i32` argument (currently)"
|
1702
|
+
);
|
1703
|
+
}
|
1704
|
+
if func_ty.results() != [] {
|
1705
|
+
bail!(offset, "spawn function must not return any values");
|
1706
|
+
}
|
1707
|
+
}
|
1708
|
+
_ => bail!(offset, "spawn type must be a function"),
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
// Insert the core function.
|
1712
|
+
let packed_index = PackedIndex::from_id(core_type_id).ok_or_else(|| {
|
1713
|
+
format_err!(offset, "implementation limit: too many types in `TypeList`")
|
1714
|
+
})?;
|
1715
|
+
let start_func_ref = RefType::concrete(true, packed_index);
|
1716
|
+
let func_ty = FuncType::new([ValType::Ref(start_func_ref), ValType::I32], [ValType::I32]);
|
1717
|
+
let core_ty = SubType::func(func_ty, true);
|
1718
|
+
let id = types.intern_sub_type(core_ty, offset);
|
1719
|
+
self.core_funcs.push(id);
|
1720
|
+
|
1721
|
+
Ok(())
|
1722
|
+
}
|
1723
|
+
|
1724
|
+
pub fn thread_hw_concurrency(
|
1725
|
+
&mut self,
|
1726
|
+
types: &mut TypeAlloc,
|
1727
|
+
offset: usize,
|
1728
|
+
features: &WasmFeatures,
|
1729
|
+
) -> Result<()> {
|
1730
|
+
if !features.shared_everything_threads() {
|
1731
|
+
bail!(
|
1732
|
+
offset,
|
1733
|
+
"`thread.hw_concurrency` requires the shared-everything-threads proposal"
|
1734
|
+
)
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
let func_ty = FuncType::new([], [ValType::I32]);
|
1738
|
+
let core_ty = SubType::func(func_ty, true);
|
1739
|
+
let id = types.intern_sub_type(core_ty, offset);
|
1740
|
+
self.core_funcs.push(id);
|
1741
|
+
|
1742
|
+
Ok(())
|
1743
|
+
}
|
1744
|
+
|
1745
|
+
pub fn add_component(&mut self, component: ComponentType, types: &mut TypeAlloc) -> Result<()> {
|
1746
|
+
let id = types.push_ty(component);
|
1747
|
+
self.components.push(id);
|
1748
|
+
Ok(())
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
pub fn add_instance(
|
1752
|
+
&mut self,
|
1753
|
+
instance: crate::ComponentInstance,
|
1754
|
+
features: &WasmFeatures,
|
1755
|
+
types: &mut TypeAlloc,
|
1756
|
+
offset: usize,
|
1757
|
+
) -> Result<()> {
|
1758
|
+
let instance = match instance {
|
1759
|
+
crate::ComponentInstance::Instantiate {
|
1760
|
+
component_index,
|
1761
|
+
args,
|
1762
|
+
} => self.instantiate_component(
|
1763
|
+
component_index,
|
1764
|
+
args.into_vec(),
|
1765
|
+
features,
|
1766
|
+
types,
|
1767
|
+
offset,
|
1768
|
+
)?,
|
1769
|
+
crate::ComponentInstance::FromExports(exports) => {
|
1770
|
+
self.instantiate_component_exports(exports.into_vec(), features, types, offset)?
|
1771
|
+
}
|
1772
|
+
};
|
1773
|
+
|
1774
|
+
self.instances.push(instance);
|
1775
|
+
|
1776
|
+
Ok(())
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
pub fn add_alias(
|
1780
|
+
components: &mut [Self],
|
1781
|
+
alias: crate::ComponentAlias,
|
1782
|
+
features: &WasmFeatures,
|
1783
|
+
types: &mut TypeAlloc,
|
1784
|
+
offset: usize,
|
1785
|
+
) -> Result<()> {
|
1786
|
+
match alias {
|
1787
|
+
crate::ComponentAlias::InstanceExport {
|
1788
|
+
instance_index,
|
1789
|
+
kind,
|
1790
|
+
name,
|
1791
|
+
} => components.last_mut().unwrap().alias_instance_export(
|
1792
|
+
instance_index,
|
1793
|
+
kind,
|
1794
|
+
name,
|
1795
|
+
features,
|
1796
|
+
types,
|
1797
|
+
offset,
|
1798
|
+
),
|
1799
|
+
crate::ComponentAlias::CoreInstanceExport {
|
1800
|
+
instance_index,
|
1801
|
+
kind,
|
1802
|
+
name,
|
1803
|
+
} => components.last_mut().unwrap().alias_core_instance_export(
|
1804
|
+
instance_index,
|
1805
|
+
kind,
|
1806
|
+
name,
|
1807
|
+
types,
|
1808
|
+
offset,
|
1809
|
+
),
|
1810
|
+
crate::ComponentAlias::Outer { kind, count, index } => match kind {
|
1811
|
+
ComponentOuterAliasKind::CoreModule => {
|
1812
|
+
Self::alias_module(components, count, index, offset)
|
1813
|
+
}
|
1814
|
+
ComponentOuterAliasKind::CoreType => {
|
1815
|
+
Self::alias_core_type(components, count, index, offset)
|
1816
|
+
}
|
1817
|
+
ComponentOuterAliasKind::Type => {
|
1818
|
+
Self::alias_type(components, count, index, types, offset)
|
1819
|
+
}
|
1820
|
+
ComponentOuterAliasKind::Component => {
|
1821
|
+
Self::alias_component(components, count, index, offset)
|
1822
|
+
}
|
1823
|
+
},
|
1824
|
+
}
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
pub fn add_start(
|
1828
|
+
&mut self,
|
1829
|
+
func_index: u32,
|
1830
|
+
args: &[u32],
|
1831
|
+
results: u32,
|
1832
|
+
features: &WasmFeatures,
|
1833
|
+
types: &mut TypeList,
|
1834
|
+
offset: usize,
|
1835
|
+
) -> Result<()> {
|
1836
|
+
if !features.component_model_values() {
|
1837
|
+
bail!(
|
1838
|
+
offset,
|
1839
|
+
"support for component model `value`s is not enabled"
|
1840
|
+
);
|
1841
|
+
}
|
1842
|
+
if self.has_start {
|
1843
|
+
return Err(BinaryReaderError::new(
|
1844
|
+
"component cannot have more than one start function",
|
1845
|
+
offset,
|
1846
|
+
));
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
let ft = &types[self.function_at(func_index, offset)?];
|
1850
|
+
|
1851
|
+
if ft.params.len() != args.len() {
|
1852
|
+
bail!(
|
1853
|
+
offset,
|
1854
|
+
"component start function requires {} arguments but was given {}",
|
1855
|
+
ft.params.len(),
|
1856
|
+
args.len()
|
1857
|
+
);
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
if ft.results.len() as u32 != results {
|
1861
|
+
bail!(
|
1862
|
+
offset,
|
1863
|
+
"component start function has a result count of {results} \
|
1864
|
+
but the function type has a result count of {type_results}",
|
1865
|
+
type_results = ft.results.len(),
|
1866
|
+
);
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
let cx = SubtypeCx::new(types, types);
|
1870
|
+
for (i, ((_, ty), arg)) in ft.params.iter().zip(args).enumerate() {
|
1871
|
+
// Ensure the value's type is a subtype of the parameter type
|
1872
|
+
cx.component_val_type(self.value_at(*arg, offset)?, ty, offset)
|
1873
|
+
.with_context(|| {
|
1874
|
+
format!("value type mismatch for component start function argument {i}")
|
1875
|
+
})?;
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
for (_, ty) in ft.results.iter() {
|
1879
|
+
self.values.push((*ty, false));
|
1880
|
+
}
|
1881
|
+
|
1882
|
+
self.has_start = true;
|
1883
|
+
|
1884
|
+
Ok(())
|
1885
|
+
}
|
1886
|
+
|
1887
|
+
fn check_options(
|
1888
|
+
&self,
|
1889
|
+
core_ty: Option<&FuncType>,
|
1890
|
+
info: &LoweringInfo,
|
1891
|
+
options: &[CanonicalOption],
|
1892
|
+
types: &TypeList,
|
1893
|
+
offset: usize,
|
1894
|
+
features: &WasmFeatures,
|
1895
|
+
allow_async: bool,
|
1896
|
+
) -> Result<()> {
|
1897
|
+
fn display(option: CanonicalOption) -> &'static str {
|
1898
|
+
match option {
|
1899
|
+
CanonicalOption::UTF8 => "utf8",
|
1900
|
+
CanonicalOption::UTF16 => "utf16",
|
1901
|
+
CanonicalOption::CompactUTF16 => "latin1-utf16",
|
1902
|
+
CanonicalOption::Memory(_) => "memory",
|
1903
|
+
CanonicalOption::Realloc(_) => "realloc",
|
1904
|
+
CanonicalOption::PostReturn(_) => "post-return",
|
1905
|
+
CanonicalOption::Async => "async",
|
1906
|
+
CanonicalOption::Callback(_) => "callback",
|
1907
|
+
}
|
1908
|
+
}
|
1909
|
+
|
1910
|
+
let mut encoding = None;
|
1911
|
+
let mut memory = None;
|
1912
|
+
let mut realloc = None;
|
1913
|
+
let mut post_return = None;
|
1914
|
+
let mut async_ = false;
|
1915
|
+
let mut callback = None;
|
1916
|
+
|
1917
|
+
for option in options {
|
1918
|
+
match option {
|
1919
|
+
CanonicalOption::UTF8 | CanonicalOption::UTF16 | CanonicalOption::CompactUTF16 => {
|
1920
|
+
match encoding {
|
1921
|
+
Some(existing) => {
|
1922
|
+
bail!(
|
1923
|
+
offset,
|
1924
|
+
"canonical encoding option `{}` conflicts with option `{}`",
|
1925
|
+
display(existing),
|
1926
|
+
display(*option),
|
1927
|
+
)
|
1928
|
+
}
|
1929
|
+
None => encoding = Some(*option),
|
1930
|
+
}
|
1931
|
+
}
|
1932
|
+
CanonicalOption::Memory(idx) => {
|
1933
|
+
memory = match memory {
|
1934
|
+
None => {
|
1935
|
+
self.memory_at(*idx, offset)?;
|
1936
|
+
Some(*idx)
|
1937
|
+
}
|
1938
|
+
Some(_) => {
|
1939
|
+
return Err(BinaryReaderError::new(
|
1940
|
+
"canonical option `memory` is specified more than once",
|
1941
|
+
offset,
|
1942
|
+
))
|
1943
|
+
}
|
1944
|
+
}
|
1945
|
+
}
|
1946
|
+
CanonicalOption::Realloc(idx) => {
|
1947
|
+
realloc = match realloc {
|
1948
|
+
None => {
|
1949
|
+
let ty = types[self.core_function_at(*idx, offset)?].unwrap_func();
|
1950
|
+
if ty.params()
|
1951
|
+
!= [ValType::I32, ValType::I32, ValType::I32, ValType::I32]
|
1952
|
+
|| ty.results() != [ValType::I32]
|
1953
|
+
{
|
1954
|
+
return Err(BinaryReaderError::new(
|
1955
|
+
"canonical option `realloc` uses a core function with an incorrect signature",
|
1956
|
+
offset,
|
1957
|
+
));
|
1958
|
+
}
|
1959
|
+
Some(*idx)
|
1960
|
+
}
|
1961
|
+
Some(_) => {
|
1962
|
+
return Err(BinaryReaderError::new(
|
1963
|
+
"canonical option `realloc` is specified more than once",
|
1964
|
+
offset,
|
1965
|
+
))
|
1966
|
+
}
|
1967
|
+
}
|
1968
|
+
}
|
1969
|
+
CanonicalOption::PostReturn(idx) => {
|
1970
|
+
post_return = match post_return {
|
1971
|
+
None => {
|
1972
|
+
let core_ty = core_ty.ok_or_else(|| {
|
1973
|
+
BinaryReaderError::new(
|
1974
|
+
"canonical option `post-return` cannot be specified for lowerings",
|
1975
|
+
offset,
|
1976
|
+
)
|
1977
|
+
})?;
|
1978
|
+
|
1979
|
+
let ty = types[self.core_function_at(*idx, offset)?].unwrap_func();
|
1980
|
+
|
1981
|
+
if ty.params() != core_ty.results() || !ty.results().is_empty() {
|
1982
|
+
return Err(BinaryReaderError::new(
|
1983
|
+
"canonical option `post-return` uses a core function with an incorrect signature",
|
1984
|
+
offset,
|
1985
|
+
));
|
1986
|
+
}
|
1987
|
+
Some(*idx)
|
1988
|
+
}
|
1989
|
+
Some(_) => {
|
1990
|
+
return Err(BinaryReaderError::new(
|
1991
|
+
"canonical option `post-return` is specified more than once",
|
1992
|
+
offset,
|
1993
|
+
))
|
1994
|
+
}
|
1995
|
+
}
|
1996
|
+
}
|
1997
|
+
CanonicalOption::Async => {
|
1998
|
+
if async_ {
|
1999
|
+
return Err(BinaryReaderError::new(
|
2000
|
+
"canonical option `async` is specified more than once",
|
2001
|
+
offset,
|
2002
|
+
));
|
2003
|
+
} else {
|
2004
|
+
if !features.component_model_async() {
|
2005
|
+
bail!(
|
2006
|
+
offset,
|
2007
|
+
"canonical option `async` requires the component model async feature"
|
2008
|
+
);
|
2009
|
+
}
|
2010
|
+
|
2011
|
+
async_ = true;
|
2012
|
+
}
|
2013
|
+
}
|
2014
|
+
CanonicalOption::Callback(idx) => {
|
2015
|
+
callback = match callback {
|
2016
|
+
None => {
|
2017
|
+
if core_ty.is_none() {
|
2018
|
+
return Err(BinaryReaderError::new(
|
2019
|
+
"canonical option `callback` cannot be specified for lowerings",
|
2020
|
+
offset,
|
2021
|
+
));
|
2022
|
+
}
|
2023
|
+
|
2024
|
+
let ty = types[self.core_function_at(*idx, offset)?].unwrap_func();
|
2025
|
+
|
2026
|
+
if ty.params() != [ValType::I32; 4] && ty.params() != [ValType::I32] {
|
2027
|
+
return Err(BinaryReaderError::new(
|
2028
|
+
"canonical option `callback` uses a core function with an incorrect signature",
|
2029
|
+
offset,
|
2030
|
+
));
|
2031
|
+
}
|
2032
|
+
Some(*idx)
|
2033
|
+
}
|
2034
|
+
Some(_) => {
|
2035
|
+
return Err(BinaryReaderError::new(
|
2036
|
+
"canonical option `callback` is specified more than once",
|
2037
|
+
offset,
|
2038
|
+
))
|
2039
|
+
}
|
2040
|
+
}
|
2041
|
+
}
|
2042
|
+
}
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
if async_ && !allow_async {
|
2046
|
+
bail!(offset, "async option not allowed here")
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
if callback.is_some() && !async_ {
|
2050
|
+
bail!(offset, "cannot specify callback without lifting async")
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
if post_return.is_some() && async_ {
|
2054
|
+
bail!(
|
2055
|
+
offset,
|
2056
|
+
"cannot specify post-return function when lifting async"
|
2057
|
+
)
|
2058
|
+
}
|
2059
|
+
|
2060
|
+
if info.requires_memory && memory.is_none() {
|
2061
|
+
return Err(BinaryReaderError::new(
|
2062
|
+
"canonical option `memory` is required",
|
2063
|
+
offset,
|
2064
|
+
));
|
2065
|
+
}
|
2066
|
+
|
2067
|
+
if info.requires_realloc && realloc.is_none() {
|
2068
|
+
return Err(BinaryReaderError::new(
|
2069
|
+
"canonical option `realloc` is required",
|
2070
|
+
offset,
|
2071
|
+
));
|
2072
|
+
}
|
2073
|
+
|
2074
|
+
Ok(())
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
fn check_type_ref(
|
2078
|
+
&mut self,
|
2079
|
+
ty: &ComponentTypeRef,
|
2080
|
+
features: &WasmFeatures,
|
2081
|
+
types: &mut TypeAlloc,
|
2082
|
+
offset: usize,
|
2083
|
+
) -> Result<ComponentEntityType> {
|
2084
|
+
Ok(match ty {
|
2085
|
+
ComponentTypeRef::Module(index) => {
|
2086
|
+
let id = self.core_type_at(*index, offset)?;
|
2087
|
+
match id {
|
2088
|
+
ComponentCoreTypeId::Sub(_) => {
|
2089
|
+
bail!(offset, "core type index {index} is not a module type")
|
2090
|
+
}
|
2091
|
+
ComponentCoreTypeId::Module(id) => ComponentEntityType::Module(id),
|
2092
|
+
}
|
2093
|
+
}
|
2094
|
+
ComponentTypeRef::Func(index) => {
|
2095
|
+
let id = self.component_type_at(*index, offset)?;
|
2096
|
+
match id {
|
2097
|
+
ComponentAnyTypeId::Func(id) => ComponentEntityType::Func(id),
|
2098
|
+
_ => bail!(offset, "type index {index} is not a function type"),
|
2099
|
+
}
|
2100
|
+
}
|
2101
|
+
ComponentTypeRef::Value(ty) => {
|
2102
|
+
self.check_value_support(features, offset)?;
|
2103
|
+
let ty = match ty {
|
2104
|
+
crate::ComponentValType::Primitive(ty) => ComponentValType::Primitive(*ty),
|
2105
|
+
crate::ComponentValType::Type(index) => {
|
2106
|
+
ComponentValType::Type(self.defined_type_at(*index, offset)?)
|
2107
|
+
}
|
2108
|
+
};
|
2109
|
+
ComponentEntityType::Value(ty)
|
2110
|
+
}
|
2111
|
+
ComponentTypeRef::Type(TypeBounds::Eq(index)) => {
|
2112
|
+
let referenced = self.component_type_at(*index, offset)?;
|
2113
|
+
let created = types.with_unique(referenced);
|
2114
|
+
ComponentEntityType::Type {
|
2115
|
+
referenced,
|
2116
|
+
created,
|
2117
|
+
}
|
2118
|
+
}
|
2119
|
+
ComponentTypeRef::Type(TypeBounds::SubResource) => {
|
2120
|
+
let id = types.alloc_resource_id();
|
2121
|
+
ComponentEntityType::Type {
|
2122
|
+
referenced: id.into(),
|
2123
|
+
created: id.into(),
|
2124
|
+
}
|
2125
|
+
}
|
2126
|
+
ComponentTypeRef::Instance(index) => {
|
2127
|
+
let id = self.component_type_at(*index, offset)?;
|
2128
|
+
match id {
|
2129
|
+
ComponentAnyTypeId::Instance(id) => ComponentEntityType::Instance(id),
|
2130
|
+
_ => bail!(offset, "type index {index} is not an instance type"),
|
2131
|
+
}
|
2132
|
+
}
|
2133
|
+
ComponentTypeRef::Component(index) => {
|
2134
|
+
let id = self.component_type_at(*index, offset)?;
|
2135
|
+
match id {
|
2136
|
+
ComponentAnyTypeId::Component(id) => ComponentEntityType::Component(id),
|
2137
|
+
_ => bail!(offset, "type index {index} is not a component type"),
|
2138
|
+
}
|
2139
|
+
}
|
2140
|
+
})
|
2141
|
+
}
|
2142
|
+
|
2143
|
+
pub fn export_to_entity_type(
|
2144
|
+
&mut self,
|
2145
|
+
export: &crate::ComponentExport,
|
2146
|
+
features: &WasmFeatures,
|
2147
|
+
types: &mut TypeAlloc,
|
2148
|
+
offset: usize,
|
2149
|
+
) -> Result<ComponentEntityType> {
|
2150
|
+
let actual = match export.kind {
|
2151
|
+
ComponentExternalKind::Module => {
|
2152
|
+
ComponentEntityType::Module(self.module_at(export.index, offset)?)
|
2153
|
+
}
|
2154
|
+
ComponentExternalKind::Func => {
|
2155
|
+
ComponentEntityType::Func(self.function_at(export.index, offset)?)
|
2156
|
+
}
|
2157
|
+
ComponentExternalKind::Value => {
|
2158
|
+
self.check_value_support(features, offset)?;
|
2159
|
+
ComponentEntityType::Value(*self.value_at(export.index, offset)?)
|
2160
|
+
}
|
2161
|
+
ComponentExternalKind::Type => {
|
2162
|
+
let referenced = self.component_type_at(export.index, offset)?;
|
2163
|
+
let created = types.with_unique(referenced);
|
2164
|
+
ComponentEntityType::Type {
|
2165
|
+
referenced,
|
2166
|
+
created,
|
2167
|
+
}
|
2168
|
+
}
|
2169
|
+
ComponentExternalKind::Instance => {
|
2170
|
+
ComponentEntityType::Instance(self.instance_at(export.index, offset)?)
|
2171
|
+
}
|
2172
|
+
ComponentExternalKind::Component => {
|
2173
|
+
ComponentEntityType::Component(self.component_at(export.index, offset)?)
|
2174
|
+
}
|
2175
|
+
};
|
2176
|
+
|
2177
|
+
let ascribed = match &export.ty {
|
2178
|
+
Some(ty) => self.check_type_ref(ty, features, types, offset)?,
|
2179
|
+
None => return Ok(actual),
|
2180
|
+
};
|
2181
|
+
|
2182
|
+
SubtypeCx::new(types, types)
|
2183
|
+
.component_entity_type(&actual, &ascribed, offset)
|
2184
|
+
.with_context(|| "ascribed type of export is not compatible with item's type")?;
|
2185
|
+
|
2186
|
+
Ok(ascribed)
|
2187
|
+
}
|
2188
|
+
|
2189
|
+
fn create_module_type(
|
2190
|
+
components: &[Self],
|
2191
|
+
decls: Vec<crate::ModuleTypeDeclaration>,
|
2192
|
+
features: &WasmFeatures,
|
2193
|
+
types: &mut TypeAlloc,
|
2194
|
+
offset: usize,
|
2195
|
+
) -> Result<ModuleType> {
|
2196
|
+
let mut state = Module::default();
|
2197
|
+
|
2198
|
+
for decl in decls {
|
2199
|
+
match decl {
|
2200
|
+
crate::ModuleTypeDeclaration::Type(rec) => {
|
2201
|
+
state.add_types(rec, features, types, offset, true)?;
|
2202
|
+
}
|
2203
|
+
crate::ModuleTypeDeclaration::Export { name, mut ty } => {
|
2204
|
+
let ty = state.check_type_ref(&mut ty, features, types, offset)?;
|
2205
|
+
state.add_export(name, ty, features, offset, true, types)?;
|
2206
|
+
}
|
2207
|
+
crate::ModuleTypeDeclaration::OuterAlias { kind, count, index } => {
|
2208
|
+
match kind {
|
2209
|
+
crate::OuterAliasKind::Type => {
|
2210
|
+
let ty = if count == 0 {
|
2211
|
+
// Local alias, check the local module state
|
2212
|
+
ComponentCoreTypeId::Sub(state.type_id_at(index, offset)?)
|
2213
|
+
} else {
|
2214
|
+
// Otherwise, check the enclosing component state
|
2215
|
+
let component =
|
2216
|
+
Self::check_alias_count(components, count - 1, offset)?;
|
2217
|
+
component.core_type_at(index, offset)?
|
2218
|
+
};
|
2219
|
+
|
2220
|
+
check_max(state.types.len(), 1, MAX_WASM_TYPES, "types", offset)?;
|
2221
|
+
|
2222
|
+
match ty {
|
2223
|
+
ComponentCoreTypeId::Sub(ty) => state.types.push(ty),
|
2224
|
+
// TODO https://github.com/WebAssembly/component-model/issues/265
|
2225
|
+
ComponentCoreTypeId::Module(_) => bail!(
|
2226
|
+
offset,
|
2227
|
+
"not implemented: aliasing core module types into a core \
|
2228
|
+
module's types index space"
|
2229
|
+
),
|
2230
|
+
}
|
2231
|
+
}
|
2232
|
+
}
|
2233
|
+
}
|
2234
|
+
crate::ModuleTypeDeclaration::Import(import) => {
|
2235
|
+
state.add_import(import, features, types, offset)?;
|
2236
|
+
}
|
2237
|
+
}
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
let imports = state.imports_for_module_type(offset)?;
|
2241
|
+
|
2242
|
+
Ok(ModuleType {
|
2243
|
+
info: TypeInfo::core(state.type_size),
|
2244
|
+
imports,
|
2245
|
+
exports: state.exports,
|
2246
|
+
})
|
2247
|
+
}
|
2248
|
+
|
2249
|
+
fn create_component_type(
|
2250
|
+
components: &mut Vec<Self>,
|
2251
|
+
decls: Vec<crate::ComponentTypeDeclaration>,
|
2252
|
+
features: &WasmFeatures,
|
2253
|
+
types: &mut TypeAlloc,
|
2254
|
+
offset: usize,
|
2255
|
+
) -> Result<ComponentType> {
|
2256
|
+
components.push(ComponentState::new(ComponentKind::ComponentType));
|
2257
|
+
|
2258
|
+
for decl in decls {
|
2259
|
+
match decl {
|
2260
|
+
crate::ComponentTypeDeclaration::CoreType(ty) => {
|
2261
|
+
Self::add_core_type(components, ty, features, types, offset, true)?;
|
2262
|
+
}
|
2263
|
+
crate::ComponentTypeDeclaration::Type(ty) => {
|
2264
|
+
Self::add_type(components, ty, features, types, offset, true)?;
|
2265
|
+
}
|
2266
|
+
crate::ComponentTypeDeclaration::Export { name, ty } => {
|
2267
|
+
let current = components.last_mut().unwrap();
|
2268
|
+
let ty = current.check_type_ref(&ty, features, types, offset)?;
|
2269
|
+
current.add_export(name, ty, features, types, offset, true)?;
|
2270
|
+
}
|
2271
|
+
crate::ComponentTypeDeclaration::Import(import) => {
|
2272
|
+
components
|
2273
|
+
.last_mut()
|
2274
|
+
.unwrap()
|
2275
|
+
.add_import(import, features, types, offset)?;
|
2276
|
+
}
|
2277
|
+
crate::ComponentTypeDeclaration::Alias(alias) => {
|
2278
|
+
Self::add_alias(components, alias, features, types, offset)?;
|
2279
|
+
}
|
2280
|
+
};
|
2281
|
+
}
|
2282
|
+
|
2283
|
+
components.pop().unwrap().finish(types, offset)
|
2284
|
+
}
|
2285
|
+
|
2286
|
+
fn create_instance_type(
|
2287
|
+
components: &mut Vec<Self>,
|
2288
|
+
decls: Vec<crate::InstanceTypeDeclaration>,
|
2289
|
+
features: &WasmFeatures,
|
2290
|
+
types: &mut TypeAlloc,
|
2291
|
+
offset: usize,
|
2292
|
+
) -> Result<ComponentInstanceType> {
|
2293
|
+
components.push(ComponentState::new(ComponentKind::InstanceType));
|
2294
|
+
|
2295
|
+
for decl in decls {
|
2296
|
+
match decl {
|
2297
|
+
crate::InstanceTypeDeclaration::CoreType(ty) => {
|
2298
|
+
Self::add_core_type(components, ty, features, types, offset, true)?;
|
2299
|
+
}
|
2300
|
+
crate::InstanceTypeDeclaration::Type(ty) => {
|
2301
|
+
Self::add_type(components, ty, features, types, offset, true)?;
|
2302
|
+
}
|
2303
|
+
crate::InstanceTypeDeclaration::Export { name, ty } => {
|
2304
|
+
let current = components.last_mut().unwrap();
|
2305
|
+
let ty = current.check_type_ref(&ty, features, types, offset)?;
|
2306
|
+
current.add_export(name, ty, features, types, offset, true)?;
|
2307
|
+
}
|
2308
|
+
crate::InstanceTypeDeclaration::Alias(alias) => {
|
2309
|
+
Self::add_alias(components, alias, features, types, offset)?;
|
2310
|
+
}
|
2311
|
+
};
|
2312
|
+
}
|
2313
|
+
|
2314
|
+
let mut state = components.pop().unwrap();
|
2315
|
+
|
2316
|
+
assert!(state.imported_resources.is_empty());
|
2317
|
+
|
2318
|
+
Ok(ComponentInstanceType {
|
2319
|
+
info: state.type_info,
|
2320
|
+
|
2321
|
+
// The defined resources for this instance type are those listed on
|
2322
|
+
// the component state. The path to each defined resource is
|
2323
|
+
// guaranteed to live within the `explicit_resources` map since,
|
2324
|
+
// when in the type context, the introduction of any defined
|
2325
|
+
// resource must have been done with `(export "x" (type (sub
|
2326
|
+
// resource)))` which, in a sense, "fuses" the introduction of the
|
2327
|
+
// variable with the export. This means that all defined resources,
|
2328
|
+
// if any, should be guaranteed to have an `explicit_resources` path
|
2329
|
+
// listed.
|
2330
|
+
defined_resources: mem::take(&mut state.defined_resources)
|
2331
|
+
.into_iter()
|
2332
|
+
.map(|(id, rep)| {
|
2333
|
+
assert!(rep.is_none());
|
2334
|
+
id
|
2335
|
+
})
|
2336
|
+
.collect(),
|
2337
|
+
|
2338
|
+
// The map of what resources are explicitly exported and where
|
2339
|
+
// they're exported is plumbed through as-is.
|
2340
|
+
explicit_resources: mem::take(&mut state.explicit_resources),
|
2341
|
+
|
2342
|
+
exports: mem::take(&mut state.exports),
|
2343
|
+
})
|
2344
|
+
}
|
2345
|
+
|
2346
|
+
fn create_function_type(
|
2347
|
+
&self,
|
2348
|
+
ty: crate::ComponentFuncType,
|
2349
|
+
types: &TypeList,
|
2350
|
+
features: &WasmFeatures,
|
2351
|
+
offset: usize,
|
2352
|
+
) -> Result<ComponentFuncType> {
|
2353
|
+
let mut info = TypeInfo::new();
|
2354
|
+
|
2355
|
+
if ty.results.type_count() > 1 && !features.component_model_multiple_returns() {
|
2356
|
+
bail!(
|
2357
|
+
offset,
|
2358
|
+
"multiple returns on a function is now a gated feature \
|
2359
|
+
-- https://github.com/WebAssembly/component-model/pull/368"
|
2360
|
+
);
|
2361
|
+
}
|
2362
|
+
|
2363
|
+
let mut set = Set::default();
|
2364
|
+
set.reserve(core::cmp::max(ty.params.len(), ty.results.type_count()));
|
2365
|
+
|
2366
|
+
let params = ty
|
2367
|
+
.params
|
2368
|
+
.iter()
|
2369
|
+
.map(|(name, ty)| {
|
2370
|
+
let name: &KebabStr = to_kebab_str(name, "function parameter", offset)?;
|
2371
|
+
if !set.insert(name) {
|
2372
|
+
bail!(
|
2373
|
+
offset,
|
2374
|
+
"function parameter name `{name}` conflicts with previous parameter name `{prev}`",
|
2375
|
+
prev = set.get(&name).unwrap(),
|
2376
|
+
);
|
2377
|
+
}
|
2378
|
+
|
2379
|
+
let ty = self.create_component_val_type(*ty, offset)?;
|
2380
|
+
info.combine(ty.info(types), offset)?;
|
2381
|
+
Ok((name.to_owned(), ty))
|
2382
|
+
})
|
2383
|
+
.collect::<Result<_>>()?;
|
2384
|
+
|
2385
|
+
set.clear();
|
2386
|
+
|
2387
|
+
let results = ty
|
2388
|
+
.results
|
2389
|
+
.iter()
|
2390
|
+
.map(|(name, ty)| {
|
2391
|
+
let name = name
|
2392
|
+
.map(|name| {
|
2393
|
+
let name = to_kebab_str(name, "function result", offset)?;
|
2394
|
+
if !set.insert(name) {
|
2395
|
+
bail!(
|
2396
|
+
offset,
|
2397
|
+
"function result name `{name}` conflicts with previous result name `{prev}`",
|
2398
|
+
prev = set.get(name).unwrap(),
|
2399
|
+
);
|
2400
|
+
}
|
2401
|
+
|
2402
|
+
Ok(name.to_owned())
|
2403
|
+
})
|
2404
|
+
.transpose()?;
|
2405
|
+
|
2406
|
+
let ty = self.create_component_val_type(*ty, offset)?;
|
2407
|
+
let ty_info = ty.info(types);
|
2408
|
+
if ty_info.contains_borrow() {
|
2409
|
+
bail!(offset, "function result cannot contain a `borrow` type");
|
2410
|
+
}
|
2411
|
+
info.combine(ty.info(types), offset)?;
|
2412
|
+
Ok((name, ty))
|
2413
|
+
})
|
2414
|
+
.collect::<Result<_>>()?;
|
2415
|
+
|
2416
|
+
Ok(ComponentFuncType {
|
2417
|
+
info,
|
2418
|
+
params,
|
2419
|
+
results,
|
2420
|
+
})
|
2421
|
+
}
|
2422
|
+
|
2423
|
+
fn instantiate_core_module(
|
2424
|
+
&self,
|
2425
|
+
module_index: u32,
|
2426
|
+
module_args: Vec<crate::InstantiationArg>,
|
2427
|
+
types: &mut TypeAlloc,
|
2428
|
+
offset: usize,
|
2429
|
+
) -> Result<ComponentCoreInstanceTypeId> {
|
2430
|
+
fn insert_arg<'a>(
|
2431
|
+
name: &'a str,
|
2432
|
+
arg: &'a InstanceType,
|
2433
|
+
args: &mut IndexMap<&'a str, &'a InstanceType>,
|
2434
|
+
offset: usize,
|
2435
|
+
) -> Result<()> {
|
2436
|
+
if args.insert(name, arg).is_some() {
|
2437
|
+
bail!(
|
2438
|
+
offset,
|
2439
|
+
"duplicate module instantiation argument named `{name}`"
|
2440
|
+
);
|
2441
|
+
}
|
2442
|
+
|
2443
|
+
Ok(())
|
2444
|
+
}
|
2445
|
+
|
2446
|
+
let module_type_id = self.module_at(module_index, offset)?;
|
2447
|
+
let mut args = IndexMap::default();
|
2448
|
+
|
2449
|
+
// Populate the arguments
|
2450
|
+
for module_arg in module_args {
|
2451
|
+
match module_arg.kind {
|
2452
|
+
InstantiationArgKind::Instance => {
|
2453
|
+
let instance_type = &types[self.core_instance_at(module_arg.index, offset)?];
|
2454
|
+
insert_arg(module_arg.name, instance_type, &mut args, offset)?;
|
2455
|
+
}
|
2456
|
+
}
|
2457
|
+
}
|
2458
|
+
|
2459
|
+
// Validate the arguments
|
2460
|
+
let module_type = &types[module_type_id];
|
2461
|
+
let cx = SubtypeCx::new(types, types);
|
2462
|
+
for ((module, name), expected) in module_type.imports.iter() {
|
2463
|
+
let instance = args.get(module.as_str()).ok_or_else(|| {
|
2464
|
+
format_err!(
|
2465
|
+
offset,
|
2466
|
+
"missing module instantiation argument named `{module}`"
|
2467
|
+
)
|
2468
|
+
})?;
|
2469
|
+
|
2470
|
+
let arg = instance
|
2471
|
+
.internal_exports(types)
|
2472
|
+
.get(name.as_str())
|
2473
|
+
.ok_or_else(|| {
|
2474
|
+
format_err!(
|
2475
|
+
offset,
|
2476
|
+
"module instantiation argument `{module}` does not \
|
2477
|
+
export an item named `{name}`",
|
2478
|
+
)
|
2479
|
+
})?;
|
2480
|
+
|
2481
|
+
cx.entity_type(arg, expected, offset).with_context(|| {
|
2482
|
+
format!(
|
2483
|
+
"type mismatch for export `{name}` of module \
|
2484
|
+
instantiation argument `{module}`"
|
2485
|
+
)
|
2486
|
+
})?;
|
2487
|
+
}
|
2488
|
+
|
2489
|
+
let mut info = TypeInfo::new();
|
2490
|
+
for (_, ty) in module_type.exports.iter() {
|
2491
|
+
info.combine(ty.info(types), offset)?;
|
2492
|
+
}
|
2493
|
+
|
2494
|
+
Ok(types.push_ty(InstanceType {
|
2495
|
+
info,
|
2496
|
+
kind: CoreInstanceTypeKind::Instantiated(module_type_id),
|
2497
|
+
}))
|
2498
|
+
}
|
2499
|
+
|
2500
|
+
fn instantiate_component(
|
2501
|
+
&mut self,
|
2502
|
+
component_index: u32,
|
2503
|
+
component_args: Vec<crate::ComponentInstantiationArg>,
|
2504
|
+
features: &WasmFeatures,
|
2505
|
+
types: &mut TypeAlloc,
|
2506
|
+
offset: usize,
|
2507
|
+
) -> Result<ComponentInstanceTypeId> {
|
2508
|
+
let component_type_id = self.component_at(component_index, offset)?;
|
2509
|
+
let mut args = IndexMap::default();
|
2510
|
+
|
2511
|
+
// Populate the arguments
|
2512
|
+
for component_arg in component_args {
|
2513
|
+
let ty = match component_arg.kind {
|
2514
|
+
ComponentExternalKind::Module => {
|
2515
|
+
ComponentEntityType::Module(self.module_at(component_arg.index, offset)?)
|
2516
|
+
}
|
2517
|
+
ComponentExternalKind::Component => {
|
2518
|
+
ComponentEntityType::Component(self.component_at(component_arg.index, offset)?)
|
2519
|
+
}
|
2520
|
+
ComponentExternalKind::Instance => {
|
2521
|
+
ComponentEntityType::Instance(self.instance_at(component_arg.index, offset)?)
|
2522
|
+
}
|
2523
|
+
ComponentExternalKind::Func => {
|
2524
|
+
ComponentEntityType::Func(self.function_at(component_arg.index, offset)?)
|
2525
|
+
}
|
2526
|
+
ComponentExternalKind::Value => {
|
2527
|
+
self.check_value_support(features, offset)?;
|
2528
|
+
ComponentEntityType::Value(*self.value_at(component_arg.index, offset)?)
|
2529
|
+
}
|
2530
|
+
ComponentExternalKind::Type => {
|
2531
|
+
let ty = self.component_type_at(component_arg.index, offset)?;
|
2532
|
+
ComponentEntityType::Type {
|
2533
|
+
referenced: ty,
|
2534
|
+
created: ty,
|
2535
|
+
}
|
2536
|
+
}
|
2537
|
+
};
|
2538
|
+
match args.entry(component_arg.name.to_string()) {
|
2539
|
+
Entry::Occupied(e) => {
|
2540
|
+
bail!(
|
2541
|
+
offset,
|
2542
|
+
"instantiation argument `{name}` conflicts with previous argument `{prev}`",
|
2543
|
+
prev = e.key(),
|
2544
|
+
name = component_arg.name
|
2545
|
+
);
|
2546
|
+
}
|
2547
|
+
Entry::Vacant(e) => {
|
2548
|
+
e.insert(ty);
|
2549
|
+
}
|
2550
|
+
}
|
2551
|
+
}
|
2552
|
+
|
2553
|
+
// Here comes the fun part of the component model, we're instantiating
|
2554
|
+
// the component with type `component_type_id` with the `args`
|
2555
|
+
// specified. Easy enough!
|
2556
|
+
//
|
2557
|
+
// This operation, however, is one of the lynchpins of safety in the
|
2558
|
+
// component model. Additionally what this ends up implementing ranges
|
2559
|
+
// from "well just check the types are equal" to "let's have a
|
2560
|
+
// full-blown ML-style module type system in the component model". There
|
2561
|
+
// are primarily two major tricky pieces to the component model which
|
2562
|
+
// make this operation, instantiating components, hard:
|
2563
|
+
//
|
2564
|
+
// 1. Components can import and exports other components. This means
|
2565
|
+
// that arguments to instantiation are along the lines of functions
|
2566
|
+
// being passed to functions or similar. Effectively this means that
|
2567
|
+
// the term "variance" comes into play with either contravariance
|
2568
|
+
// or covariance depending on where you are in typechecking. This is
|
2569
|
+
// one of the main rationales, however, that this check below is a
|
2570
|
+
// check for subtyping as opposed to exact type equivalence. For
|
2571
|
+
// example an instance that exports something is a subtype of an
|
2572
|
+
// instance that exports nothing. Components get a bit trick since
|
2573
|
+
// they both have imports and exports. My way of thinking about it
|
2574
|
+
// is "who's asking for what". If you're asking for imports then
|
2575
|
+
// I need to at least supply those imports, but I can possibly
|
2576
|
+
// supply more. If you're asking for a thing which you'll give a set
|
2577
|
+
// of imports, then I can give you something which takes less imports
|
2578
|
+
// because what you give still suffices. (things like that). The
|
2579
|
+
// real complication with components, however, comes with...
|
2580
|
+
//
|
2581
|
+
// 2. Resources. Resources in the component model are akin to "abstract
|
2582
|
+
// types". They're not abstract in the sense that they have no
|
2583
|
+
// representation, they're always backed by a 32-bit integer right
|
2584
|
+
// now. Instead they're abstract in the sense that some components
|
2585
|
+
// aren't allowed to understand the representation of a resource.
|
2586
|
+
// For example if you import a resource you can't get the underlying
|
2587
|
+
// internals of it. Furthermore the resource is strictly tracked
|
2588
|
+
// within the component with `own` and `borrow` runtime semantics.
|
2589
|
+
// The hardest part about resources, though, is handling them as
|
2590
|
+
// part of instantiation and subtyping.
|
2591
|
+
//
|
2592
|
+
// For example one major aspect of resources is that if a component
|
2593
|
+
// exports a resource then each instantiation of the component
|
2594
|
+
// produces a fresh resource type. This means that the type recorded
|
2595
|
+
// for the instantiation here can't simply be "I instantiated
|
2596
|
+
// component X" since in such a situation the type of all
|
2597
|
+
// instantiations would be the same, which they aren't.
|
2598
|
+
//
|
2599
|
+
// This sort of subtelty comes up quite frequently for resources.
|
2600
|
+
// This file contains references to `imported_resources` and
|
2601
|
+
// `defined_resources` for example which refer to the formal
|
2602
|
+
// nature of components and their abstract variables. Specifically
|
2603
|
+
// for instantiation though we're eventually faced with the problem
|
2604
|
+
// of subtype checks where resource subtyping is defined as "does
|
2605
|
+
// your id equal mine". Naively implemented that means anything with
|
2606
|
+
// resources isn't subtypes of anything else since resource ids are
|
2607
|
+
// unique between components. Instead what actually needs to happen
|
2608
|
+
// is types need to be substituted.
|
2609
|
+
//
|
2610
|
+
// Much of the complexity here is not actually apparent here in this
|
2611
|
+
// literal one function. Instead it's spread out across validation
|
2612
|
+
// in this file and type-checking in the `types.rs` module. Note that
|
2613
|
+
// the "spread out" nature isn't because we're bad maintainers
|
2614
|
+
// (hopefully), but rather it's quite infectious how many parts need
|
2615
|
+
// to handle resources and account for defined/imported variables.
|
2616
|
+
//
|
2617
|
+
// For example only one subtyping method is called here where `args` is
|
2618
|
+
// passed in. This method is quite recursive in its nature though and
|
2619
|
+
// will internally touch all the fields that this file maintains to
|
2620
|
+
// end up putting into various bits and pieces of type information.
|
2621
|
+
//
|
2622
|
+
// Unfortunately there's probably not really a succinct way to read
|
2623
|
+
// this method and understand everything. If you've written ML module
|
2624
|
+
// type systems this will probably look quite familiar, but otherwise
|
2625
|
+
// the whole system is not really easily approachable at this time. It's
|
2626
|
+
// hoped in the future that there's a formalism to refer to which will
|
2627
|
+
// make things more clear as the code would be able to reference this
|
2628
|
+
// hypothetical formalism. Until that's the case, though, these
|
2629
|
+
// comments are hopefully enough when augmented with communication with
|
2630
|
+
// the authors.
|
2631
|
+
|
2632
|
+
let component_type = &types[component_type_id];
|
2633
|
+
let mut exports = component_type.exports.clone();
|
2634
|
+
let mut info = TypeInfo::new();
|
2635
|
+
for (_, ty) in component_type.exports.iter() {
|
2636
|
+
info.combine(ty.info(types), offset)?;
|
2637
|
+
}
|
2638
|
+
|
2639
|
+
// Perform the subtype check that `args` matches the imports of
|
2640
|
+
// `component_type_id`. The result of this subtype check is the
|
2641
|
+
// production of a mapping of resource types from the imports to the
|
2642
|
+
// arguments provided. This is a substitution map which is then used
|
2643
|
+
// below to perform a substitution into the exports of the instance
|
2644
|
+
// since the types of the exports are now in terms of whatever was
|
2645
|
+
// supplied as imports.
|
2646
|
+
let mut mapping = SubtypeCx::new(types, types).open_instance_type(
|
2647
|
+
&args,
|
2648
|
+
component_type_id,
|
2649
|
+
ExternKind::Import,
|
2650
|
+
offset,
|
2651
|
+
)?;
|
2652
|
+
|
2653
|
+
// Part of the instantiation of a component is that all of its
|
2654
|
+
// defined resources become "fresh" on each instantiation. This
|
2655
|
+
// means that each instantiation of a component gets brand new type
|
2656
|
+
// variables representing its defined resources, modeling that each
|
2657
|
+
// instantiation produces distinct types. The freshening is performed
|
2658
|
+
// here by allocating new ids and inserting them into `mapping`.
|
2659
|
+
//
|
2660
|
+
// Note that technically the `mapping` from subtyping should be applied
|
2661
|
+
// first and then the mapping for freshening should be applied
|
2662
|
+
// afterwards. The keys of the map from subtyping are the imported
|
2663
|
+
// resources from this component which are disjoint from its defined
|
2664
|
+
// resources. That means it should be possible to place everything
|
2665
|
+
// into one large map which maps from:
|
2666
|
+
//
|
2667
|
+
// * the component's imported resources go to whatever was explicitly
|
2668
|
+
// supplied in the import map
|
2669
|
+
// * the component's defined resources go to fresh new resources
|
2670
|
+
//
|
2671
|
+
// These two remapping operations can then get folded into one by
|
2672
|
+
// placing everything in the same `mapping` and using that for a remap
|
2673
|
+
// only once.
|
2674
|
+
let fresh_defined_resources = (0..component_type.defined_resources.len())
|
2675
|
+
.map(|_| types.alloc_resource_id().resource())
|
2676
|
+
.collect::<IndexSet<_>>();
|
2677
|
+
let component_type = &types[component_type_id];
|
2678
|
+
for ((old, _path), new) in component_type
|
2679
|
+
.defined_resources
|
2680
|
+
.iter()
|
2681
|
+
.zip(&fresh_defined_resources)
|
2682
|
+
{
|
2683
|
+
let prev = mapping.resources.insert(*old, *new);
|
2684
|
+
assert!(prev.is_none());
|
2685
|
+
}
|
2686
|
+
|
2687
|
+
// Perform the remapping operation over all the exports that will be
|
2688
|
+
// listed for the final instance type. Note that this is performed
|
2689
|
+
// both for all the export types in addition to the explicitly exported
|
2690
|
+
// resources list.
|
2691
|
+
//
|
2692
|
+
// Note that this is a crucial step of the instantiation process which
|
2693
|
+
// is intentionally transforming the type of a component based on the
|
2694
|
+
// variables provided by imports and additionally ensuring that all
|
2695
|
+
// references to the component's defined resources are rebound to the
|
2696
|
+
// fresh ones introduced just above.
|
2697
|
+
for entity in exports.values_mut() {
|
2698
|
+
types.remap_component_entity(entity, &mut mapping);
|
2699
|
+
}
|
2700
|
+
let component_type = &types[component_type_id];
|
2701
|
+
let explicit_resources = component_type
|
2702
|
+
.explicit_resources
|
2703
|
+
.iter()
|
2704
|
+
.map(|(id, path)| {
|
2705
|
+
(
|
2706
|
+
mapping.resources.get(id).copied().unwrap_or(*id),
|
2707
|
+
path.clone(),
|
2708
|
+
)
|
2709
|
+
})
|
2710
|
+
.collect::<IndexMap<_, _>>();
|
2711
|
+
|
2712
|
+
// Technically in the last formalism that was consulted in writing this
|
2713
|
+
// implementation there are two further steps that are part of the
|
2714
|
+
// instantiation process:
|
2715
|
+
//
|
2716
|
+
// 1. The set of defined resources from the instance created, which are
|
2717
|
+
// added to the outer component, is the subset of the instance's
|
2718
|
+
// original defined resources and the free variables of the exports.
|
2719
|
+
//
|
2720
|
+
// 2. Each element of this subset is required to be "explicit in" the
|
2721
|
+
// instance, or otherwise explicitly exported somewhere within the
|
2722
|
+
// instance.
|
2723
|
+
//
|
2724
|
+
// With the syntactic structure of the component model, however, neither
|
2725
|
+
// of these conditions should be necessary. The main reason for this is
|
2726
|
+
// that this function is specifically dealing with instantiation of
|
2727
|
+
// components which should already have these properties validated
|
2728
|
+
// about them. Subsequently we shouldn't have to re-check them.
|
2729
|
+
//
|
2730
|
+
// In debug mode, however, do a sanity check.
|
2731
|
+
if cfg!(debug_assertions) {
|
2732
|
+
let mut free = IndexSet::default();
|
2733
|
+
for ty in exports.values() {
|
2734
|
+
types.free_variables_component_entity(ty, &mut free);
|
2735
|
+
}
|
2736
|
+
assert!(fresh_defined_resources.is_subset(&free));
|
2737
|
+
for resource in fresh_defined_resources.iter() {
|
2738
|
+
assert!(explicit_resources.contains_key(resource));
|
2739
|
+
}
|
2740
|
+
}
|
2741
|
+
|
2742
|
+
// And as the final step of the instantiation process all of the
|
2743
|
+
// new defined resources from this component instantiation are moved
|
2744
|
+
// onto `self`. Note that concrete instances never have defined
|
2745
|
+
// resources (see more comments in `instantiate_exports`) so the
|
2746
|
+
// `defined_resources` listing in the final type is always empty. This
|
2747
|
+
// represents how by having a concrete instance the definitions
|
2748
|
+
// referred to in that instance are now problems for the outer
|
2749
|
+
// component rather than the inner instance since the instance is bound
|
2750
|
+
// to the component.
|
2751
|
+
//
|
2752
|
+
// All defined resources here have no known representation, so they're
|
2753
|
+
// all listed with `None`. Also note that none of the resources were
|
2754
|
+
// exported yet so `self.explicit_resources` is not updated yet. If
|
2755
|
+
// this instance is exported, however, it'll consult the type's
|
2756
|
+
// `explicit_resources` array and use that appropriately.
|
2757
|
+
for resource in fresh_defined_resources {
|
2758
|
+
self.defined_resources.insert(resource, None);
|
2759
|
+
}
|
2760
|
+
|
2761
|
+
Ok(types.push_ty(ComponentInstanceType {
|
2762
|
+
info,
|
2763
|
+
defined_resources: Default::default(),
|
2764
|
+
explicit_resources,
|
2765
|
+
exports,
|
2766
|
+
}))
|
2767
|
+
}
|
2768
|
+
|
2769
|
+
fn instantiate_component_exports(
|
2770
|
+
&mut self,
|
2771
|
+
exports: Vec<crate::ComponentExport>,
|
2772
|
+
features: &WasmFeatures,
|
2773
|
+
types: &mut TypeAlloc,
|
2774
|
+
offset: usize,
|
2775
|
+
) -> Result<ComponentInstanceTypeId> {
|
2776
|
+
let mut info = TypeInfo::new();
|
2777
|
+
let mut inst_exports = IndexMap::default();
|
2778
|
+
let mut explicit_resources = IndexMap::default();
|
2779
|
+
let mut export_names = IndexSet::default();
|
2780
|
+
|
2781
|
+
// NB: It's intentional that this context is empty since no indices are
|
2782
|
+
// introduced in the bag-of-exports construct which means there's no
|
2783
|
+
// way syntactically to register something inside of this.
|
2784
|
+
let names = ComponentNameContext::default();
|
2785
|
+
|
2786
|
+
for export in exports {
|
2787
|
+
assert!(export.ty.is_none());
|
2788
|
+
let ty = match export.kind {
|
2789
|
+
ComponentExternalKind::Module => {
|
2790
|
+
ComponentEntityType::Module(self.module_at(export.index, offset)?)
|
2791
|
+
}
|
2792
|
+
ComponentExternalKind::Component => {
|
2793
|
+
ComponentEntityType::Component(self.component_at(export.index, offset)?)
|
2794
|
+
}
|
2795
|
+
ComponentExternalKind::Instance => {
|
2796
|
+
let ty = self.instance_at(export.index, offset)?;
|
2797
|
+
|
2798
|
+
// When an instance is exported from an instance then
|
2799
|
+
// all explicitly exported resources on the sub-instance are
|
2800
|
+
// now also listed as exported resources on the outer
|
2801
|
+
// instance, just with one more element in their path.
|
2802
|
+
explicit_resources.extend(types[ty].explicit_resources.iter().map(
|
2803
|
+
|(id, path)| {
|
2804
|
+
let mut new_path = vec![inst_exports.len()];
|
2805
|
+
new_path.extend(path);
|
2806
|
+
(*id, new_path)
|
2807
|
+
},
|
2808
|
+
));
|
2809
|
+
ComponentEntityType::Instance(ty)
|
2810
|
+
}
|
2811
|
+
ComponentExternalKind::Func => {
|
2812
|
+
ComponentEntityType::Func(self.function_at(export.index, offset)?)
|
2813
|
+
}
|
2814
|
+
ComponentExternalKind::Value => {
|
2815
|
+
self.check_value_support(features, offset)?;
|
2816
|
+
ComponentEntityType::Value(*self.value_at(export.index, offset)?)
|
2817
|
+
}
|
2818
|
+
ComponentExternalKind::Type => {
|
2819
|
+
let ty = self.component_type_at(export.index, offset)?;
|
2820
|
+
// If this is an export of a resource type be sure to
|
2821
|
+
// record that in the explicit list with the appropriate
|
2822
|
+
// path because if this instance ends up getting used
|
2823
|
+
// it'll count towards the "explicit in" check.
|
2824
|
+
if let ComponentAnyTypeId::Resource(id) = ty {
|
2825
|
+
explicit_resources.insert(id.resource(), vec![inst_exports.len()]);
|
2826
|
+
}
|
2827
|
+
ComponentEntityType::Type {
|
2828
|
+
referenced: ty,
|
2829
|
+
// The created type index here isn't used anywhere
|
2830
|
+
// in index spaces because a "bag of exports"
|
2831
|
+
// doesn't build up its own index spaces. Just fill
|
2832
|
+
// in the same index here in this case as what's
|
2833
|
+
// referenced.
|
2834
|
+
created: ty,
|
2835
|
+
}
|
2836
|
+
}
|
2837
|
+
};
|
2838
|
+
|
2839
|
+
names.validate_extern(
|
2840
|
+
export.name.0,
|
2841
|
+
ExternKind::Export,
|
2842
|
+
&ty,
|
2843
|
+
types,
|
2844
|
+
offset,
|
2845
|
+
&mut export_names,
|
2846
|
+
&mut inst_exports,
|
2847
|
+
&mut info,
|
2848
|
+
features,
|
2849
|
+
)?;
|
2850
|
+
}
|
2851
|
+
|
2852
|
+
Ok(types.push_ty(ComponentInstanceType {
|
2853
|
+
info,
|
2854
|
+
explicit_resources,
|
2855
|
+
exports: inst_exports,
|
2856
|
+
|
2857
|
+
// NB: the list of defined resources for this instance itself
|
2858
|
+
// is always empty. Even if this instance exports resources,
|
2859
|
+
// it's empty.
|
2860
|
+
//
|
2861
|
+
// The reason for this is a bit subtle. The general idea, though, is
|
2862
|
+
// that the defined resources list here is only used for instance
|
2863
|
+
// types that are sort of "floating around" and haven't actually
|
2864
|
+
// been attached to something yet. For example when an instance type
|
2865
|
+
// is simply declared it can have defined resources introduced
|
2866
|
+
// through `(export "name" (type (sub resource)))`. These
|
2867
|
+
// definitions, however, are local to the instance itself and aren't
|
2868
|
+
// defined elsewhere.
|
2869
|
+
//
|
2870
|
+
// Here, though, no new definitions were introduced. The instance
|
2871
|
+
// created here is a "bag of exports" which could only refer to
|
2872
|
+
// preexisting items. This means that inherently no new resources
|
2873
|
+
// were created so there's nothing to put in this list. Any
|
2874
|
+
// resources referenced by the instance must be bound by the outer
|
2875
|
+
// component context or further above.
|
2876
|
+
//
|
2877
|
+
// Furthermore, however, actual instances of instances, which this
|
2878
|
+
// is, aren't allowed to have defined resources. Instead the
|
2879
|
+
// resources would have to be injected into the outer component
|
2880
|
+
// enclosing the instance. That means that even if bag-of-exports
|
2881
|
+
// could declare a new resource then the resource would be moved
|
2882
|
+
// from here to `self.defined_resources`. This doesn't exist at this
|
2883
|
+
// time, though, so this still remains empty and
|
2884
|
+
// `self.defined_resources` remains unperturbed.
|
2885
|
+
defined_resources: Default::default(),
|
2886
|
+
}))
|
2887
|
+
}
|
2888
|
+
|
2889
|
+
fn instantiate_core_exports(
|
2890
|
+
&mut self,
|
2891
|
+
exports: Vec<crate::Export>,
|
2892
|
+
types: &mut TypeAlloc,
|
2893
|
+
offset: usize,
|
2894
|
+
) -> Result<ComponentCoreInstanceTypeId> {
|
2895
|
+
fn insert_export(
|
2896
|
+
types: &TypeList,
|
2897
|
+
name: &str,
|
2898
|
+
export: EntityType,
|
2899
|
+
exports: &mut IndexMap<String, EntityType>,
|
2900
|
+
info: &mut TypeInfo,
|
2901
|
+
offset: usize,
|
2902
|
+
) -> Result<()> {
|
2903
|
+
info.combine(export.info(types), offset)?;
|
2904
|
+
|
2905
|
+
if exports.insert(name.to_string(), export).is_some() {
|
2906
|
+
bail!(
|
2907
|
+
offset,
|
2908
|
+
"duplicate instantiation export name `{name}` already defined",
|
2909
|
+
)
|
2910
|
+
}
|
2911
|
+
|
2912
|
+
Ok(())
|
2913
|
+
}
|
2914
|
+
|
2915
|
+
let mut info = TypeInfo::new();
|
2916
|
+
let mut inst_exports = IndexMap::default();
|
2917
|
+
for export in exports {
|
2918
|
+
match export.kind {
|
2919
|
+
ExternalKind::Func => {
|
2920
|
+
insert_export(
|
2921
|
+
types,
|
2922
|
+
export.name,
|
2923
|
+
EntityType::Func(self.core_function_at(export.index, offset)?),
|
2924
|
+
&mut inst_exports,
|
2925
|
+
&mut info,
|
2926
|
+
offset,
|
2927
|
+
)?;
|
2928
|
+
}
|
2929
|
+
ExternalKind::Table => insert_export(
|
2930
|
+
types,
|
2931
|
+
export.name,
|
2932
|
+
EntityType::Table(*self.table_at(export.index, offset)?),
|
2933
|
+
&mut inst_exports,
|
2934
|
+
&mut info,
|
2935
|
+
offset,
|
2936
|
+
)?,
|
2937
|
+
ExternalKind::Memory => insert_export(
|
2938
|
+
types,
|
2939
|
+
export.name,
|
2940
|
+
EntityType::Memory(*self.memory_at(export.index, offset)?),
|
2941
|
+
&mut inst_exports,
|
2942
|
+
&mut info,
|
2943
|
+
offset,
|
2944
|
+
)?,
|
2945
|
+
ExternalKind::Global => {
|
2946
|
+
insert_export(
|
2947
|
+
types,
|
2948
|
+
export.name,
|
2949
|
+
EntityType::Global(*self.global_at(export.index, offset)?),
|
2950
|
+
&mut inst_exports,
|
2951
|
+
&mut info,
|
2952
|
+
offset,
|
2953
|
+
)?;
|
2954
|
+
}
|
2955
|
+
ExternalKind::Tag => insert_export(
|
2956
|
+
types,
|
2957
|
+
export.name,
|
2958
|
+
EntityType::Tag(self.core_function_at(export.index, offset)?),
|
2959
|
+
&mut inst_exports,
|
2960
|
+
&mut info,
|
2961
|
+
offset,
|
2962
|
+
)?,
|
2963
|
+
}
|
2964
|
+
}
|
2965
|
+
|
2966
|
+
Ok(types.push_ty(InstanceType {
|
2967
|
+
info,
|
2968
|
+
kind: CoreInstanceTypeKind::Exports(inst_exports),
|
2969
|
+
}))
|
2970
|
+
}
|
2971
|
+
|
2972
|
+
fn alias_core_instance_export(
|
2973
|
+
&mut self,
|
2974
|
+
instance_index: u32,
|
2975
|
+
kind: ExternalKind,
|
2976
|
+
name: &str,
|
2977
|
+
types: &TypeList,
|
2978
|
+
offset: usize,
|
2979
|
+
) -> Result<()> {
|
2980
|
+
macro_rules! push_module_export {
|
2981
|
+
($expected:path, $collection:ident, $ty:literal) => {{
|
2982
|
+
match self.core_instance_export(instance_index, name, types, offset)? {
|
2983
|
+
$expected(ty) => {
|
2984
|
+
self.$collection.push(*ty);
|
2985
|
+
}
|
2986
|
+
_ => {
|
2987
|
+
bail!(
|
2988
|
+
offset,
|
2989
|
+
"export `{name}` for core instance {instance_index} is not a {}",
|
2990
|
+
$ty
|
2991
|
+
)
|
2992
|
+
}
|
2993
|
+
}
|
2994
|
+
}};
|
2995
|
+
}
|
2996
|
+
|
2997
|
+
match kind {
|
2998
|
+
ExternalKind::Func => {
|
2999
|
+
check_max(
|
3000
|
+
self.function_count(),
|
3001
|
+
1,
|
3002
|
+
MAX_WASM_FUNCTIONS,
|
3003
|
+
"functions",
|
3004
|
+
offset,
|
3005
|
+
)?;
|
3006
|
+
push_module_export!(EntityType::Func, core_funcs, "function");
|
3007
|
+
}
|
3008
|
+
ExternalKind::Table => {
|
3009
|
+
check_max(
|
3010
|
+
self.core_tables.len(),
|
3011
|
+
1,
|
3012
|
+
MAX_CORE_INDEX_SPACE_ITEMS,
|
3013
|
+
"tables",
|
3014
|
+
offset,
|
3015
|
+
)?;
|
3016
|
+
push_module_export!(EntityType::Table, core_tables, "table");
|
3017
|
+
|
3018
|
+
let ty = self.core_tables.last().unwrap();
|
3019
|
+
if ty.table64 {
|
3020
|
+
bail!(
|
3021
|
+
offset,
|
3022
|
+
"64-bit tables are not compatible with components yet"
|
3023
|
+
);
|
3024
|
+
}
|
3025
|
+
if ty.shared {
|
3026
|
+
bail!(
|
3027
|
+
offset,
|
3028
|
+
"shared tables are not compatible with components yet"
|
3029
|
+
);
|
3030
|
+
}
|
3031
|
+
}
|
3032
|
+
ExternalKind::Memory => {
|
3033
|
+
check_max(
|
3034
|
+
self.core_memories.len(),
|
3035
|
+
1,
|
3036
|
+
MAX_CORE_INDEX_SPACE_ITEMS,
|
3037
|
+
"memories",
|
3038
|
+
offset,
|
3039
|
+
)?;
|
3040
|
+
push_module_export!(EntityType::Memory, core_memories, "memory");
|
3041
|
+
|
3042
|
+
let ty = self.core_memories.last().unwrap();
|
3043
|
+
if ty.memory64 {
|
3044
|
+
bail!(
|
3045
|
+
offset,
|
3046
|
+
"64-bit linear memories are not compatible with components yet"
|
3047
|
+
);
|
3048
|
+
}
|
3049
|
+
if ty.shared {
|
3050
|
+
bail!(
|
3051
|
+
offset,
|
3052
|
+
"shared linear memories are not compatible with components yet"
|
3053
|
+
);
|
3054
|
+
}
|
3055
|
+
}
|
3056
|
+
ExternalKind::Global => {
|
3057
|
+
check_max(
|
3058
|
+
self.core_globals.len(),
|
3059
|
+
1,
|
3060
|
+
MAX_CORE_INDEX_SPACE_ITEMS,
|
3061
|
+
"globals",
|
3062
|
+
offset,
|
3063
|
+
)?;
|
3064
|
+
push_module_export!(EntityType::Global, core_globals, "global");
|
3065
|
+
}
|
3066
|
+
ExternalKind::Tag => {
|
3067
|
+
check_max(
|
3068
|
+
self.core_tags.len(),
|
3069
|
+
1,
|
3070
|
+
MAX_CORE_INDEX_SPACE_ITEMS,
|
3071
|
+
"tags",
|
3072
|
+
offset,
|
3073
|
+
)?;
|
3074
|
+
push_module_export!(EntityType::Tag, core_tags, "tag");
|
3075
|
+
}
|
3076
|
+
}
|
3077
|
+
|
3078
|
+
Ok(())
|
3079
|
+
}
|
3080
|
+
|
3081
|
+
fn alias_instance_export(
|
3082
|
+
&mut self,
|
3083
|
+
instance_index: u32,
|
3084
|
+
kind: ComponentExternalKind,
|
3085
|
+
name: &str,
|
3086
|
+
features: &WasmFeatures,
|
3087
|
+
types: &mut TypeAlloc,
|
3088
|
+
offset: usize,
|
3089
|
+
) -> Result<()> {
|
3090
|
+
if let ComponentExternalKind::Value = kind {
|
3091
|
+
self.check_value_support(features, offset)?;
|
3092
|
+
}
|
3093
|
+
let mut ty = match types[self.instance_at(instance_index, offset)?]
|
3094
|
+
.exports
|
3095
|
+
.get(name)
|
3096
|
+
{
|
3097
|
+
Some(ty) => *ty,
|
3098
|
+
None => bail!(
|
3099
|
+
offset,
|
3100
|
+
"instance {instance_index} has no export named `{name}`"
|
3101
|
+
),
|
3102
|
+
};
|
3103
|
+
|
3104
|
+
let ok = match (&ty, kind) {
|
3105
|
+
(ComponentEntityType::Module(_), ComponentExternalKind::Module) => true,
|
3106
|
+
(ComponentEntityType::Module(_), _) => false,
|
3107
|
+
(ComponentEntityType::Component(_), ComponentExternalKind::Component) => true,
|
3108
|
+
(ComponentEntityType::Component(_), _) => false,
|
3109
|
+
(ComponentEntityType::Func(_), ComponentExternalKind::Func) => true,
|
3110
|
+
(ComponentEntityType::Func(_), _) => false,
|
3111
|
+
(ComponentEntityType::Instance(_), ComponentExternalKind::Instance) => true,
|
3112
|
+
(ComponentEntityType::Instance(_), _) => false,
|
3113
|
+
(ComponentEntityType::Value(_), ComponentExternalKind::Value) => true,
|
3114
|
+
(ComponentEntityType::Value(_), _) => false,
|
3115
|
+
(ComponentEntityType::Type { .. }, ComponentExternalKind::Type) => true,
|
3116
|
+
(ComponentEntityType::Type { .. }, _) => false,
|
3117
|
+
};
|
3118
|
+
if !ok {
|
3119
|
+
bail!(
|
3120
|
+
offset,
|
3121
|
+
"export `{name}` for instance {instance_index} is not a {}",
|
3122
|
+
kind.desc(),
|
3123
|
+
);
|
3124
|
+
}
|
3125
|
+
|
3126
|
+
self.add_entity(&mut ty, None, features, types, offset)?;
|
3127
|
+
Ok(())
|
3128
|
+
}
|
3129
|
+
|
3130
|
+
fn alias_module(components: &mut [Self], count: u32, index: u32, offset: usize) -> Result<()> {
|
3131
|
+
let component = Self::check_alias_count(components, count, offset)?;
|
3132
|
+
let ty = component.module_at(index, offset)?;
|
3133
|
+
|
3134
|
+
let current = components.last_mut().unwrap();
|
3135
|
+
check_max(
|
3136
|
+
current.core_modules.len(),
|
3137
|
+
1,
|
3138
|
+
MAX_WASM_MODULES,
|
3139
|
+
"modules",
|
3140
|
+
offset,
|
3141
|
+
)?;
|
3142
|
+
|
3143
|
+
current.core_modules.push(ty);
|
3144
|
+
Ok(())
|
3145
|
+
}
|
3146
|
+
|
3147
|
+
fn alias_component(
|
3148
|
+
components: &mut [Self],
|
3149
|
+
count: u32,
|
3150
|
+
index: u32,
|
3151
|
+
offset: usize,
|
3152
|
+
) -> Result<()> {
|
3153
|
+
let component = Self::check_alias_count(components, count, offset)?;
|
3154
|
+
let ty = component.component_at(index, offset)?;
|
3155
|
+
|
3156
|
+
let current = components.last_mut().unwrap();
|
3157
|
+
check_max(
|
3158
|
+
current.components.len(),
|
3159
|
+
1,
|
3160
|
+
MAX_WASM_COMPONENTS,
|
3161
|
+
"components",
|
3162
|
+
offset,
|
3163
|
+
)?;
|
3164
|
+
|
3165
|
+
current.components.push(ty);
|
3166
|
+
Ok(())
|
3167
|
+
}
|
3168
|
+
|
3169
|
+
fn alias_core_type(
|
3170
|
+
components: &mut [Self],
|
3171
|
+
count: u32,
|
3172
|
+
index: u32,
|
3173
|
+
offset: usize,
|
3174
|
+
) -> Result<()> {
|
3175
|
+
let component = Self::check_alias_count(components, count, offset)?;
|
3176
|
+
let ty = component.core_type_at(index, offset)?;
|
3177
|
+
|
3178
|
+
let current = components.last_mut().unwrap();
|
3179
|
+
check_max(current.type_count(), 1, MAX_WASM_TYPES, "types", offset)?;
|
3180
|
+
|
3181
|
+
current.core_types.push(ty);
|
3182
|
+
|
3183
|
+
Ok(())
|
3184
|
+
}
|
3185
|
+
|
3186
|
+
fn alias_type(
|
3187
|
+
components: &mut [Self],
|
3188
|
+
count: u32,
|
3189
|
+
index: u32,
|
3190
|
+
types: &mut TypeAlloc,
|
3191
|
+
offset: usize,
|
3192
|
+
) -> Result<()> {
|
3193
|
+
let component = Self::check_alias_count(components, count, offset)?;
|
3194
|
+
let ty = component.component_type_at(index, offset)?;
|
3195
|
+
|
3196
|
+
// If `count` "crossed a component boundary", meaning that it went from
|
3197
|
+
// one component to another, then this must additionally verify that
|
3198
|
+
// `ty` has no free variables with respect to resources. This is
|
3199
|
+
// intended to preserve the property for components where each component
|
3200
|
+
// is an isolated unit that can theoretically be extracted from other
|
3201
|
+
// components. If resources from other components were allowed to leak
|
3202
|
+
// in then it would prevent that.
|
3203
|
+
//
|
3204
|
+
// This check is done by calculating the `pos` within `components` that
|
3205
|
+
// our target `component` above was selected at. Once this is acquired
|
3206
|
+
// the component to the "right" is checked, and if that's a component
|
3207
|
+
// then it's considered as crossing a component boundary meaning the
|
3208
|
+
// free variables check runs.
|
3209
|
+
//
|
3210
|
+
// The reason this works is that in the list of `ComponentState` types
|
3211
|
+
// it's guaranteed that any `is_type` components are contiguous at the
|
3212
|
+
// end of the array. This means that if state one level deeper than the
|
3213
|
+
// target of this alias is a `!is_type` component, then the target must
|
3214
|
+
// be a component as well. If the one-level deeper state `is_type` then
|
3215
|
+
// the target is either a type or a component, both of which are valid
|
3216
|
+
// (as aliases can reach the enclosing component and have as many free
|
3217
|
+
// variables as they want).
|
3218
|
+
let pos_after_component = components.len() - (count as usize);
|
3219
|
+
if let Some(component) = components.get(pos_after_component) {
|
3220
|
+
if component.kind == ComponentKind::Component {
|
3221
|
+
let mut free = IndexSet::default();
|
3222
|
+
types.free_variables_any_type_id(ty, &mut free);
|
3223
|
+
if !free.is_empty() {
|
3224
|
+
bail!(
|
3225
|
+
offset,
|
3226
|
+
"cannot alias outer type which transitively refers \
|
3227
|
+
to resources not defined in the current component"
|
3228
|
+
);
|
3229
|
+
}
|
3230
|
+
}
|
3231
|
+
}
|
3232
|
+
|
3233
|
+
let current = components.last_mut().unwrap();
|
3234
|
+
check_max(current.type_count(), 1, MAX_WASM_TYPES, "types", offset)?;
|
3235
|
+
|
3236
|
+
current.types.push(ty);
|
3237
|
+
|
3238
|
+
Ok(())
|
3239
|
+
}
|
3240
|
+
|
3241
|
+
fn check_alias_count(components: &[Self], count: u32, offset: usize) -> Result<&Self> {
|
3242
|
+
let count = count as usize;
|
3243
|
+
if count >= components.len() {
|
3244
|
+
bail!(offset, "invalid outer alias count of {count}");
|
3245
|
+
}
|
3246
|
+
|
3247
|
+
Ok(&components[components.len() - count - 1])
|
3248
|
+
}
|
3249
|
+
|
3250
|
+
fn create_defined_type(
|
3251
|
+
&self,
|
3252
|
+
ty: crate::ComponentDefinedType,
|
3253
|
+
types: &TypeList,
|
3254
|
+
features: &WasmFeatures,
|
3255
|
+
offset: usize,
|
3256
|
+
) -> Result<ComponentDefinedType> {
|
3257
|
+
match ty {
|
3258
|
+
crate::ComponentDefinedType::Primitive(ty) => Ok(ComponentDefinedType::Primitive(ty)),
|
3259
|
+
crate::ComponentDefinedType::Record(fields) => {
|
3260
|
+
self.create_record_type(fields.as_ref(), types, offset)
|
3261
|
+
}
|
3262
|
+
crate::ComponentDefinedType::Variant(cases) => {
|
3263
|
+
self.create_variant_type(cases.as_ref(), types, offset)
|
3264
|
+
}
|
3265
|
+
crate::ComponentDefinedType::List(ty) => Ok(ComponentDefinedType::List(
|
3266
|
+
self.create_component_val_type(ty, offset)?,
|
3267
|
+
)),
|
3268
|
+
crate::ComponentDefinedType::Tuple(tys) => {
|
3269
|
+
self.create_tuple_type(tys.as_ref(), types, offset)
|
3270
|
+
}
|
3271
|
+
crate::ComponentDefinedType::Flags(names) => {
|
3272
|
+
self.create_flags_type(names.as_ref(), features, offset)
|
3273
|
+
}
|
3274
|
+
crate::ComponentDefinedType::Enum(cases) => {
|
3275
|
+
self.create_enum_type(cases.as_ref(), offset)
|
3276
|
+
}
|
3277
|
+
crate::ComponentDefinedType::Option(ty) => Ok(ComponentDefinedType::Option(
|
3278
|
+
self.create_component_val_type(ty, offset)?,
|
3279
|
+
)),
|
3280
|
+
crate::ComponentDefinedType::Result { ok, err } => Ok(ComponentDefinedType::Result {
|
3281
|
+
ok: ok
|
3282
|
+
.map(|ty| self.create_component_val_type(ty, offset))
|
3283
|
+
.transpose()?,
|
3284
|
+
err: err
|
3285
|
+
.map(|ty| self.create_component_val_type(ty, offset))
|
3286
|
+
.transpose()?,
|
3287
|
+
}),
|
3288
|
+
crate::ComponentDefinedType::Own(idx) => Ok(ComponentDefinedType::Own(
|
3289
|
+
self.resource_at(idx, types, offset)?,
|
3290
|
+
)),
|
3291
|
+
crate::ComponentDefinedType::Borrow(idx) => Ok(ComponentDefinedType::Borrow(
|
3292
|
+
self.resource_at(idx, types, offset)?,
|
3293
|
+
)),
|
3294
|
+
crate::ComponentDefinedType::Future(ty) => Ok(ComponentDefinedType::Future(
|
3295
|
+
ty.map(|ty| self.create_component_val_type(ty, offset))
|
3296
|
+
.transpose()?,
|
3297
|
+
)),
|
3298
|
+
crate::ComponentDefinedType::Stream(ty) => Ok(ComponentDefinedType::Stream(
|
3299
|
+
ty.map(|ty| self.create_component_val_type(ty, offset))
|
3300
|
+
.transpose()?,
|
3301
|
+
)),
|
3302
|
+
crate::ComponentDefinedType::ErrorContext => Ok(ComponentDefinedType::ErrorContext),
|
3303
|
+
}
|
3304
|
+
}
|
3305
|
+
|
3306
|
+
fn create_record_type(
|
3307
|
+
&self,
|
3308
|
+
fields: &[(&str, crate::ComponentValType)],
|
3309
|
+
types: &TypeList,
|
3310
|
+
offset: usize,
|
3311
|
+
) -> Result<ComponentDefinedType> {
|
3312
|
+
let mut info = TypeInfo::new();
|
3313
|
+
let mut field_map = IndexMap::default();
|
3314
|
+
field_map.reserve(fields.len());
|
3315
|
+
|
3316
|
+
if fields.is_empty() {
|
3317
|
+
bail!(offset, "record type must have at least one field");
|
3318
|
+
}
|
3319
|
+
|
3320
|
+
for (name, ty) in fields {
|
3321
|
+
let name = to_kebab_str(name, "record field", offset)?;
|
3322
|
+
let ty = self.create_component_val_type(*ty, offset)?;
|
3323
|
+
|
3324
|
+
match field_map.entry(name.to_owned()) {
|
3325
|
+
Entry::Occupied(e) => bail!(
|
3326
|
+
offset,
|
3327
|
+
"record field name `{name}` conflicts with previous field name `{prev}`",
|
3328
|
+
prev = e.key()
|
3329
|
+
),
|
3330
|
+
Entry::Vacant(e) => {
|
3331
|
+
info.combine(ty.info(types), offset)?;
|
3332
|
+
e.insert(ty);
|
3333
|
+
}
|
3334
|
+
}
|
3335
|
+
}
|
3336
|
+
|
3337
|
+
Ok(ComponentDefinedType::Record(RecordType {
|
3338
|
+
info,
|
3339
|
+
fields: field_map,
|
3340
|
+
}))
|
3341
|
+
}
|
3342
|
+
|
3343
|
+
fn create_variant_type(
|
3344
|
+
&self,
|
3345
|
+
cases: &[crate::VariantCase],
|
3346
|
+
types: &TypeList,
|
3347
|
+
offset: usize,
|
3348
|
+
) -> Result<ComponentDefinedType> {
|
3349
|
+
let mut info = TypeInfo::new();
|
3350
|
+
let mut case_map: IndexMap<KebabString, VariantCase> = IndexMap::default();
|
3351
|
+
case_map.reserve(cases.len());
|
3352
|
+
|
3353
|
+
if cases.is_empty() {
|
3354
|
+
bail!(offset, "variant type must have at least one case");
|
3355
|
+
}
|
3356
|
+
|
3357
|
+
if cases.len() > u32::MAX as usize {
|
3358
|
+
return Err(BinaryReaderError::new(
|
3359
|
+
"variant type cannot be represented with a 32-bit discriminant value",
|
3360
|
+
offset,
|
3361
|
+
));
|
3362
|
+
}
|
3363
|
+
|
3364
|
+
for (i, case) in cases.iter().enumerate() {
|
3365
|
+
if let Some(refines) = case.refines {
|
3366
|
+
if refines >= i as u32 {
|
3367
|
+
return Err(BinaryReaderError::new(
|
3368
|
+
"variant case can only refine a previously defined case",
|
3369
|
+
offset,
|
3370
|
+
));
|
3371
|
+
}
|
3372
|
+
}
|
3373
|
+
|
3374
|
+
let name = to_kebab_str(case.name, "variant case", offset)?;
|
3375
|
+
|
3376
|
+
let ty = case
|
3377
|
+
.ty
|
3378
|
+
.map(|ty| self.create_component_val_type(ty, offset))
|
3379
|
+
.transpose()?;
|
3380
|
+
|
3381
|
+
match case_map.entry(name.to_owned()) {
|
3382
|
+
Entry::Occupied(e) => bail!(
|
3383
|
+
offset,
|
3384
|
+
"variant case name `{name}` conflicts with previous case name `{prev}`",
|
3385
|
+
name = case.name,
|
3386
|
+
prev = e.key()
|
3387
|
+
),
|
3388
|
+
Entry::Vacant(e) => {
|
3389
|
+
if let Some(ty) = ty {
|
3390
|
+
info.combine(ty.info(types), offset)?;
|
3391
|
+
}
|
3392
|
+
|
3393
|
+
// Safety: the use of `KebabStr::new_unchecked` here is safe because the string
|
3394
|
+
// was already verified to be kebab case.
|
3395
|
+
e.insert(VariantCase {
|
3396
|
+
ty,
|
3397
|
+
refines: case
|
3398
|
+
.refines
|
3399
|
+
.map(|i| KebabStr::new_unchecked(cases[i as usize].name).to_owned()),
|
3400
|
+
});
|
3401
|
+
}
|
3402
|
+
}
|
3403
|
+
}
|
3404
|
+
|
3405
|
+
Ok(ComponentDefinedType::Variant(VariantType {
|
3406
|
+
info,
|
3407
|
+
cases: case_map,
|
3408
|
+
}))
|
3409
|
+
}
|
3410
|
+
|
3411
|
+
fn create_tuple_type(
|
3412
|
+
&self,
|
3413
|
+
tys: &[crate::ComponentValType],
|
3414
|
+
types: &TypeList,
|
3415
|
+
offset: usize,
|
3416
|
+
) -> Result<ComponentDefinedType> {
|
3417
|
+
let mut info = TypeInfo::new();
|
3418
|
+
if tys.is_empty() {
|
3419
|
+
bail!(offset, "tuple type must have at least one type");
|
3420
|
+
}
|
3421
|
+
let types = tys
|
3422
|
+
.iter()
|
3423
|
+
.map(|ty| {
|
3424
|
+
let ty = self.create_component_val_type(*ty, offset)?;
|
3425
|
+
info.combine(ty.info(types), offset)?;
|
3426
|
+
Ok(ty)
|
3427
|
+
})
|
3428
|
+
.collect::<Result<_>>()?;
|
3429
|
+
|
3430
|
+
Ok(ComponentDefinedType::Tuple(TupleType { info, types }))
|
3431
|
+
}
|
3432
|
+
|
3433
|
+
fn create_flags_type(
|
3434
|
+
&self,
|
3435
|
+
names: &[&str],
|
3436
|
+
features: &WasmFeatures,
|
3437
|
+
offset: usize,
|
3438
|
+
) -> Result<ComponentDefinedType> {
|
3439
|
+
let mut names_set = IndexSet::default();
|
3440
|
+
names_set.reserve(names.len());
|
3441
|
+
|
3442
|
+
if names.is_empty() {
|
3443
|
+
bail!(offset, "flags must have at least one entry");
|
3444
|
+
}
|
3445
|
+
|
3446
|
+
if names.len() > 32 && !features.component_model_more_flags() {
|
3447
|
+
bail!(
|
3448
|
+
offset,
|
3449
|
+
"cannot have more than 32 flags; this was previously \
|
3450
|
+
accepted and if this is required for your project please \
|
3451
|
+
leave a comment on \
|
3452
|
+
https://github.com/WebAssembly/component-model/issues/370"
|
3453
|
+
);
|
3454
|
+
}
|
3455
|
+
|
3456
|
+
for name in names {
|
3457
|
+
let name = to_kebab_str(name, "flag", offset)?;
|
3458
|
+
if !names_set.insert(name.to_owned()) {
|
3459
|
+
bail!(
|
3460
|
+
offset,
|
3461
|
+
"flag name `{name}` conflicts with previous flag name `{prev}`",
|
3462
|
+
prev = names_set.get(name).unwrap()
|
3463
|
+
);
|
3464
|
+
}
|
3465
|
+
}
|
3466
|
+
|
3467
|
+
Ok(ComponentDefinedType::Flags(names_set))
|
3468
|
+
}
|
3469
|
+
|
3470
|
+
fn create_enum_type(&self, cases: &[&str], offset: usize) -> Result<ComponentDefinedType> {
|
3471
|
+
if cases.len() > u32::MAX as usize {
|
3472
|
+
return Err(BinaryReaderError::new(
|
3473
|
+
"enumeration type cannot be represented with a 32-bit discriminant value",
|
3474
|
+
offset,
|
3475
|
+
));
|
3476
|
+
}
|
3477
|
+
|
3478
|
+
if cases.is_empty() {
|
3479
|
+
bail!(offset, "enum type must have at least one variant");
|
3480
|
+
}
|
3481
|
+
|
3482
|
+
let mut tags = IndexSet::default();
|
3483
|
+
tags.reserve(cases.len());
|
3484
|
+
|
3485
|
+
for tag in cases {
|
3486
|
+
let tag = to_kebab_str(tag, "enum tag", offset)?;
|
3487
|
+
if !tags.insert(tag.to_owned()) {
|
3488
|
+
bail!(
|
3489
|
+
offset,
|
3490
|
+
"enum tag name `{tag}` conflicts with previous tag name `{prev}`",
|
3491
|
+
prev = tags.get(tag).unwrap()
|
3492
|
+
);
|
3493
|
+
}
|
3494
|
+
}
|
3495
|
+
|
3496
|
+
Ok(ComponentDefinedType::Enum(tags))
|
3497
|
+
}
|
3498
|
+
|
3499
|
+
fn create_component_val_type(
|
3500
|
+
&self,
|
3501
|
+
ty: crate::ComponentValType,
|
3502
|
+
offset: usize,
|
3503
|
+
) -> Result<ComponentValType> {
|
3504
|
+
Ok(match ty {
|
3505
|
+
crate::ComponentValType::Primitive(pt) => ComponentValType::Primitive(pt),
|
3506
|
+
crate::ComponentValType::Type(idx) => {
|
3507
|
+
ComponentValType::Type(self.defined_type_at(idx, offset)?)
|
3508
|
+
}
|
3509
|
+
})
|
3510
|
+
}
|
3511
|
+
|
3512
|
+
pub fn core_type_at(&self, idx: u32, offset: usize) -> Result<ComponentCoreTypeId> {
|
3513
|
+
self.core_types
|
3514
|
+
.get(idx as usize)
|
3515
|
+
.copied()
|
3516
|
+
.ok_or_else(|| format_err!(offset, "unknown type {idx}: type index out of bounds"))
|
3517
|
+
}
|
3518
|
+
|
3519
|
+
pub fn component_type_at(&self, idx: u32, offset: usize) -> Result<ComponentAnyTypeId> {
|
3520
|
+
self.types
|
3521
|
+
.get(idx as usize)
|
3522
|
+
.copied()
|
3523
|
+
.ok_or_else(|| format_err!(offset, "unknown type {idx}: type index out of bounds"))
|
3524
|
+
}
|
3525
|
+
|
3526
|
+
fn function_type_at<'a>(
|
3527
|
+
&self,
|
3528
|
+
idx: u32,
|
3529
|
+
types: &'a TypeList,
|
3530
|
+
offset: usize,
|
3531
|
+
) -> Result<&'a ComponentFuncType> {
|
3532
|
+
let id = self.component_type_at(idx, offset)?;
|
3533
|
+
match id {
|
3534
|
+
ComponentAnyTypeId::Func(id) => Ok(&types[id]),
|
3535
|
+
_ => bail!(offset, "type index {idx} is not a function type"),
|
3536
|
+
}
|
3537
|
+
}
|
3538
|
+
|
3539
|
+
fn function_at(&self, idx: u32, offset: usize) -> Result<ComponentFuncTypeId> {
|
3540
|
+
self.funcs.get(idx as usize).copied().ok_or_else(|| {
|
3541
|
+
format_err!(
|
3542
|
+
offset,
|
3543
|
+
"unknown function {idx}: function index out of bounds"
|
3544
|
+
)
|
3545
|
+
})
|
3546
|
+
}
|
3547
|
+
|
3548
|
+
fn component_at(&self, idx: u32, offset: usize) -> Result<ComponentTypeId> {
|
3549
|
+
self.components.get(idx as usize).copied().ok_or_else(|| {
|
3550
|
+
format_err!(
|
3551
|
+
offset,
|
3552
|
+
"unknown component {idx}: component index out of bounds"
|
3553
|
+
)
|
3554
|
+
})
|
3555
|
+
}
|
3556
|
+
|
3557
|
+
fn instance_at(&self, idx: u32, offset: usize) -> Result<ComponentInstanceTypeId> {
|
3558
|
+
self.instances.get(idx as usize).copied().ok_or_else(|| {
|
3559
|
+
format_err!(
|
3560
|
+
offset,
|
3561
|
+
"unknown instance {idx}: instance index out of bounds"
|
3562
|
+
)
|
3563
|
+
})
|
3564
|
+
}
|
3565
|
+
|
3566
|
+
fn value_at(&mut self, idx: u32, offset: usize) -> Result<&ComponentValType> {
|
3567
|
+
match self.values.get_mut(idx as usize) {
|
3568
|
+
Some((ty, used)) if !*used => {
|
3569
|
+
*used = true;
|
3570
|
+
Ok(ty)
|
3571
|
+
}
|
3572
|
+
Some(_) => bail!(offset, "value {idx} cannot be used more than once"),
|
3573
|
+
None => bail!(offset, "unknown value {idx}: value index out of bounds"),
|
3574
|
+
}
|
3575
|
+
}
|
3576
|
+
|
3577
|
+
fn defined_type_at(&self, idx: u32, offset: usize) -> Result<ComponentDefinedTypeId> {
|
3578
|
+
match self.component_type_at(idx, offset)? {
|
3579
|
+
ComponentAnyTypeId::Defined(id) => Ok(id),
|
3580
|
+
_ => bail!(offset, "type index {idx} is not a defined type"),
|
3581
|
+
}
|
3582
|
+
}
|
3583
|
+
|
3584
|
+
fn core_function_at(&self, idx: u32, offset: usize) -> Result<CoreTypeId> {
|
3585
|
+
match self.core_funcs.get(idx as usize) {
|
3586
|
+
Some(id) => Ok(*id),
|
3587
|
+
None => bail!(
|
3588
|
+
offset,
|
3589
|
+
"unknown core function {idx}: function index out of bounds"
|
3590
|
+
),
|
3591
|
+
}
|
3592
|
+
}
|
3593
|
+
|
3594
|
+
fn module_at(&self, idx: u32, offset: usize) -> Result<ComponentCoreModuleTypeId> {
|
3595
|
+
match self.core_modules.get(idx as usize) {
|
3596
|
+
Some(id) => Ok(*id),
|
3597
|
+
None => bail!(offset, "unknown module {idx}: module index out of bounds"),
|
3598
|
+
}
|
3599
|
+
}
|
3600
|
+
|
3601
|
+
fn core_instance_at(&self, idx: u32, offset: usize) -> Result<ComponentCoreInstanceTypeId> {
|
3602
|
+
match self.core_instances.get(idx as usize) {
|
3603
|
+
Some(id) => Ok(*id),
|
3604
|
+
None => bail!(
|
3605
|
+
offset,
|
3606
|
+
"unknown core instance {idx}: instance index out of bounds"
|
3607
|
+
),
|
3608
|
+
}
|
3609
|
+
}
|
3610
|
+
|
3611
|
+
fn core_instance_export<'a>(
|
3612
|
+
&self,
|
3613
|
+
instance_index: u32,
|
3614
|
+
name: &str,
|
3615
|
+
types: &'a TypeList,
|
3616
|
+
offset: usize,
|
3617
|
+
) -> Result<&'a EntityType> {
|
3618
|
+
match types[self.core_instance_at(instance_index, offset)?]
|
3619
|
+
.internal_exports(types)
|
3620
|
+
.get(name)
|
3621
|
+
{
|
3622
|
+
Some(export) => Ok(export),
|
3623
|
+
None => bail!(
|
3624
|
+
offset,
|
3625
|
+
"core instance {instance_index} has no export named `{name}`"
|
3626
|
+
),
|
3627
|
+
}
|
3628
|
+
}
|
3629
|
+
|
3630
|
+
fn global_at(&self, idx: u32, offset: usize) -> Result<&GlobalType> {
|
3631
|
+
match self.core_globals.get(idx as usize) {
|
3632
|
+
Some(t) => Ok(t),
|
3633
|
+
None => bail!(offset, "unknown global {idx}: global index out of bounds"),
|
3634
|
+
}
|
3635
|
+
}
|
3636
|
+
|
3637
|
+
fn table_at(&self, idx: u32, offset: usize) -> Result<&TableType> {
|
3638
|
+
match self.core_tables.get(idx as usize) {
|
3639
|
+
Some(t) => Ok(t),
|
3640
|
+
None => bail!(offset, "unknown table {idx}: table index out of bounds"),
|
3641
|
+
}
|
3642
|
+
}
|
3643
|
+
|
3644
|
+
fn memory_at(&self, idx: u32, offset: usize) -> Result<&MemoryType> {
|
3645
|
+
match self.core_memories.get(idx as usize) {
|
3646
|
+
Some(t) => Ok(t),
|
3647
|
+
None => bail!(offset, "unknown memory {idx}: memory index out of bounds"),
|
3648
|
+
}
|
3649
|
+
}
|
3650
|
+
|
3651
|
+
/// Completes the translation of this component, performing final
|
3652
|
+
/// validation of its structure.
|
3653
|
+
///
|
3654
|
+
/// This method is required to be called for translating all components.
|
3655
|
+
/// Internally this will convert local data structures into a
|
3656
|
+
/// `ComponentType` which is suitable to use to describe the type of this
|
3657
|
+
/// component.
|
3658
|
+
pub fn finish(&mut self, types: &TypeAlloc, offset: usize) -> Result<ComponentType> {
|
3659
|
+
let mut ty = ComponentType {
|
3660
|
+
// Inherit some fields based on translation of the component.
|
3661
|
+
info: self.type_info,
|
3662
|
+
imports: self.imports.clone(),
|
3663
|
+
exports: self.exports.clone(),
|
3664
|
+
|
3665
|
+
// This is filled in as a subset of `self.defined_resources`
|
3666
|
+
// depending on what's actually used by the exports. See the
|
3667
|
+
// bottom of this function.
|
3668
|
+
defined_resources: Default::default(),
|
3669
|
+
|
3670
|
+
// These are inherited directly from what was calculated for this
|
3671
|
+
// component.
|
3672
|
+
imported_resources: mem::take(&mut self.imported_resources)
|
3673
|
+
.into_iter()
|
3674
|
+
.collect(),
|
3675
|
+
explicit_resources: mem::take(&mut self.explicit_resources),
|
3676
|
+
};
|
3677
|
+
|
3678
|
+
// Collect all "free variables", or resources, from the imports of this
|
3679
|
+
// component. None of the resources defined within this component can
|
3680
|
+
// be used as part of the exports. This set is then used to reject any
|
3681
|
+
// of `self.defined_resources` which show up.
|
3682
|
+
let mut free = IndexSet::default();
|
3683
|
+
for ty in ty.imports.values() {
|
3684
|
+
types.free_variables_component_entity(ty, &mut free);
|
3685
|
+
}
|
3686
|
+
for (resource, _path) in self.defined_resources.iter() {
|
3687
|
+
// FIXME: this error message is quite opaque and doesn't indicate
|
3688
|
+
// more contextual information such as:
|
3689
|
+
//
|
3690
|
+
// * what was the exported resource found in the imports
|
3691
|
+
// * which import was the resource found within
|
3692
|
+
//
|
3693
|
+
// These are possible to calculate here if necessary, however.
|
3694
|
+
if free.contains(resource) {
|
3695
|
+
bail!(offset, "local resource type found in imports");
|
3696
|
+
}
|
3697
|
+
}
|
3698
|
+
|
3699
|
+
// The next step in validation a component, with respect to resources,
|
3700
|
+
// is to minimize the set of defined resources to only those that
|
3701
|
+
// are actually used by the exports. This weeds out resources that are
|
3702
|
+
// defined, used within a component, and never exported, for example.
|
3703
|
+
//
|
3704
|
+
// The free variables of all exports are inserted into the `free` set
|
3705
|
+
// (which is reused from the imports after clearing it). The defined
|
3706
|
+
// resources calculated for this component are then inserted into this
|
3707
|
+
// type's list of defined resources if it's contained somewhere in
|
3708
|
+
// the free variables.
|
3709
|
+
//
|
3710
|
+
// Note that at the same time all defined resources must be exported,
|
3711
|
+
// somehow, transitively from this component. The `explicit_resources`
|
3712
|
+
// map is consulted for this purpose which lists all explicitly
|
3713
|
+
// exported resources in the component, regardless from whence they
|
3714
|
+
// came. If not present in this map then it's not exported and an error
|
3715
|
+
// is returned.
|
3716
|
+
//
|
3717
|
+
// NB: the "types are exported" check is probably sufficient nowadays
|
3718
|
+
// that the check of the `explicit_resources` map is probably not
|
3719
|
+
// necessary, but it's left here for completeness and out of an
|
3720
|
+
// abundance of caution.
|
3721
|
+
free.clear();
|
3722
|
+
for ty in ty.exports.values() {
|
3723
|
+
types.free_variables_component_entity(ty, &mut free);
|
3724
|
+
}
|
3725
|
+
for (id, _rep) in mem::take(&mut self.defined_resources) {
|
3726
|
+
if !free.contains(&id) {
|
3727
|
+
continue;
|
3728
|
+
}
|
3729
|
+
|
3730
|
+
let path = match ty.explicit_resources.get(&id).cloned() {
|
3731
|
+
Some(path) => path,
|
3732
|
+
// FIXME: this error message is quite opaque and doesn't
|
3733
|
+
// indicate more contextual information such as:
|
3734
|
+
//
|
3735
|
+
// * which resource wasn't found in an export
|
3736
|
+
// * which export has a reference to the resource
|
3737
|
+
//
|
3738
|
+
// These are possible to calculate here if necessary, however.
|
3739
|
+
None => bail!(
|
3740
|
+
offset,
|
3741
|
+
"local resource type found in export but not exported itself"
|
3742
|
+
),
|
3743
|
+
};
|
3744
|
+
|
3745
|
+
ty.defined_resources.push((id, path));
|
3746
|
+
}
|
3747
|
+
|
3748
|
+
Ok(ty)
|
3749
|
+
}
|
3750
|
+
|
3751
|
+
fn check_value_support(&self, features: &WasmFeatures, offset: usize) -> Result<()> {
|
3752
|
+
if !features.component_model_values() {
|
3753
|
+
bail!(
|
3754
|
+
offset,
|
3755
|
+
"support for component model `value`s is not enabled"
|
3756
|
+
);
|
3757
|
+
}
|
3758
|
+
Ok(())
|
3759
|
+
}
|
3760
|
+
}
|
3761
|
+
|
3762
|
+
impl InternRecGroup for ComponentState {
|
3763
|
+
fn add_type_id(&mut self, id: CoreTypeId) {
|
3764
|
+
self.core_types.push(ComponentCoreTypeId::Sub(id));
|
3765
|
+
}
|
3766
|
+
|
3767
|
+
fn type_id_at(&self, idx: u32, offset: usize) -> Result<CoreTypeId> {
|
3768
|
+
match self.core_type_at(idx, offset)? {
|
3769
|
+
ComponentCoreTypeId::Sub(id) => Ok(id),
|
3770
|
+
ComponentCoreTypeId::Module(_) => {
|
3771
|
+
bail!(offset, "type index {idx} is a module type, not a sub type");
|
3772
|
+
}
|
3773
|
+
}
|
3774
|
+
}
|
3775
|
+
|
3776
|
+
fn types_len(&self) -> u32 {
|
3777
|
+
u32::try_from(self.core_types.len()).unwrap()
|
3778
|
+
}
|
3779
|
+
}
|
3780
|
+
|
3781
|
+
impl ComponentNameContext {
|
3782
|
+
/// Registers that the resource `id` is named `name` within this context.
|
3783
|
+
fn register(&mut self, name: &str, id: AliasableResourceId) {
|
3784
|
+
let idx = self.all_resource_names.len();
|
3785
|
+
let prev = self.resource_name_map.insert(id, idx);
|
3786
|
+
assert!(
|
3787
|
+
prev.is_none(),
|
3788
|
+
"for {id:?}, inserted {idx:?} but already had {prev:?}"
|
3789
|
+
);
|
3790
|
+
self.all_resource_names.insert(name.to_string());
|
3791
|
+
}
|
3792
|
+
|
3793
|
+
fn validate_extern(
|
3794
|
+
&self,
|
3795
|
+
name: &str,
|
3796
|
+
kind: ExternKind,
|
3797
|
+
ty: &ComponentEntityType,
|
3798
|
+
types: &TypeAlloc,
|
3799
|
+
offset: usize,
|
3800
|
+
kind_names: &mut IndexSet<ComponentName>,
|
3801
|
+
items: &mut IndexMap<String, ComponentEntityType>,
|
3802
|
+
info: &mut TypeInfo,
|
3803
|
+
features: &WasmFeatures,
|
3804
|
+
) -> Result<()> {
|
3805
|
+
// First validate that `name` is even a valid kebab name, meaning it's
|
3806
|
+
// in kebab-case, is an ID, etc.
|
3807
|
+
let kebab = ComponentName::new_with_features(name, offset, *features)
|
3808
|
+
.with_context(|| format!("{} name `{name}` is not a valid extern name", kind.desc()))?;
|
3809
|
+
|
3810
|
+
if let ExternKind::Export = kind {
|
3811
|
+
match kebab.kind() {
|
3812
|
+
ComponentNameKind::Label(_)
|
3813
|
+
| ComponentNameKind::Method(_)
|
3814
|
+
| ComponentNameKind::Static(_)
|
3815
|
+
| ComponentNameKind::Constructor(_)
|
3816
|
+
| ComponentNameKind::Interface(_) => {}
|
3817
|
+
|
3818
|
+
ComponentNameKind::Hash(_)
|
3819
|
+
| ComponentNameKind::Url(_)
|
3820
|
+
| ComponentNameKind::Dependency(_) => {
|
3821
|
+
bail!(offset, "name `{name}` is not a valid export name")
|
3822
|
+
}
|
3823
|
+
}
|
3824
|
+
}
|
3825
|
+
|
3826
|
+
// Validate that the kebab name, if it has structure such as
|
3827
|
+
// `[method]a.b`, is indeed valid with respect to known resources.
|
3828
|
+
self.validate(&kebab, ty, types, offset)
|
3829
|
+
.with_context(|| format!("{} name `{kebab}` is not valid", kind.desc()))?;
|
3830
|
+
|
3831
|
+
// Top-level kebab-names must all be unique, even between both imports
|
3832
|
+
// and exports ot a component. For those names consult the `kebab_names`
|
3833
|
+
// set.
|
3834
|
+
if let Some(prev) = kind_names.replace(kebab.clone()) {
|
3835
|
+
bail!(
|
3836
|
+
offset,
|
3837
|
+
"{} name `{kebab}` conflicts with previous name `{prev}`",
|
3838
|
+
kind.desc()
|
3839
|
+
);
|
3840
|
+
}
|
3841
|
+
|
3842
|
+
// Otherwise all strings must be unique, regardless of their name, so
|
3843
|
+
// consult the `items` set to ensure that we're not for example
|
3844
|
+
// importing the same interface ID twice.
|
3845
|
+
match items.entry(name.to_string()) {
|
3846
|
+
Entry::Occupied(e) => {
|
3847
|
+
bail!(
|
3848
|
+
offset,
|
3849
|
+
"{kind} name `{name}` conflicts with previous name `{prev}`",
|
3850
|
+
kind = kind.desc(),
|
3851
|
+
prev = e.key(),
|
3852
|
+
);
|
3853
|
+
}
|
3854
|
+
Entry::Vacant(e) => {
|
3855
|
+
e.insert(*ty);
|
3856
|
+
info.combine(ty.info(types), offset)?;
|
3857
|
+
}
|
3858
|
+
}
|
3859
|
+
Ok(())
|
3860
|
+
}
|
3861
|
+
|
3862
|
+
/// Validates that the `name` provided is allowed to have the type `ty`.
|
3863
|
+
fn validate(
|
3864
|
+
&self,
|
3865
|
+
name: &ComponentName,
|
3866
|
+
ty: &ComponentEntityType,
|
3867
|
+
types: &TypeAlloc,
|
3868
|
+
offset: usize,
|
3869
|
+
) -> Result<()> {
|
3870
|
+
let func = || {
|
3871
|
+
let id = match ty {
|
3872
|
+
ComponentEntityType::Func(id) => *id,
|
3873
|
+
_ => bail!(offset, "item is not a func"),
|
3874
|
+
};
|
3875
|
+
Ok(&types[id])
|
3876
|
+
};
|
3877
|
+
match name.kind() {
|
3878
|
+
// No validation necessary for these styles of names
|
3879
|
+
ComponentNameKind::Label(_)
|
3880
|
+
| ComponentNameKind::Interface(_)
|
3881
|
+
| ComponentNameKind::Url(_)
|
3882
|
+
| ComponentNameKind::Dependency(_)
|
3883
|
+
| ComponentNameKind::Hash(_) => {}
|
3884
|
+
|
3885
|
+
// Constructors must return `(own $resource)` and the `$resource`
|
3886
|
+
// must be named within this context to match `rname`
|
3887
|
+
ComponentNameKind::Constructor(rname) => {
|
3888
|
+
let ty = func()?;
|
3889
|
+
if ty.results.len() != 1 {
|
3890
|
+
bail!(offset, "function should return one value");
|
3891
|
+
}
|
3892
|
+
let ty = ty.results[0].1;
|
3893
|
+
let resource = match ty {
|
3894
|
+
ComponentValType::Primitive(_) => None,
|
3895
|
+
ComponentValType::Type(ty) => match &types[ty] {
|
3896
|
+
ComponentDefinedType::Own(id) => Some(id),
|
3897
|
+
_ => None,
|
3898
|
+
},
|
3899
|
+
};
|
3900
|
+
let resource = match resource {
|
3901
|
+
Some(id) => id,
|
3902
|
+
None => bail!(offset, "function should return `(own $T)`"),
|
3903
|
+
};
|
3904
|
+
self.validate_resource_name(*resource, rname, offset)?;
|
3905
|
+
}
|
3906
|
+
|
3907
|
+
// Methods must take `(param "self" (borrow $resource))` as the
|
3908
|
+
// first argument where `$resources` matches the name `resource` as
|
3909
|
+
// named in this context.
|
3910
|
+
ComponentNameKind::Method(name) => {
|
3911
|
+
let ty = func()?;
|
3912
|
+
if ty.params.len() == 0 {
|
3913
|
+
bail!(offset, "function should have at least one argument");
|
3914
|
+
}
|
3915
|
+
let (pname, pty) = &ty.params[0];
|
3916
|
+
if pname.as_str() != "self" {
|
3917
|
+
bail!(
|
3918
|
+
offset,
|
3919
|
+
"function should have a first argument called `self`",
|
3920
|
+
);
|
3921
|
+
}
|
3922
|
+
let id = match pty {
|
3923
|
+
ComponentValType::Primitive(_) => None,
|
3924
|
+
ComponentValType::Type(ty) => match &types[*ty] {
|
3925
|
+
ComponentDefinedType::Borrow(id) => Some(id),
|
3926
|
+
_ => None,
|
3927
|
+
},
|
3928
|
+
};
|
3929
|
+
let id = match id {
|
3930
|
+
Some(id) => id,
|
3931
|
+
None => bail!(
|
3932
|
+
offset,
|
3933
|
+
"function should take a first argument of `(borrow $T)`"
|
3934
|
+
),
|
3935
|
+
};
|
3936
|
+
self.validate_resource_name(*id, name.resource(), offset)?;
|
3937
|
+
}
|
3938
|
+
|
3939
|
+
// Static methods don't have much validation beyond that they must
|
3940
|
+
// be a function and the resource name referred to must already be
|
3941
|
+
// in this context.
|
3942
|
+
ComponentNameKind::Static(name) => {
|
3943
|
+
func()?;
|
3944
|
+
if !self.all_resource_names.contains(name.resource().as_str()) {
|
3945
|
+
bail!(offset, "static resource name is not known in this context");
|
3946
|
+
}
|
3947
|
+
}
|
3948
|
+
}
|
3949
|
+
|
3950
|
+
Ok(())
|
3951
|
+
}
|
3952
|
+
|
3953
|
+
fn validate_resource_name(
|
3954
|
+
&self,
|
3955
|
+
id: AliasableResourceId,
|
3956
|
+
name: &KebabStr,
|
3957
|
+
offset: usize,
|
3958
|
+
) -> Result<()> {
|
3959
|
+
let expected_name_idx = match self.resource_name_map.get(&id) {
|
3960
|
+
Some(idx) => *idx,
|
3961
|
+
None => {
|
3962
|
+
bail!(
|
3963
|
+
offset,
|
3964
|
+
"resource used in function does not have a name in this context"
|
3965
|
+
)
|
3966
|
+
}
|
3967
|
+
};
|
3968
|
+
let expected_name = &self.all_resource_names[expected_name_idx];
|
3969
|
+
if name.as_str() != expected_name {
|
3970
|
+
bail!(
|
3971
|
+
offset,
|
3972
|
+
"function does not match expected \
|
3973
|
+
resource name `{expected_name}`"
|
3974
|
+
);
|
3975
|
+
}
|
3976
|
+
Ok(())
|
3977
|
+
}
|
3978
|
+
}
|
3979
|
+
|
3980
|
+
use self::append_only::*;
|
3981
|
+
|
3982
|
+
mod append_only {
|
3983
|
+
use crate::prelude::IndexMap;
|
3984
|
+
use core::hash::Hash;
|
3985
|
+
use core::ops::Deref;
|
3986
|
+
|
3987
|
+
pub struct IndexMapAppendOnly<K, V>(IndexMap<K, V>);
|
3988
|
+
|
3989
|
+
impl<K, V> IndexMapAppendOnly<K, V>
|
3990
|
+
where
|
3991
|
+
K: Hash + Eq + Ord + PartialEq + Clone,
|
3992
|
+
{
|
3993
|
+
pub fn insert(&mut self, key: K, value: V) {
|
3994
|
+
let prev = self.0.insert(key, value);
|
3995
|
+
assert!(prev.is_none());
|
3996
|
+
}
|
3997
|
+
}
|
3998
|
+
|
3999
|
+
impl<K, V> Deref for IndexMapAppendOnly<K, V> {
|
4000
|
+
type Target = IndexMap<K, V>;
|
4001
|
+
fn deref(&self) -> &IndexMap<K, V> {
|
4002
|
+
&self.0
|
4003
|
+
}
|
4004
|
+
}
|
4005
|
+
|
4006
|
+
impl<K, V> Default for IndexMapAppendOnly<K, V> {
|
4007
|
+
fn default() -> Self {
|
4008
|
+
Self(Default::default())
|
4009
|
+
}
|
4010
|
+
}
|
4011
|
+
|
4012
|
+
impl<K, V> IntoIterator for IndexMapAppendOnly<K, V> {
|
4013
|
+
type IntoIter = <IndexMap<K, V> as IntoIterator>::IntoIter;
|
4014
|
+
type Item = <IndexMap<K, V> as IntoIterator>::Item;
|
4015
|
+
fn into_iter(self) -> Self::IntoIter {
|
4016
|
+
self.0.into_iter()
|
4017
|
+
}
|
4018
|
+
}
|
4019
|
+
}
|