wasmtime 20.0.2 → 21.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +129 -124
- data/ext/Cargo.toml +8 -6
- data/ext/cargo-vendor/cobs-0.2.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cobs-0.2.3/Cargo.toml +39 -0
- data/ext/cargo-vendor/cobs-0.2.3/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/cobs-0.2.3/LICENSE-MIT +19 -0
- data/ext/cargo-vendor/cobs-0.2.3/README.md +23 -0
- data/ext/cargo-vendor/cobs-0.2.3/src/dec.rs +360 -0
- data/ext/cargo-vendor/cobs-0.2.3/src/enc.rs +216 -0
- data/ext/cargo-vendor/cobs-0.2.3/src/lib.rs +14 -0
- data/ext/cargo-vendor/cobs-0.2.3/tests/test.rs +265 -0
- data/ext/cargo-vendor/cranelift-bforest-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.108.1/Cargo.toml +40 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/Cargo.toml +189 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/build.rs +266 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/alias_analysis.rs +403 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/context.rs +395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ctxhash.rs +167 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph/elaborate.rs +835 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph.rs +839 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/incremental_cache.rs +256 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/instructions.rs +1020 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/abi.rs +1580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/args.rs +721 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit.rs +3846 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit_tests.rs +7902 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/imms.rs +1213 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/mod.rs +3094 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/regs.rs +288 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst.isle +4225 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/lower/isle.rs +810 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/pcc.rs +568 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/mod.rs +449 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/abi.rs +1051 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/args.rs +1938 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit.rs +2681 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit_tests.rs +2197 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/mod.rs +1975 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/regs.rs +168 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/vector.rs +1144 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst.isle +2969 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower/isle.rs +625 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower.isle +2883 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/abi.rs +1037 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/args.rs +314 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit.rs +3646 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/imms.rs +202 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/mod.rs +3421 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/regs.rs +180 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/abi.rs +1410 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/args.rs +2256 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit.rs +4311 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_tests.rs +5171 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/mod.rs +2838 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/regs.rs +276 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst.isle +5294 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower/isle.rs +1064 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.isle +4808 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.rs +337 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/pcc.rs +1014 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/abi.rs +2506 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/blockorder.rs +465 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/isle.rs +903 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/lower.rs +1432 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/mod.rs +555 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/reg.rs +522 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/valueregs.rs +138 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/vcode.rs +1741 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/nan_canonicalization.rs +130 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/arithmetic.isle +240 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/icmp.isle +215 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ranges.rs +131 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/remove_constant_phis.rs +419 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/scoped_hash_map.rs +310 -0
- data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/settings.rs +590 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_inst.rs +1278 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_isle.rs +519 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_settings.rs +508 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_types.rs +75 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/riscv64.rs +168 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/x86.rs +414 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isle.rs +126 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/lib.rs +98 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/shared/settings.rs +348 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/srcgen.rs +464 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.108.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.108.1/Cargo.toml +52 -0
- data/ext/cargo-vendor/cranelift-entity-0.108.1/src/lib.rs +381 -0
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/Cargo.toml +67 -0
- data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/switch.rs +696 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/Cargo.toml +46 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/codegen.rs +886 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/disjointsets.rs +169 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/lib.rs +33 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/sema.rs +2492 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/serialize.rs +846 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/stablemapset.rs +79 -0
- data/ext/cargo-vendor/cranelift-isle-0.108.1/src/trie_again.rs +684 -0
- data/ext/cargo-vendor/cranelift-native-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.108.1/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/Cargo.toml +109 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/code_translator.rs +3687 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/environ/dummy.rs +906 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/environ/spec.rs +945 -0
- data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/sections_translator.rs +389 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +48 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/CHANGELOG.md +28 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/Cargo.toml +73 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/README.md +33 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/ci.sh +21 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/rust-toolchain.toml +3 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/futures_io.rs +65 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/mod.rs +40 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/std_io.rs +107 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/tokio.rs +108 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/asynch.rs +230 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/blocking.rs +309 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/fmt.rs +228 -0
- data/ext/cargo-vendor/embedded-io-0.4.0/src/lib.rs +125 -0
- data/ext/cargo-vendor/libm-0.2.8/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/libm-0.2.8/CHANGELOG.md +123 -0
- data/ext/cargo-vendor/libm-0.2.8/CONTRIBUTING.md +95 -0
- data/ext/cargo-vendor/libm-0.2.8/Cargo.toml +45 -0
- data/ext/cargo-vendor/libm-0.2.8/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/libm-0.2.8/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/libm-0.2.8/README.md +51 -0
- data/ext/cargo-vendor/libm-0.2.8/build.rs +463 -0
- data/ext/cargo-vendor/libm-0.2.8/src/lib.rs +59 -0
- data/ext/cargo-vendor/libm-0.2.8/src/libm_helper.rs +171 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/acos.rs +112 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/acosf.rs +79 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/acosh.rs +27 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/acoshf.rs +26 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/asin.rs +119 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/asinf.rs +72 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/asinh.rs +40 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/asinhf.rs +39 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atan.rs +184 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atan2.rs +126 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atan2f.rs +91 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atanf.rs +112 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atanh.rs +37 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/atanhf.rs +37 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/cbrt.rs +113 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/cbrtf.rs +75 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ceil.rs +82 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ceilf.rs +65 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/copysign.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/copysignf.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/cos.rs +73 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/cosf.rs +83 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/cosh.rs +38 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/coshf.rs +38 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/erf.rs +318 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/erff.rs +230 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/exp.rs +154 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/exp10.rs +22 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/exp10f.rs +22 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/exp2.rs +394 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/exp2f.rs +135 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/expf.rs +101 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/expm1.rs +144 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/expm1f.rs +134 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs +14 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fabs.rs +41 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fabsf.rs +41 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fdim.rs +22 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fdimf.rs +22 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs +27 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/floor.rs +81 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/floorf.rs +66 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fma.rs +232 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmaf.rs +117 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmax.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmaxf.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmin.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs +12 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmod.rs +80 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/fmodf.rs +89 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/frexp.rs +20 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/frexpf.rs +21 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/hypot.rs +74 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/hypotf.rs +43 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ilogb.rs +32 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ilogbf.rs +32 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/j0.rs +422 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/j0f.rs +359 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/j1.rs +414 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/j1f.rs +380 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/jn.rs +343 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/jnf.rs +259 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_cos.rs +62 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_cosf.rs +29 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_expo2.rs +14 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_expo2f.rs +14 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_sin.rs +57 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_sinf.rs +30 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_tan.rs +105 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/k_tanf.rs +46 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ldexp.rs +4 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/ldexpf.rs +4 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/lgamma.rs +6 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/lgamma_r.rs +320 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/lgammaf.rs +6 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/lgammaf_r.rs +255 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log.rs +117 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log10.rs +117 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log10f.rs +91 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log1p.rs +143 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log1pf.rs +98 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log2.rs +106 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/log2f.rs +87 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/logf.rs +65 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/mod.rs +370 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/modf.rs +34 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/modff.rs +33 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/nextafter.rs +37 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/nextafterf.rs +37 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/pow.rs +637 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/powf.rs +342 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2.rs +233 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2_large.rs +470 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2f.rs +67 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/remainder.rs +5 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/remainderf.rs +5 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/remquo.rs +110 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/remquof.rs +97 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/rint.rs +58 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/rintf.rs +58 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/round.rs +28 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/roundf.rs +30 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/scalbn.rs +33 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/scalbnf.rs +29 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sin.rs +88 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sincos.rs +134 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sincosf.rs +185 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sinf.rs +93 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sinh.rs +49 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sinhf.rs +30 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sqrt.rs +280 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/sqrtf.rs +170 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tan.rs +70 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tanf.rs +78 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tanh.rs +53 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tanhf.rs +39 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tgamma.rs +208 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/tgammaf.rs +6 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/trunc.rs +40 -0
- data/ext/cargo-vendor/libm-0.2.8/src/math/truncf.rs +42 -0
- data/ext/cargo-vendor/postcard-1.0.8/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/postcard-1.0.8/CHANGELOG.md +141 -0
- data/ext/cargo-vendor/postcard-1.0.8/Cargo.toml +100 -0
- data/ext/cargo-vendor/postcard-1.0.8/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/postcard-1.0.8/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/postcard-1.0.8/README.md +146 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/LICENSE-CC-BY-SA +427 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/book.toml +6 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/src/SUMMARY.md +6 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/src/glossary.md +17 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/src/intro.md +12 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/src/serde-data-model.md +190 -0
- data/ext/cargo-vendor/postcard-1.0.8/spec/src/wire-format.md +327 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/accumulator.rs +367 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/de/deserializer.rs +599 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/de/flavors.rs +468 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/de/mod.rs +568 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/error.rs +95 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/fixint.rs +189 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/lib.rs +143 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/max_size.rs +233 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/schema.rs +282 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/ser/flavors.rs +722 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/ser/mod.rs +866 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/ser/serializer.rs +564 -0
- data/ext/cargo-vendor/postcard-1.0.8/src/varint.rs +103 -0
- data/ext/cargo-vendor/postcard-1.0.8/tests/accumulator.rs +57 -0
- data/ext/cargo-vendor/postcard-1.0.8/tests/crc.rs +60 -0
- data/ext/cargo-vendor/postcard-1.0.8/tests/loopback.rs +248 -0
- data/ext/cargo-vendor/postcard-1.0.8/tests/max_size.rs +101 -0
- data/ext/cargo-vendor/postcard-1.0.8/tests/schema.rs +107 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/Cargo.toml +58 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/build/main.rs +267 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/build/stable_api_config.rs +139 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/src/bindings.rs +21 -0
- data/ext/cargo-vendor/rb-sys-0.9.100/src/tracking_allocator.rs +266 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/Cargo.toml +62 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/src/bindings/stable_api.rs +203 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/src/bindings.rs +254 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/src/cc.rs +374 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.100/src/utils.rs +52 -0
- data/ext/cargo-vendor/wasi-common-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-21.0.1/Cargo.toml +223 -0
- data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/async_.rs +293 -0
- data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/main.rs +21 -0
- data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/sync.rs +279 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/Cargo.toml +45 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/code.rs +3502 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/data.rs +186 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/elements.rs +221 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/globals.rs +112 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/imports.rs +157 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/memories.rs +128 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tables.rs +134 -0
- data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/types.rs +678 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.lock +659 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/binary_reader.rs +1867 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/lib.rs +805 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/limits.rs +78 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/map.rs +137 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/parser.rs +1636 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/canonicals.rs +121 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/instances.rs +164 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/names.rs +102 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/start.rs +31 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/types.rs +551 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/code.rs +146 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/coredumps.rs +244 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/custom.rs +64 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/data.rs +96 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/dylink0.rs +110 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/elements.rs +152 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/globals.rs +51 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/linking.rs +450 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/memories.rs +57 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/names.rs +159 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/operators.rs +430 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/reloc.rs +301 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/tables.rs +93 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types/matches.rs +277 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types.rs +1773 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core.rs +43 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/readers.rs +316 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/resources.rs +235 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/component.rs +3242 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core/canonical.rs +233 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core.rs +1450 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/func.rs +331 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/names.rs +947 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/operators.rs +4117 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/types.rs +4492 -0
- data/ext/cargo-vendor/wasmparser-0.207.0/src/validator.rs +1786 -0
- data/ext/cargo-vendor/wasmprinter-0.207.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.207.0/Cargo.toml +50 -0
- data/ext/cargo-vendor/wasmprinter-0.207.0/src/lib.rs +3226 -0
- data/ext/cargo-vendor/wasmprinter-0.207.0/src/operator.rs +1164 -0
- data/ext/cargo-vendor/wasmprinter-0.207.0/tests/all.rs +293 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/Cargo.toml +386 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/build.rs +37 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/code_builder.rs +275 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/runtime.rs +176 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/compile.rs +910 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/config.rs +2904 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/engine/serialization.rs +887 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/engine.rs +728 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/lib.rs +328 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/jitdump.rs +67 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/perfmap.rs +48 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/vtune.rs +81 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent.rs +106 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code.rs +102 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code_memory.rs +337 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/component.rs +661 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/host.rs +440 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/options.rs +555 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/typed.rs +2498 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func.rs +746 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/instance.rs +814 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/linker.rs +783 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/matching.rs +217 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/mod.rs +783 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resource_table.rs +355 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resources.rs +1133 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/storage.rs +43 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/store.rs +29 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/types.rs +892 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/values.rs +980 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/coredump.rs +342 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/debug.rs +166 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/global.rs +310 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/table.rs +477 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals.rs +236 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func/typed.rs +899 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func.rs +2627 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/anyref.rs +46 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/externref.rs +50 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/rooting.rs +224 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/anyref.rs +473 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/externref.rs +650 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/i31.rs +346 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/rooting.rs +1588 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc.rs +89 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instance.rs +992 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instantiate.rs +346 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/limits.rs +399 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/linker.rs +1506 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/memory.rs +998 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module/registry.rs +353 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module.rs +1295 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/profiling.rs +221 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/resources.rs +33 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/signatures.rs +216 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/stack.rs +73 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/context.rs +243 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/data.rs +301 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/func_refs.rs +90 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store.rs +2820 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/func.rs +139 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/global.rs +68 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/memory.rs +287 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/table.rs +29 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline.rs +78 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trap.rs +642 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/type_registry.rs +807 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types/matching.rs +421 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types.rs +2239 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/unix.rs +40 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/v128.rs +131 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/values.rs +966 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/arch/aarch64.rs +76 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/arch/x86_64.rs +41 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/async_yield.rs +35 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/libcalls.rs +571 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/resources.rs +352 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component.rs +860 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/const_expr.rs +102 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/cow.rs +893 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/debug_builtins.rs +59 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/export.rs +108 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/disabled.rs +24 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/drc.rs +968 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/externref.rs +116 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/free_list.rs +771 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled.rs +18 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_ref.rs +491 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_runtime.rs +506 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/host_data.rs +82 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/i31.rs +87 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc.rs +245 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/imports.rs +29 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/on_demand.rs +218 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +66 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +705 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1000 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/table_pool.rs +233 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +245 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling.rs +656 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator.rs +798 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance.rs +1519 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/libcalls.rs +834 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/memory.rs +744 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap.rs +220 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap_vec.rs +162 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/module_id.rs +43 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/enabled.rs +214 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/mod.rs +54 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/pkru.rs +104 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/sys.rs +114 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/send_sync_ptr.rs +106 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/store_box.rs +37 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/capi.rs +200 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mmap.rs +112 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mod.rs +34 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/traphandlers.rs +55 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/vm.rs +109 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/mmap.rs +95 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/mod.rs +24 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/traphandlers.rs +47 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/mod.rs +25 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/machports.rs +416 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/mmap.rs +162 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/mod.rs +35 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/signals.rs +401 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/unwind.rs +150 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/vm.rs +215 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/mmap.rs +221 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/mod.rs +20 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/traphandlers.rs +104 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/table.rs +847 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/parking_spot.rs +623 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory.rs +233 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory_disabled.rs +101 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/backtrace.rs +267 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/coredump_disabled.rs +16 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/coredump_enabled.rs +42 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers.rs +768 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext/vm_host_func_context.rs +138 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext.rs +1337 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm.rs +287 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/windows.rs +35 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime.rs +110 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/sync_nostd.rs +255 -0
- data/ext/cargo-vendor/wasmtime-21.0.1/src/sync_std.rs +52 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/src/lib.rs +83 -0
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/Cargo.toml +88 -0
- data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/lib.rs +235 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/Cargo.toml +79 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/bindgen.rs +436 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/component.rs +1295 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen.rs +576 -0
- data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen_no_std.rs +16 -0
- data/ext/cargo-vendor/wasmtime-component-util-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-21.0.1/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-component-util-21.0.1/src/lib.rs +182 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/Cargo.toml +114 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler/component.rs +968 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler.rs +1383 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/gc.rs +252 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/attr.rs +320 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/expression.rs +1248 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/line_program.rs +287 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/mod.rs +256 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/unit.rs +529 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/utils.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/write_debuginfo.rs +196 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug.rs +18 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/func_environ.rs +2888 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc/enabled.rs +648 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc.rs +198 -0
- data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/lib.rs +511 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.lock +772 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.toml +154 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/examples/factc.rs +198 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/address_map.rs +73 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/mod.rs +419 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_artifacts.rs +315 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_environ.rs +1337 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_types.rs +362 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/trap_encoding.rs +70 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/compiler.rs +20 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/dfg.rs +691 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/info.rs +672 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate/adapt.rs +455 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate.rs +978 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types.rs +1029 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder/resources.rs +233 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder.rs +997 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component.rs +107 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/demangling.rs +28 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/core_types.rs +25 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/signature.rs +119 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/trampoline.rs +3234 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/transcode.rs +90 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/traps.rs +116 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact.rs +714 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/lib.rs +161 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module.rs +697 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_artifacts.rs +146 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_types.rs +91 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/scopevec.rs +80 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/stack_map.rs +37 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/trap_encoding.rs +189 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/tunables.rs +168 -0
- data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/vmoffsets.rs +1015 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/Cargo.toml +64 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/build.rs +38 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/lib.rs +328 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/unix.rs +490 -0
- data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/windows.rs +166 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/Cargo.toml +51 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/lib.rs +109 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/libc.rs +163 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/miri.rs +10 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/win.rs +49 -0
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/Cargo.toml +21 -0
- data/ext/cargo-vendor/wasmtime-slab-21.0.1/src/lib.rs +498 -0
- data/ext/cargo-vendor/wasmtime-types-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-21.0.1/Cargo.toml +55 -0
- data/ext/cargo-vendor/wasmtime-types-21.0.1/src/error.rs +81 -0
- data/ext/cargo-vendor/wasmtime-types-21.0.1/src/lib.rs +1572 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/Cargo.toml +200 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/bindings.rs +280 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ctx.rs +667 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/filesystem.rs +446 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/lib.rs +426 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview0.rs +877 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview1.rs +2660 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/api.rs +198 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/async_.rs +397 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/main.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/preview1.rs +251 -0
- data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/sync.rs +331 -0
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/Cargo.toml +81 -0
- data/ext/cargo-vendor/wasmtime-winch-21.0.1/src/compiler.rs +261 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/lib.rs +2541 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/rust.rs +421 -0
- data/ext/cargo-vendor/wiggle-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-21.0.1/Cargo.toml +123 -0
- data/ext/cargo-vendor/wiggle-generate-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-21.0.1/Cargo.toml +66 -0
- data/ext/cargo-vendor/wiggle-macro-21.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-21.0.1/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/Cargo.toml +76 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/context.rs +534 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/env.rs +440 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/mod.rs +882 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/abi.rs +291 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/address.rs +143 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/asm.rs +380 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/masm.rs +566 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/mod.rs +158 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/regs.rs +161 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/reg.rs +73 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/asm.rs +1423 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/masm.rs +1120 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/masm.rs +941 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/regalloc.rs +65 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/regset.rs +194 -0
- data/ext/cargo-vendor/winch-codegen-0.19.1/src/visitor.rs +2144 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/Cargo.toml +109 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/src/ast/resolve.rs +1442 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/src/decoding.rs +1764 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/src/lib.rs +777 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/src/live.rs +126 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/src/resolve.rs +2337 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-return-borrow.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow3.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow4.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow5.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8/deps/baz.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8/foo.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit +24 -0
- data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit.json +231 -0
- data/ext/src/lib.rs +1 -0
- data/ext/src/ruby_api/config.rs +1 -12
- data/ext/src/ruby_api/engine.rs +3 -6
- data/ext/src/ruby_api/store.rs +68 -5
- data/lib/wasmtime/version.rb +1 -1
- metadata +1601 -1408
- data/ext/cargo-vendor/bincode-1.3.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/bincode-1.3.3/Cargo.toml +0 -37
- data/ext/cargo-vendor/bincode-1.3.3/LICENSE.md +0 -21
- data/ext/cargo-vendor/bincode-1.3.3/readme.md +0 -112
- data/ext/cargo-vendor/bincode-1.3.3/src/byteorder.rs +0 -385
- data/ext/cargo-vendor/bincode-1.3.3/src/config/endian.rs +0 -27
- data/ext/cargo-vendor/bincode-1.3.3/src/config/int.rs +0 -682
- data/ext/cargo-vendor/bincode-1.3.3/src/config/legacy.rs +0 -253
- data/ext/cargo-vendor/bincode-1.3.3/src/config/limit.rs +0 -49
- data/ext/cargo-vendor/bincode-1.3.3/src/config/mod.rs +0 -408
- data/ext/cargo-vendor/bincode-1.3.3/src/config/trailing.rs +0 -37
- data/ext/cargo-vendor/bincode-1.3.3/src/de/mod.rs +0 -515
- data/ext/cargo-vendor/bincode-1.3.3/src/de/read.rs +0 -202
- data/ext/cargo-vendor/bincode-1.3.3/src/error.rs +0 -115
- data/ext/cargo-vendor/bincode-1.3.3/src/internal.rs +0 -124
- data/ext/cargo-vendor/bincode-1.3.3/src/lib.rs +0 -201
- data/ext/cargo-vendor/bincode-1.3.3/src/ser/mod.rs +0 -772
- data/ext/cargo-vendor/bincode-1.3.3/tests/test.rs +0 -899
- data/ext/cargo-vendor/cranelift-bforest-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.107.2/Cargo.toml +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/Cargo.toml +0 -178
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/build.rs +0 -396
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/alias_analysis.rs +0 -403
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/context.rs +0 -386
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ctxhash.rs +0 -167
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph/elaborate.rs +0 -835
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph.rs +0 -838
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/fx.rs +0 -105
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/incremental_cache.rs +0 -256
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/instructions.rs +0 -1019
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/abi.rs +0 -1707
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/args.rs +0 -779
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit.rs +0 -3932
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit_tests.rs +0 -7919
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/imms.rs +0 -1218
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/mod.rs +0 -3083
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/regs.rs +0 -292
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst.isle +0 -4218
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower/isle.rs +0 -884
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/pcc.rs +0 -565
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/mod.rs +0 -432
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/abi.rs +0 -1109
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/args.rs +0 -1968
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit.rs +0 -3466
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit_tests.rs +0 -2146
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/mod.rs +0 -2041
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/regs.rs +0 -175
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/vector.rs +0 -1162
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst.isle +0 -2944
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower/isle.rs +0 -625
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower.isle +0 -2872
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/abi.rs +0 -1047
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/args.rs +0 -347
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/emit.rs +0 -3646
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/imms.rs +0 -202
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/mod.rs +0 -3423
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/regs.rs +0 -187
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/abi.rs +0 -1369
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/args.rs +0 -2289
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit.rs +0 -4383
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit_tests.rs +0 -5131
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/mod.rs +0 -2798
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/regs.rs +0 -276
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst.isle +0 -5304
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower/isle.rs +0 -1066
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.isle +0 -4809
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.rs +0 -339
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/pcc.rs +0 -1003
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/abi.rs +0 -2594
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/blockorder.rs +0 -465
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/isle.rs +0 -914
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/lower.rs +0 -1452
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/mod.rs +0 -555
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/reg.rs +0 -562
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/valueregs.rs +0 -132
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/vcode.rs +0 -1807
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/nan_canonicalization.rs +0 -110
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/arithmetic.isle +0 -179
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/icmp.isle +0 -197
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/remove_constant_phis.rs +0 -420
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/scoped_hash_map.rs +0 -310
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/settings.rs +0 -591
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_inst.rs +0 -1784
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_settings.rs +0 -508
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_types.rs +0 -75
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/isa/riscv64.rs +0 -160
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/isa/x86.rs +0 -402
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/lib.rs +0 -59
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/settings.rs +0 -355
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/srcgen.rs +0 -470
- data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.107.2/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.107.2/Cargo.toml +0 -50
- data/ext/cargo-vendor/cranelift-entity-0.107.2/src/lib.rs +0 -317
- data/ext/cargo-vendor/cranelift-frontend-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.107.2/Cargo.toml +0 -69
- data/ext/cargo-vendor/cranelift-frontend-0.107.2/src/switch.rs +0 -654
- data/ext/cargo-vendor/cranelift-isle-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.107.2/Cargo.toml +0 -46
- data/ext/cargo-vendor/cranelift-isle-0.107.2/src/codegen.rs +0 -886
- data/ext/cargo-vendor/cranelift-isle-0.107.2/src/lib.rs +0 -271
- data/ext/cargo-vendor/cranelift-isle-0.107.2/src/sema.rs +0 -2492
- data/ext/cargo-vendor/cranelift-isle-0.107.2/src/serialize.rs +0 -846
- data/ext/cargo-vendor/cranelift-isle-0.107.2/src/trie_again.rs +0 -683
- data/ext/cargo-vendor/cranelift-native-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.107.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/Cargo.toml +0 -107
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/code_translator.rs +0 -3683
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/dummy.rs +0 -912
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/spec.rs +0 -945
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/sections_translator.rs +0 -409
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/Cargo.toml +0 -48
- data/ext/cargo-vendor/rb-sys-0.9.97/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-0.9.97/Cargo.toml +0 -54
- data/ext/cargo-vendor/rb-sys-0.9.97/build/main.rs +0 -238
- data/ext/cargo-vendor/rb-sys-0.9.97/build/stable_api_config.rs +0 -133
- data/ext/cargo-vendor/rb-sys-0.9.97/src/bindings.rs +0 -20
- data/ext/cargo-vendor/rb-sys-0.9.97/src/tracking_allocator.rs +0 -265
- data/ext/cargo-vendor/rb-sys-build-0.9.97/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-build-0.9.97/Cargo.toml +0 -62
- data/ext/cargo-vendor/rb-sys-build-0.9.97/src/bindings/stable_api.rs +0 -202
- data/ext/cargo-vendor/rb-sys-build-0.9.97/src/bindings.rs +0 -250
- data/ext/cargo-vendor/rb-sys-build-0.9.97/src/cc.rs +0 -365
- data/ext/cargo-vendor/rb-sys-build-0.9.97/src/utils.rs +0 -52
- data/ext/cargo-vendor/wasi-common-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-20.0.2/Cargo.toml +0 -220
- data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/async_.rs +0 -293
- data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/main.rs +0 -21
- data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/sync.rs +0 -279
- data/ext/cargo-vendor/wasm-encoder-0.202.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.202.0/Cargo.toml +0 -43
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/code.rs +0 -3444
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/data.rs +0 -185
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/elements.rs +0 -220
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/globals.rs +0 -101
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/imports.rs +0 -156
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/memories.rs +0 -111
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/tables.rs +0 -116
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/types.rs +0 -673
- data/ext/cargo-vendor/wasmparser-0.202.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.lock +0 -744
- data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.toml +0 -66
- data/ext/cargo-vendor/wasmparser-0.202.0/src/binary_reader.rs +0 -1849
- data/ext/cargo-vendor/wasmparser-0.202.0/src/lib.rs +0 -766
- data/ext/cargo-vendor/wasmparser-0.202.0/src/limits.rs +0 -64
- data/ext/cargo-vendor/wasmparser-0.202.0/src/parser.rs +0 -1611
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/canonicals.rs +0 -120
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/instances.rs +0 -163
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/names.rs +0 -102
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/start.rs +0 -30
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/types.rs +0 -549
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/code.rs +0 -146
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/coredumps.rs +0 -243
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/custom.rs +0 -63
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/data.rs +0 -96
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/dylink0.rs +0 -109
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/elements.rs +0 -152
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/globals.rs +0 -49
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/linking.rs +0 -449
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/memories.rs +0 -56
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/names.rs +0 -156
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/operators.rs +0 -411
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/tables.rs +0 -87
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/types/matches.rs +0 -277
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/types.rs +0 -1680
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core.rs +0 -41
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers.rs +0 -316
- data/ext/cargo-vendor/wasmparser-0.202.0/src/resources.rs +0 -235
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/component.rs +0 -3238
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/core/canonical.rs +0 -233
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/core.rs +0 -1400
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/func.rs +0 -338
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/names.rs +0 -929
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/operators.rs +0 -4076
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/types.rs +0 -4449
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator.rs +0 -1619
- data/ext/cargo-vendor/wasmprinter-0.202.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.202.0/Cargo.toml +0 -45
- data/ext/cargo-vendor/wasmprinter-0.202.0/src/lib.rs +0 -3202
- data/ext/cargo-vendor/wasmprinter-0.202.0/src/operator.rs +0 -1131
- data/ext/cargo-vendor/wasmprinter-0.202.0/tests/all.rs +0 -279
- data/ext/cargo-vendor/wasmtime-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-20.0.2/Cargo.toml +0 -268
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/code_builder.rs +0 -201
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/runtime.rs +0 -175
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile.rs +0 -897
- data/ext/cargo-vendor/wasmtime-20.0.2/src/config.rs +0 -2695
- data/ext/cargo-vendor/wasmtime-20.0.2/src/engine/serialization.rs +0 -849
- data/ext/cargo-vendor/wasmtime-20.0.2/src/engine.rs +0 -741
- data/ext/cargo-vendor/wasmtime-20.0.2/src/lib.rs +0 -303
- data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/jitdump.rs +0 -66
- data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/perfmap.rs +0 -47
- data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/vtune.rs +0 -80
- data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent.rs +0 -105
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code.rs +0 -102
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code_memory.rs +0 -335
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/component.rs +0 -661
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/host.rs +0 -439
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/options.rs +0 -554
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/typed.rs +0 -2484
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func.rs +0 -747
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/instance.rs +0 -804
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/linker.rs +0 -786
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/matching.rs +0 -217
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/mod.rs +0 -756
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resource_table.rs +0 -350
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resources.rs +0 -1133
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/store.rs +0 -28
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/types.rs +0 -892
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/values.rs +0 -978
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/coredump.rs +0 -336
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/debug.rs +0 -165
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/global.rs +0 -300
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/table.rs +0 -480
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals.rs +0 -236
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func/typed.rs +0 -898
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func.rs +0 -2633
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/anyref.rs +0 -46
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/externref.rs +0 -50
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/rooting.rs +0 -222
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/anyref.rs +0 -472
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/externref.rs +0 -644
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/i31.rs +0 -345
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/rooting.rs +0 -1543
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc.rs +0 -87
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instance.rs +0 -992
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instantiate.rs +0 -345
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/limits.rs +0 -398
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/linker.rs +0 -1521
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/memory.rs +0 -999
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module/registry.rs +0 -354
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module.rs +0 -1295
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/profiling.rs +0 -224
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/resources.rs +0 -33
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/signatures.rs +0 -216
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/stack.rs +0 -73
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/context.rs +0 -243
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/data.rs +0 -289
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/func_refs.rs +0 -85
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store.rs +0 -2796
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/func.rs +0 -138
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/global.rs +0 -68
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/memory.rs +0 -286
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/table.rs +0 -34
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline.rs +0 -77
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trap.rs +0 -641
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/type_registry.rs +0 -632
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types/matching.rs +0 -367
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types.rs +0 -1378
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/unix.rs +0 -39
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/v128.rs +0 -131
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/values.rs +0 -945
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/windows.rs +0 -34
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime.rs +0 -112
- data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/src/lib.rs +0 -81
- data/ext/cargo-vendor/wasmtime-cache-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-20.0.2/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-cache-20.0.2/src/lib.rs +0 -235
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/bindgen.rs +0 -390
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/component.rs +0 -1295
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen.rs +0 -342
- data/ext/cargo-vendor/wasmtime-component-util-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-20.0.2/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-component-util-20.0.2/src/lib.rs +0 -180
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/Cargo.toml +0 -114
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler/component.rs +0 -962
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler.rs +0 -1369
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/gc.rs +0 -239
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/attr.rs +0 -345
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/expression.rs +0 -1252
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/line_program.rs +0 -282
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/mod.rs +0 -126
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/unit.rs +0 -522
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/utils.rs +0 -187
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/write_debuginfo.rs +0 -187
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug.rs +0 -18
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/func_environ.rs +0 -2672
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/enabled.rs +0 -649
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc.rs +0 -198
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/lib.rs +0 -505
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.lock +0 -782
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.toml +0 -144
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/examples/factc.rs +0 -205
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/address_map.rs +0 -72
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/mod.rs +0 -389
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/module_artifacts.rs +0 -300
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/trap_encoding.rs +0 -69
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/compiler.rs +0 -19
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/dfg.rs +0 -690
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/info.rs +0 -672
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/adapt.rs +0 -459
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate.rs +0 -965
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types/resources.rs +0 -234
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types.rs +0 -1972
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component.rs +0 -103
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/core_types.rs +0 -24
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/signature.rs +0 -135
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/trampoline.rs +0 -3233
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/transcode.rs +0 -89
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/traps.rs +0 -115
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact.rs +0 -711
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/lib.rs +0 -70
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module.rs +0 -780
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_artifacts.rs +0 -145
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_environ.rs +0 -1288
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_types.rs +0 -122
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/scopevec.rs +0 -78
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/stack_map.rs +0 -36
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/trap_encoding.rs +0 -188
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/tunables.rs +0 -158
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/vmoffsets.rs +0 -952
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/build.rs +0 -26
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/lib.rs +0 -328
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/unix.rs +0 -265
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/windows.rs +0 -166
- data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/Cargo.toml +0 -47
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/lib.rs +0 -108
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/libc.rs +0 -149
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/miri.rs +0 -10
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/win.rs +0 -45
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/Cargo.toml +0 -147
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/build.rs +0 -24
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/aarch64.rs +0 -76
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/x86_64.rs +0 -41
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/async_yield.rs +0 -35
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/libcalls.rs +0 -571
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/resources.rs +0 -351
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component.rs +0 -860
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/cow.rs +0 -888
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/debug_builtins.rs +0 -59
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/export.rs +0 -108
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/disabled.rs +0 -23
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/drc.rs +0 -963
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/externref.rs +0 -115
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/free_list.rs +0 -767
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled.rs +0 -18
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_ref.rs +0 -486
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_runtime.rs +0 -503
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/host_data.rs +0 -81
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/i31.rs +0 -86
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc.rs +0 -244
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/imports.rs +0 -27
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/on_demand.rs +0 -217
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/gc_heap_pool.rs +0 -92
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/index_allocator.rs +0 -704
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/memory_pool.rs +0 -996
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/stack_pool.rs +0 -242
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/table_pool.rs +0 -231
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling.rs +0 -699
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator.rs +0 -780
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance.rs +0 -1566
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/lib.rs +0 -289
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/libcalls.rs +0 -777
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/memory.rs +0 -751
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mmap.rs +0 -214
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mmap_vec.rs +0 -201
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/module_id.rs +0 -43
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/enabled.rs +0 -213
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/mod.rs +0 -54
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/pkru.rs +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/sys.rs +0 -113
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/send_sync_ptr.rs +0 -106
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/store_box.rs +0 -35
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/capi.rs +0 -189
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mmap.rs +0 -111
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mod.rs +0 -24
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/traphandlers.rs +0 -55
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/vm.rs +0 -108
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mmap.rs +0 -94
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mod.rs +0 -10
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/traphandlers.rs +0 -47
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/mod.rs +0 -33
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/machports.rs +0 -416
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mmap.rs +0 -151
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mod.rs +0 -21
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/signals.rs +0 -401
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/unwind.rs +0 -149
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/vm.rs +0 -208
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/mmap.rs +0 -216
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/mod.rs +0 -6
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/traphandlers.rs +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/table.rs +0 -851
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/parking_spot.rs +0 -621
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory.rs +0 -230
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory_disabled.rs +0 -100
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/backtrace.rs +0 -265
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_disabled.rs +0 -16
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_enabled.rs +0 -40
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers.rs +0 -785
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext/vm_host_func_context.rs +0 -137
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext.rs +0 -1293
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/Cargo.toml +0 -21
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/src/lib.rs +0 -493
- data/ext/cargo-vendor/wasmtime-types-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-20.0.2/Cargo.toml +0 -36
- data/ext/cargo-vendor/wasmtime-types-20.0.2/src/error.rs +0 -59
- data/ext/cargo-vendor/wasmtime-types-20.0.2/src/lib.rs +0 -832
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/Cargo.toml +0 -194
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/bindings.rs +0 -283
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ctx.rs +0 -659
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/filesystem.rs +0 -433
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/lib.rs +0 -404
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview0.rs +0 -879
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview1.rs +0 -2601
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/api.rs +0 -194
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/async_.rs +0 -397
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/main.rs +0 -91
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/preview1.rs +0 -251
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/sync.rs +0 -333
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/compiler.rs +0 -257
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/Cargo.toml +0 -41
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/lib.rs +0 -2213
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/rust.rs +0 -421
- data/ext/cargo-vendor/wiggle-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-20.0.2/Cargo.toml +0 -122
- data/ext/cargo-vendor/wiggle-generate-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-20.0.2/Cargo.toml +0 -65
- data/ext/cargo-vendor/wiggle-generate-20.0.2/LICENSE +0 -220
- data/ext/cargo-vendor/wiggle-macro-20.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-20.0.2/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-20.0.2/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.18.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.18.2/Cargo.toml +0 -81
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/context.rs +0 -534
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/env.rs +0 -435
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/mod.rs +0 -756
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/abi.rs +0 -291
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/address.rs +0 -144
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/asm.rs +0 -252
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/masm.rs +0 -573
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/mod.rs +0 -154
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/regs.rs +0 -149
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/reg.rs +0 -86
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/asm.rs +0 -1423
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/masm.rs +0 -1256
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/masm.rs +0 -947
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/regset.rs +0 -194
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/visitor.rs +0 -2149
- data/ext/cargo-vendor/wit-parser-0.202.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.202.0/Cargo.toml +0 -101
- data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/resolve.rs +0 -1443
- data/ext/cargo-vendor/wit-parser-0.202.0/src/decoding.rs +0 -1764
- data/ext/cargo-vendor/wit-parser-0.202.0/src/lib.rs +0 -765
- data/ext/cargo-vendor/wit-parser-0.202.0/src/live.rs +0 -111
- data/ext/cargo-vendor/wit-parser-0.202.0/src/resolve.rs +0 -2240
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple-returns-borrow.wit.json +0 -74
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-return-borrow.wit.json +0 -69
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/world-top-level-resources.wit +0 -24
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/world-top-level-resources.wit.json +0 -240
- data/ext/src/ruby_api/config/tracked_memory_creator.rs +0 -82
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/buffer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/bin/release.sh +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/build/features.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/build/version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/readme.md +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/hidden.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/ruby_abi_version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/special_consts.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/compiled.c +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/compiled.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_2_6.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_2_7.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_0.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_1.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_2.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_3.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/symbol.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/value_type.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/bindings/sanitizer.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/bindings/wrapper.h +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/flags.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/library.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/search_path.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmprinter-0.207.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.202.0 → wasmprinter-0.207.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.202.0 → wasmtime-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/proptest-regressions → wasmtime-21.0.1/proptest-regressions/runtime/vm}/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/threads/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-cache-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cranelift-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-environ-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-fiber-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-types-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-20.0.2 → wasmtime-versioned-export-macros-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2 → wasmtime-wasi-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-20.0.2 → wasmtime-wit-bindgen-21.0.1}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-20.0.2 → wasmtime-wit-bindgen-21.0.1}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-20.0.2 → wiggle-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wiggle-generate-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-macro-21.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-20.0.2 → wiggle-macro-21.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/bounds.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast/lex.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/docs.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/serde_.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/sizealign.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/comments.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0/tests/ui → wit-parser-0.207.0/tests/ui/parse-fail}/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0/tests/ui → wit-parser-0.207.0/tests/ui/parse-fail}/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/same-name-import-export.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/same-name-import-export.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/simple-wasm-text.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/simple-wasm-text.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/wasi.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,2239 @@
|
|
1
|
+
use crate::prelude::*;
|
2
|
+
use anyhow::{bail, ensure, Result};
|
3
|
+
use core::fmt::{self, Display};
|
4
|
+
use wasmtime_environ::{
|
5
|
+
EngineOrModuleTypeIndex, EntityType, Global, Memory, ModuleTypes, Table, TypeTrace,
|
6
|
+
VMSharedTypeIndex, WasmArrayType, WasmCompositeType, WasmFieldType, WasmFuncType, WasmHeapType,
|
7
|
+
WasmRefType, WasmStorageType, WasmStructType, WasmSubType, WasmValType,
|
8
|
+
};
|
9
|
+
|
10
|
+
use crate::{type_registry::RegisteredType, Engine};
|
11
|
+
|
12
|
+
pub(crate) mod matching;
|
13
|
+
|
14
|
+
// Type Representations
|
15
|
+
|
16
|
+
// Type attributes
|
17
|
+
|
18
|
+
/// Indicator of whether a global is mutable or not
|
19
|
+
#[derive(Debug, Clone, Copy, Hash, Eq, PartialEq)]
|
20
|
+
pub enum Mutability {
|
21
|
+
/// The global is constant and its value does not change
|
22
|
+
Const,
|
23
|
+
/// The value of the global can change over time
|
24
|
+
Var,
|
25
|
+
}
|
26
|
+
|
27
|
+
// Value Types
|
28
|
+
|
29
|
+
/// A list of all possible value types in WebAssembly.
|
30
|
+
///
|
31
|
+
/// # Subtyping and Equality
|
32
|
+
///
|
33
|
+
/// `ValType` does not implement `Eq`, because reference types have a subtyping
|
34
|
+
/// relationship, and so 99.99% of the time you actually want to check whether
|
35
|
+
/// one type matches (i.e. is a subtype of) another type. You can use the
|
36
|
+
/// [`ValType::matches`] and [`Val::matches_ty`][crate::Val::matches_ty] methods
|
37
|
+
/// to perform these types of checks. If, however, you are in that 0.01%
|
38
|
+
/// scenario where you need to check precise equality between types, you can use
|
39
|
+
/// the [`ValType::eq`] method.
|
40
|
+
#[derive(Clone, Hash)]
|
41
|
+
pub enum ValType {
|
42
|
+
// NB: the ordering of variants here is intended to match the ordering in
|
43
|
+
// `wasmtime_types::WasmType` to help improve codegen when converting.
|
44
|
+
//
|
45
|
+
/// Signed 32 bit integer.
|
46
|
+
I32,
|
47
|
+
/// Signed 64 bit integer.
|
48
|
+
I64,
|
49
|
+
/// Floating point 32 bit integer.
|
50
|
+
F32,
|
51
|
+
/// Floating point 64 bit integer.
|
52
|
+
F64,
|
53
|
+
/// A 128 bit number.
|
54
|
+
V128,
|
55
|
+
/// An opaque reference to some type on the heap.
|
56
|
+
Ref(RefType),
|
57
|
+
}
|
58
|
+
|
59
|
+
impl fmt::Debug for ValType {
|
60
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
61
|
+
fmt::Display::fmt(self, f)
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
impl Display for ValType {
|
66
|
+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
67
|
+
match self {
|
68
|
+
ValType::I32 => write!(f, "i32"),
|
69
|
+
ValType::I64 => write!(f, "i64"),
|
70
|
+
ValType::F32 => write!(f, "f32"),
|
71
|
+
ValType::F64 => write!(f, "f64"),
|
72
|
+
ValType::V128 => write!(f, "v128"),
|
73
|
+
ValType::Ref(r) => Display::fmt(r, f),
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
impl From<RefType> for ValType {
|
79
|
+
#[inline]
|
80
|
+
fn from(r: RefType) -> Self {
|
81
|
+
ValType::Ref(r)
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
impl ValType {
|
86
|
+
/// The `externref` type, aka `(ref null extern)`.
|
87
|
+
pub const EXTERNREF: Self = ValType::Ref(RefType::EXTERNREF);
|
88
|
+
|
89
|
+
/// The `funcref` type, aka `(ref null func)`.
|
90
|
+
pub const FUNCREF: Self = ValType::Ref(RefType::FUNCREF);
|
91
|
+
|
92
|
+
/// The `nullfuncref` type, aka `(ref null nofunc)`.
|
93
|
+
pub const NULLFUNCREF: Self = ValType::Ref(RefType::NULLFUNCREF);
|
94
|
+
|
95
|
+
/// The `anyref` type, aka `(ref null any)`.
|
96
|
+
pub const ANYREF: Self = ValType::Ref(RefType::ANYREF);
|
97
|
+
|
98
|
+
/// The `i31ref` type, aka `(ref null i31)`.
|
99
|
+
pub const I31REF: Self = ValType::Ref(RefType::I31REF);
|
100
|
+
|
101
|
+
/// The `nullref` type, aka `(ref null none)`.
|
102
|
+
pub const NULLREF: Self = ValType::Ref(RefType::NULLREF);
|
103
|
+
|
104
|
+
/// Returns true if `ValType` matches any of the numeric types. (e.g. `I32`,
|
105
|
+
/// `I64`, `F32`, `F64`).
|
106
|
+
#[inline]
|
107
|
+
pub fn is_num(&self) -> bool {
|
108
|
+
match self {
|
109
|
+
ValType::I32 | ValType::I64 | ValType::F32 | ValType::F64 => true,
|
110
|
+
_ => false,
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
/// Is this the `i32` type?
|
115
|
+
#[inline]
|
116
|
+
pub fn is_i32(&self) -> bool {
|
117
|
+
matches!(self, ValType::I32)
|
118
|
+
}
|
119
|
+
|
120
|
+
/// Is this the `i64` type?
|
121
|
+
#[inline]
|
122
|
+
pub fn is_i64(&self) -> bool {
|
123
|
+
matches!(self, ValType::I64)
|
124
|
+
}
|
125
|
+
|
126
|
+
/// Is this the `f32` type?
|
127
|
+
#[inline]
|
128
|
+
pub fn is_f32(&self) -> bool {
|
129
|
+
matches!(self, ValType::F32)
|
130
|
+
}
|
131
|
+
|
132
|
+
/// Is this the `f64` type?
|
133
|
+
#[inline]
|
134
|
+
pub fn is_f64(&self) -> bool {
|
135
|
+
matches!(self, ValType::F64)
|
136
|
+
}
|
137
|
+
|
138
|
+
/// Is this the `v128` type?
|
139
|
+
#[inline]
|
140
|
+
pub fn is_v128(&self) -> bool {
|
141
|
+
matches!(self, ValType::V128)
|
142
|
+
}
|
143
|
+
|
144
|
+
/// Returns true if `ValType` is any kind of reference type.
|
145
|
+
#[inline]
|
146
|
+
pub fn is_ref(&self) -> bool {
|
147
|
+
matches!(self, ValType::Ref(_))
|
148
|
+
}
|
149
|
+
|
150
|
+
/// Is this the `funcref` (aka `(ref null func)`) type?
|
151
|
+
#[inline]
|
152
|
+
pub fn is_funcref(&self) -> bool {
|
153
|
+
matches!(
|
154
|
+
self,
|
155
|
+
ValType::Ref(RefType {
|
156
|
+
is_nullable: true,
|
157
|
+
heap_type: HeapType::Func
|
158
|
+
})
|
159
|
+
)
|
160
|
+
}
|
161
|
+
|
162
|
+
/// Is this the `externref` (aka `(ref null extern)`) type?
|
163
|
+
#[inline]
|
164
|
+
pub fn is_externref(&self) -> bool {
|
165
|
+
matches!(
|
166
|
+
self,
|
167
|
+
ValType::Ref(RefType {
|
168
|
+
is_nullable: true,
|
169
|
+
heap_type: HeapType::Extern
|
170
|
+
})
|
171
|
+
)
|
172
|
+
}
|
173
|
+
|
174
|
+
/// Is this the `anyref` (aka `(ref null any)`) type?
|
175
|
+
#[inline]
|
176
|
+
pub fn is_anyref(&self) -> bool {
|
177
|
+
matches!(
|
178
|
+
self,
|
179
|
+
ValType::Ref(RefType {
|
180
|
+
is_nullable: true,
|
181
|
+
heap_type: HeapType::Any
|
182
|
+
})
|
183
|
+
)
|
184
|
+
}
|
185
|
+
|
186
|
+
/// Get the underlying reference type, if this value type is a reference
|
187
|
+
/// type.
|
188
|
+
#[inline]
|
189
|
+
pub fn as_ref(&self) -> Option<&RefType> {
|
190
|
+
match self {
|
191
|
+
ValType::Ref(r) => Some(r),
|
192
|
+
_ => None,
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
/// Get the underlying reference type, panicking if this value type is not a
|
197
|
+
/// reference type.
|
198
|
+
#[inline]
|
199
|
+
pub fn unwrap_ref(&self) -> &RefType {
|
200
|
+
self.as_ref()
|
201
|
+
.expect("ValType::unwrap_ref on a non-reference type")
|
202
|
+
}
|
203
|
+
|
204
|
+
/// Does this value type match the other type?
|
205
|
+
///
|
206
|
+
/// That is, is this value type a subtype of the other?
|
207
|
+
///
|
208
|
+
/// # Panics
|
209
|
+
///
|
210
|
+
/// Panics if either type is associated with a different engine from the
|
211
|
+
/// other.
|
212
|
+
pub fn matches(&self, other: &ValType) -> bool {
|
213
|
+
match (self, other) {
|
214
|
+
(Self::I32, Self::I32) => true,
|
215
|
+
(Self::I64, Self::I64) => true,
|
216
|
+
(Self::F32, Self::F32) => true,
|
217
|
+
(Self::F64, Self::F64) => true,
|
218
|
+
(Self::V128, Self::V128) => true,
|
219
|
+
(Self::Ref(a), Self::Ref(b)) => a.matches(b),
|
220
|
+
(Self::I32, _)
|
221
|
+
| (Self::I64, _)
|
222
|
+
| (Self::F32, _)
|
223
|
+
| (Self::F64, _)
|
224
|
+
| (Self::V128, _)
|
225
|
+
| (Self::Ref(_), _) => false,
|
226
|
+
}
|
227
|
+
}
|
228
|
+
|
229
|
+
/// Is value type `a` precisely equal to value type `b`?
|
230
|
+
///
|
231
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
232
|
+
/// are not exactly the same value type.
|
233
|
+
///
|
234
|
+
/// # Panics
|
235
|
+
///
|
236
|
+
/// Panics if either type is associated with a different engine.
|
237
|
+
pub fn eq(a: &Self, b: &Self) -> bool {
|
238
|
+
a.matches(b) && b.matches(a)
|
239
|
+
}
|
240
|
+
|
241
|
+
pub(crate) fn ensure_matches(&self, engine: &Engine, other: &ValType) -> Result<()> {
|
242
|
+
if !self.comes_from_same_engine(engine) || !other.comes_from_same_engine(engine) {
|
243
|
+
bail!("type used with wrong engine");
|
244
|
+
}
|
245
|
+
if self.matches(other) {
|
246
|
+
Ok(())
|
247
|
+
} else {
|
248
|
+
bail!("type mismatch: expected {other}, found {self}")
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
253
|
+
match self {
|
254
|
+
Self::I32 | Self::I64 | Self::F32 | Self::F64 | Self::V128 => true,
|
255
|
+
Self::Ref(r) => r.comes_from_same_engine(engine),
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
pub(crate) fn to_wasm_type(&self) -> WasmValType {
|
260
|
+
match self {
|
261
|
+
Self::I32 => WasmValType::I32,
|
262
|
+
Self::I64 => WasmValType::I64,
|
263
|
+
Self::F32 => WasmValType::F32,
|
264
|
+
Self::F64 => WasmValType::F64,
|
265
|
+
Self::V128 => WasmValType::V128,
|
266
|
+
Self::Ref(r) => WasmValType::Ref(r.to_wasm_type()),
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
#[inline]
|
271
|
+
pub(crate) fn from_wasm_type(engine: &Engine, ty: &WasmValType) -> Self {
|
272
|
+
match ty {
|
273
|
+
WasmValType::I32 => Self::I32,
|
274
|
+
WasmValType::I64 => Self::I64,
|
275
|
+
WasmValType::F32 => Self::F32,
|
276
|
+
WasmValType::F64 => Self::F64,
|
277
|
+
WasmValType::V128 => Self::V128,
|
278
|
+
WasmValType::Ref(r) => Self::Ref(RefType::from_wasm_type(engine, r)),
|
279
|
+
}
|
280
|
+
}
|
281
|
+
}
|
282
|
+
|
283
|
+
/// Opaque references to data in the Wasm heap or to host data.
|
284
|
+
///
|
285
|
+
/// # Subtyping and Equality
|
286
|
+
///
|
287
|
+
/// `RefType` does not implement `Eq`, because reference types have a subtyping
|
288
|
+
/// relationship, and so 99.99% of the time you actually want to check whether
|
289
|
+
/// one type matches (i.e. is a subtype of) another type. You can use the
|
290
|
+
/// [`RefType::matches`] and [`Ref::matches_ty`][crate::Ref::matches_ty] methods
|
291
|
+
/// to perform these types of checks. If, however, you are in that 0.01%
|
292
|
+
/// scenario where you need to check precise equality between types, you can use
|
293
|
+
/// the [`RefType::eq`] method.
|
294
|
+
#[derive(Clone, Hash)]
|
295
|
+
pub struct RefType {
|
296
|
+
is_nullable: bool,
|
297
|
+
heap_type: HeapType,
|
298
|
+
}
|
299
|
+
|
300
|
+
impl fmt::Debug for RefType {
|
301
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
302
|
+
Display::fmt(self, f)
|
303
|
+
}
|
304
|
+
}
|
305
|
+
|
306
|
+
impl fmt::Display for RefType {
|
307
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
308
|
+
write!(f, "(ref ")?;
|
309
|
+
if self.is_nullable() {
|
310
|
+
write!(f, "null ")?;
|
311
|
+
}
|
312
|
+
write!(f, "{})", self.heap_type())
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
impl RefType {
|
317
|
+
/// The `externref` type, aka `(ref null extern)`.
|
318
|
+
pub const EXTERNREF: Self = RefType {
|
319
|
+
is_nullable: true,
|
320
|
+
heap_type: HeapType::Extern,
|
321
|
+
};
|
322
|
+
|
323
|
+
/// The `funcref` type, aka `(ref null func)`.
|
324
|
+
pub const FUNCREF: Self = RefType {
|
325
|
+
is_nullable: true,
|
326
|
+
heap_type: HeapType::Func,
|
327
|
+
};
|
328
|
+
|
329
|
+
/// The `nullfuncref` type, aka `(ref null nofunc)`.
|
330
|
+
pub const NULLFUNCREF: Self = RefType {
|
331
|
+
is_nullable: true,
|
332
|
+
heap_type: HeapType::NoFunc,
|
333
|
+
};
|
334
|
+
|
335
|
+
/// The `anyref` type, aka `(ref null any)`.
|
336
|
+
pub const ANYREF: Self = RefType {
|
337
|
+
is_nullable: true,
|
338
|
+
heap_type: HeapType::Any,
|
339
|
+
};
|
340
|
+
|
341
|
+
/// The `i31ref` type, aka `(ref null i31)`.
|
342
|
+
pub const I31REF: Self = RefType {
|
343
|
+
is_nullable: true,
|
344
|
+
heap_type: HeapType::I31,
|
345
|
+
};
|
346
|
+
|
347
|
+
/// The `nullref` type, aka `(ref null none)`.
|
348
|
+
pub const NULLREF: Self = RefType {
|
349
|
+
is_nullable: true,
|
350
|
+
heap_type: HeapType::None,
|
351
|
+
};
|
352
|
+
|
353
|
+
/// Construct a new reference type.
|
354
|
+
pub fn new(is_nullable: bool, heap_type: HeapType) -> RefType {
|
355
|
+
RefType {
|
356
|
+
is_nullable,
|
357
|
+
heap_type,
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
/// Can this type of reference be null?
|
362
|
+
pub fn is_nullable(&self) -> bool {
|
363
|
+
self.is_nullable
|
364
|
+
}
|
365
|
+
|
366
|
+
/// The heap type that this is a reference to.
|
367
|
+
#[inline]
|
368
|
+
pub fn heap_type(&self) -> &HeapType {
|
369
|
+
&self.heap_type
|
370
|
+
}
|
371
|
+
|
372
|
+
/// Does this reference type match the other?
|
373
|
+
///
|
374
|
+
/// That is, is this reference type a subtype of the other?
|
375
|
+
///
|
376
|
+
/// # Panics
|
377
|
+
///
|
378
|
+
/// Panics if either type is associated with a different engine from the
|
379
|
+
/// other.
|
380
|
+
pub fn matches(&self, other: &RefType) -> bool {
|
381
|
+
if self.is_nullable() && !other.is_nullable() {
|
382
|
+
return false;
|
383
|
+
}
|
384
|
+
self.heap_type().matches(other.heap_type())
|
385
|
+
}
|
386
|
+
|
387
|
+
/// Is reference type `a` precisely equal to reference type `b`?
|
388
|
+
///
|
389
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
390
|
+
/// are not exactly the same reference type.
|
391
|
+
///
|
392
|
+
/// # Panics
|
393
|
+
///
|
394
|
+
/// Panics if either type is associated with a different engine.
|
395
|
+
pub fn eq(a: &RefType, b: &RefType) -> bool {
|
396
|
+
a.matches(b) && b.matches(a)
|
397
|
+
}
|
398
|
+
|
399
|
+
pub(crate) fn ensure_matches(&self, engine: &Engine, other: &RefType) -> Result<()> {
|
400
|
+
if !self.comes_from_same_engine(engine) || !other.comes_from_same_engine(engine) {
|
401
|
+
bail!("type used with wrong engine");
|
402
|
+
}
|
403
|
+
if self.matches(other) {
|
404
|
+
Ok(())
|
405
|
+
} else {
|
406
|
+
bail!("type mismatch: expected {other}, found {self}")
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
411
|
+
self.heap_type().comes_from_same_engine(engine)
|
412
|
+
}
|
413
|
+
|
414
|
+
pub(crate) fn to_wasm_type(&self) -> WasmRefType {
|
415
|
+
WasmRefType {
|
416
|
+
nullable: self.is_nullable(),
|
417
|
+
heap_type: self.heap_type().to_wasm_type(),
|
418
|
+
}
|
419
|
+
}
|
420
|
+
|
421
|
+
pub(crate) fn from_wasm_type(engine: &Engine, ty: &WasmRefType) -> RefType {
|
422
|
+
RefType {
|
423
|
+
is_nullable: ty.nullable,
|
424
|
+
heap_type: HeapType::from_wasm_type(engine, &ty.heap_type),
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
pub(crate) fn is_gc_heap_type(&self) -> bool {
|
429
|
+
self.heap_type().is_vmgcref_type_and_points_to_object()
|
430
|
+
}
|
431
|
+
}
|
432
|
+
|
433
|
+
/// The heap types that can Wasm can have references to.
|
434
|
+
///
|
435
|
+
/// # Subtyping Hierarchy
|
436
|
+
///
|
437
|
+
/// Wasm has three different heap type hierarchies:
|
438
|
+
///
|
439
|
+
/// 1. Function types
|
440
|
+
/// 2. External types
|
441
|
+
/// 3. Internal types
|
442
|
+
///
|
443
|
+
/// Each hierarchy has a top type (the common supertype of which everything else
|
444
|
+
/// in its hierarchy is a subtype of) and a bottom type (the common subtype of
|
445
|
+
/// which everything else in its hierarchy is supertype of).
|
446
|
+
///
|
447
|
+
/// ## Function Types Hierarchy
|
448
|
+
///
|
449
|
+
/// The top of the function types hierarchy is `func`; the bottom is
|
450
|
+
/// `nofunc`. In between are all the concrete function types.
|
451
|
+
///
|
452
|
+
/// ```text
|
453
|
+
/// func
|
454
|
+
/// / / \ \
|
455
|
+
/// ,---------------- / \ -------------------------.
|
456
|
+
/// / / \ \
|
457
|
+
/// | ,---- -----------. |
|
458
|
+
/// | | | |
|
459
|
+
/// | | | |
|
460
|
+
/// (func) (func (param i32)) (func (param i32 i32)) ...
|
461
|
+
/// | | | |
|
462
|
+
/// | | | |
|
463
|
+
/// | `---. ,----------' |
|
464
|
+
/// \ \ / /
|
465
|
+
/// `---------------. \ / ,------------------------'
|
466
|
+
/// \ \ / /
|
467
|
+
/// nofunc
|
468
|
+
/// ```
|
469
|
+
///
|
470
|
+
/// Additionally, some concrete function types are sub- or supertypes of other
|
471
|
+
/// concrete function types. For simplicity, this isn't depicted in the diagram
|
472
|
+
/// above. Specifically, this is based on their parameter and result types, and
|
473
|
+
/// whether those types are in a subtyping relationship:
|
474
|
+
///
|
475
|
+
/// * Parameters are contravariant: `(func (param $a) (result $c))` is a subtype
|
476
|
+
/// of `(func (param $b) (result $c))` when `$b` is a subtype of `$a`.
|
477
|
+
///
|
478
|
+
/// For example, we can substitute `(func (param $cat))` with `(func (param
|
479
|
+
/// $animal))` because `$cat` is a subtype of `$animal` and so the new
|
480
|
+
/// function is still prepared to accept all `$cat` arguments that any caller
|
481
|
+
/// might pass in.
|
482
|
+
///
|
483
|
+
/// We can't do the opposite and replace `(func (param $animal))` with `(func
|
484
|
+
/// (param $cat))`. What would the new function do when given a `$dog`? It is
|
485
|
+
/// invalid.
|
486
|
+
///
|
487
|
+
/// * Results are covariant: `(func (result $a))` is a subtype of `(func (result
|
488
|
+
/// $b))` when `$a` is a subtype of `$b`.
|
489
|
+
///
|
490
|
+
/// For example, we can substitute a `(func (result $animal))` with a
|
491
|
+
/// `(func (result $cat))` because callers expect to be returned an
|
492
|
+
/// `$animal` and all `$cat`s are `$animal`s.
|
493
|
+
///
|
494
|
+
/// We cannot do the opposite and substitute a `(func (result $cat))` with a
|
495
|
+
/// `(func (result $animal))`, since callers expect a `$cat` but the new
|
496
|
+
/// function could return a `$dog`.
|
497
|
+
///
|
498
|
+
/// As always, Wikipedia is also helpful:
|
499
|
+
/// https:///en.wikipedia.org/wiki/Covariance_and_contravariance_(computer_science)
|
500
|
+
///
|
501
|
+
/// ## External
|
502
|
+
///
|
503
|
+
/// The top of the external types hierarchy is `extern`; the bottom is
|
504
|
+
/// `noextern`. There are no concrete types in this hierarchy.
|
505
|
+
///
|
506
|
+
/// ```text
|
507
|
+
/// extern
|
508
|
+
/// |
|
509
|
+
/// noextern
|
510
|
+
/// ```
|
511
|
+
///
|
512
|
+
/// ## Internal
|
513
|
+
///
|
514
|
+
/// The top of the internal types hierarchy is `any`; the bottom is `none`. The
|
515
|
+
/// `eq` type is the common supertype of all types that can be compared for
|
516
|
+
/// equality. The `struct` and `array` types are the common supertypes of all
|
517
|
+
/// concrete struct and array types respectively. The `i31` type represents
|
518
|
+
/// unboxed 31-bit integers.
|
519
|
+
///
|
520
|
+
/// ```text
|
521
|
+
/// any
|
522
|
+
/// / | \
|
523
|
+
/// ,----------------------------' | `--------------------------.
|
524
|
+
/// / | \
|
525
|
+
/// | .--------' |
|
526
|
+
/// | | |
|
527
|
+
/// | struct array
|
528
|
+
/// | / | \ / | \
|
529
|
+
/// i31 ,-----' | '-----. ,-----' | `-----.
|
530
|
+
/// | / | \ / | \
|
531
|
+
/// | | | | | | |
|
532
|
+
/// | (struct) (struct i32) ... (array i32) (array i64) ...
|
533
|
+
/// | | | | | | |
|
534
|
+
/// | \ | / \ | /
|
535
|
+
/// \ `-----. | ,-----' `-----. | ,-----'
|
536
|
+
/// \ \ | / \ | /
|
537
|
+
/// \ \ | / \ | /
|
538
|
+
/// \ \| / \| /
|
539
|
+
/// \ |/ |/
|
540
|
+
/// \ | |
|
541
|
+
/// \ | /
|
542
|
+
/// \ '--------. /
|
543
|
+
/// \ | /
|
544
|
+
/// `--------------------. | ,-----------------------'
|
545
|
+
/// \ | /
|
546
|
+
/// none
|
547
|
+
/// ```
|
548
|
+
///
|
549
|
+
/// Additionally, concrete struct and array types can be subtypes of other
|
550
|
+
/// concrete struct and array types respectively. Once again, this is omitted
|
551
|
+
/// from the above diagram for simplicity. Specifically:
|
552
|
+
///
|
553
|
+
/// * Array types are covariant with their element type: `(array $a)` is a
|
554
|
+
/// subtype of `(array $b)` if `$a` is a subtype of `$b`. For example, `(array
|
555
|
+
/// $cat)` is a subtype of `(array $animal)`.
|
556
|
+
///
|
557
|
+
/// * Struct types are covariant with their field types, and subtypes may
|
558
|
+
/// additionally have appended fields that do not appear in the supertype. For
|
559
|
+
/// example, `(struct $cat $dog)` is a subtype of `(struct $animal)`.
|
560
|
+
///
|
561
|
+
/// # Subtyping and Equality
|
562
|
+
///
|
563
|
+
/// `HeapType` does not implement `Eq`, because heap types have a subtyping
|
564
|
+
/// relationship, and so 99.99% of the time you actually want to check whether
|
565
|
+
/// one type matches (i.e. is a subtype of) another type. You can use the
|
566
|
+
/// [`HeapType::matches`] method to perform these types of checks. If, however,
|
567
|
+
/// you are in that 0.01% scenario where you need to check precise equality
|
568
|
+
/// between types, you can use the [`HeapType::eq`] method.
|
569
|
+
#[derive(Debug, Clone, Hash)]
|
570
|
+
pub enum HeapType {
|
571
|
+
/// The abstract `extern` heap type represents external host data.
|
572
|
+
///
|
573
|
+
/// This is the top type for the external type hierarchy, and therefore is
|
574
|
+
/// the common supertype of all external reference types.
|
575
|
+
Extern,
|
576
|
+
|
577
|
+
/// The abstract `noextern` heap type represents the null external
|
578
|
+
/// reference.
|
579
|
+
///
|
580
|
+
/// This is the bottom type for the external type hierarchy, and therefore
|
581
|
+
/// is the common subtype of all external reference types.
|
582
|
+
NoExtern,
|
583
|
+
|
584
|
+
/// The abstract `func` heap type represents a reference to any kind of
|
585
|
+
/// function.
|
586
|
+
///
|
587
|
+
/// This is the top type for the function references type hierarchy, and is
|
588
|
+
/// therefore a supertype of every function reference.
|
589
|
+
Func,
|
590
|
+
|
591
|
+
/// A reference to a function of a specific, concrete type.
|
592
|
+
///
|
593
|
+
/// These are subtypes of `func` and supertypes of `nofunc`.
|
594
|
+
ConcreteFunc(FuncType),
|
595
|
+
|
596
|
+
/// The abstract `nofunc` heap type represents the null function reference.
|
597
|
+
///
|
598
|
+
/// This is the bottom type for the function references type hierarchy, and
|
599
|
+
/// therefore `nofunc` is a subtype of all function reference types.
|
600
|
+
NoFunc,
|
601
|
+
|
602
|
+
/// The abstract `any` heap type represents all internal Wasm data.
|
603
|
+
///
|
604
|
+
/// This is the top type of the internal type hierarchy, and is therefore a
|
605
|
+
/// supertype of all internal types (such as `eq`, `i31`, `struct`s, and
|
606
|
+
/// `array`s).
|
607
|
+
Any,
|
608
|
+
|
609
|
+
/// The abstract `eq` heap type represenets all internal Wasm references
|
610
|
+
/// that can be compared for equality.
|
611
|
+
///
|
612
|
+
/// This is a subtype of `any` and a supertype of `i31`, `array`, `struct`,
|
613
|
+
/// and `none` heap types.
|
614
|
+
Eq,
|
615
|
+
|
616
|
+
/// The `i31` heap type represents unboxed 31-bit integers.
|
617
|
+
///
|
618
|
+
/// This is a subtype of `any` and `eq`, and a supertype of `none`.
|
619
|
+
I31,
|
620
|
+
|
621
|
+
/// The abstract `array` heap type represents a reference to any kind of
|
622
|
+
/// array.
|
623
|
+
///
|
624
|
+
/// This is a subtype of `any` and `eq`, and a supertype of all concrete
|
625
|
+
/// array types, as well as a supertype of the abstract `none` heap type.
|
626
|
+
Array,
|
627
|
+
|
628
|
+
/// A reference to an array of a specific, concrete type.
|
629
|
+
///
|
630
|
+
/// These are subtypes of the `array` heap type (therefore also a subtype of
|
631
|
+
/// `any` and `eq`) and supertypes of the `none` heap type.
|
632
|
+
ConcreteArray(ArrayType),
|
633
|
+
|
634
|
+
/// The abstract `struct` heap type represents a reference to any kind of
|
635
|
+
/// struct.
|
636
|
+
///
|
637
|
+
/// This is a subtype of `any` and `eq`, and a supertype of all concrete
|
638
|
+
/// struct types, as well as a supertype of the abstract `none` heap type.
|
639
|
+
Struct,
|
640
|
+
|
641
|
+
/// A reference to an struct of a specific, concrete type.
|
642
|
+
///
|
643
|
+
/// These are subtypes of the `struct` heap type (therefore also a subtype
|
644
|
+
/// of `any` and `eq`) and supertypes of the `none` heap type.
|
645
|
+
ConcreteStruct(StructType),
|
646
|
+
|
647
|
+
/// The abstract `none` heap type represents the null internal reference.
|
648
|
+
///
|
649
|
+
/// This is the bottom type for the internal type hierarchy, and therefore
|
650
|
+
/// `none` is a subtype of internal types.
|
651
|
+
None,
|
652
|
+
}
|
653
|
+
|
654
|
+
impl Display for HeapType {
|
655
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
656
|
+
match self {
|
657
|
+
HeapType::Extern => write!(f, "extern"),
|
658
|
+
HeapType::NoExtern => write!(f, "noextern"),
|
659
|
+
HeapType::Func => write!(f, "func"),
|
660
|
+
HeapType::NoFunc => write!(f, "nofunc"),
|
661
|
+
HeapType::Any => write!(f, "any"),
|
662
|
+
HeapType::Eq => write!(f, "eq"),
|
663
|
+
HeapType::I31 => write!(f, "i31"),
|
664
|
+
HeapType::Array => write!(f, "array"),
|
665
|
+
HeapType::Struct => write!(f, "struct"),
|
666
|
+
HeapType::None => write!(f, "none"),
|
667
|
+
HeapType::ConcreteFunc(ty) => write!(f, "(concrete func {:?})", ty.type_index()),
|
668
|
+
HeapType::ConcreteArray(ty) => write!(f, "(concrete array {:?})", ty.type_index()),
|
669
|
+
HeapType::ConcreteStruct(ty) => write!(f, "(concrete struct {:?})", ty.type_index()),
|
670
|
+
}
|
671
|
+
}
|
672
|
+
}
|
673
|
+
|
674
|
+
impl From<FuncType> for HeapType {
|
675
|
+
#[inline]
|
676
|
+
fn from(f: FuncType) -> Self {
|
677
|
+
HeapType::ConcreteFunc(f)
|
678
|
+
}
|
679
|
+
}
|
680
|
+
|
681
|
+
impl From<ArrayType> for HeapType {
|
682
|
+
#[inline]
|
683
|
+
fn from(a: ArrayType) -> Self {
|
684
|
+
HeapType::ConcreteArray(a)
|
685
|
+
}
|
686
|
+
}
|
687
|
+
|
688
|
+
impl HeapType {
|
689
|
+
/// Is this the abstract `extern` heap type?
|
690
|
+
pub fn is_extern(&self) -> bool {
|
691
|
+
matches!(self, HeapType::Extern)
|
692
|
+
}
|
693
|
+
|
694
|
+
/// Is this the abstract `func` heap type?
|
695
|
+
pub fn is_func(&self) -> bool {
|
696
|
+
matches!(self, HeapType::Func)
|
697
|
+
}
|
698
|
+
|
699
|
+
/// Is this the abstract `nofunc` heap type?
|
700
|
+
pub fn is_no_func(&self) -> bool {
|
701
|
+
matches!(self, HeapType::NoFunc)
|
702
|
+
}
|
703
|
+
|
704
|
+
/// Is this the abstract `any` heap type?
|
705
|
+
pub fn is_any(&self) -> bool {
|
706
|
+
matches!(self, HeapType::Any)
|
707
|
+
}
|
708
|
+
|
709
|
+
/// Is this the abstract `i31` heap type?
|
710
|
+
pub fn is_i31(&self) -> bool {
|
711
|
+
matches!(self, HeapType::I31)
|
712
|
+
}
|
713
|
+
|
714
|
+
/// Is this the abstract `none` heap type?
|
715
|
+
pub fn is_none(&self) -> bool {
|
716
|
+
matches!(self, HeapType::None)
|
717
|
+
}
|
718
|
+
|
719
|
+
/// Is this an abstract type?
|
720
|
+
///
|
721
|
+
/// Types that are not abstract are concrete, user-defined types.
|
722
|
+
pub fn is_abstract(&self) -> bool {
|
723
|
+
!self.is_concrete()
|
724
|
+
}
|
725
|
+
|
726
|
+
/// Is this a concrete, user-defined heap type?
|
727
|
+
///
|
728
|
+
/// Types that are not concrete, user-defined types are abstract types.
|
729
|
+
#[inline]
|
730
|
+
pub fn is_concrete(&self) -> bool {
|
731
|
+
matches!(self, HeapType::ConcreteFunc(_) | HeapType::ConcreteArray(_))
|
732
|
+
}
|
733
|
+
|
734
|
+
/// Is this a concrete, user-defined function type?
|
735
|
+
pub fn is_concrete_func(&self) -> bool {
|
736
|
+
matches!(self, HeapType::ConcreteFunc(_))
|
737
|
+
}
|
738
|
+
|
739
|
+
/// Get the underlying concrete, user-defined function type, if any.
|
740
|
+
///
|
741
|
+
/// Returns `None` if this is not a concrete function type.
|
742
|
+
pub fn as_concrete_func(&self) -> Option<&FuncType> {
|
743
|
+
match self {
|
744
|
+
HeapType::ConcreteFunc(f) => Some(f),
|
745
|
+
_ => None,
|
746
|
+
}
|
747
|
+
}
|
748
|
+
|
749
|
+
/// Get the underlying concrete, user-defined type, panicking if this is not
|
750
|
+
/// a concrete function type.
|
751
|
+
pub fn unwrap_concrete_func(&self) -> &FuncType {
|
752
|
+
self.as_concrete_func().unwrap()
|
753
|
+
}
|
754
|
+
|
755
|
+
/// Is this a concrete, user-defined array type?
|
756
|
+
pub fn is_concrete_array(&self) -> bool {
|
757
|
+
matches!(self, HeapType::ConcreteArray(_))
|
758
|
+
}
|
759
|
+
|
760
|
+
/// Get the underlying concrete, user-defined array type, if any.
|
761
|
+
///
|
762
|
+
/// Returns `None` for if this is not a concrete array type.
|
763
|
+
pub fn as_concrete_array(&self) -> Option<&ArrayType> {
|
764
|
+
match self {
|
765
|
+
HeapType::ConcreteArray(f) => Some(f),
|
766
|
+
_ => None,
|
767
|
+
}
|
768
|
+
}
|
769
|
+
|
770
|
+
/// Get the underlying concrete, user-defined type, panicking if this is not
|
771
|
+
/// a concrete array type.
|
772
|
+
pub fn unwrap_concrete_array(&self) -> &ArrayType {
|
773
|
+
self.as_concrete_array().unwrap()
|
774
|
+
}
|
775
|
+
|
776
|
+
/// Get the top type of this heap type's type hierarchy.
|
777
|
+
///
|
778
|
+
/// The returned heap type is a supertype of all types in this heap type's
|
779
|
+
/// type hierarchy.
|
780
|
+
#[inline]
|
781
|
+
pub fn top(&self) -> HeapType {
|
782
|
+
match self {
|
783
|
+
HeapType::Func | HeapType::ConcreteFunc(_) | HeapType::NoFunc => HeapType::Func,
|
784
|
+
|
785
|
+
HeapType::Extern | HeapType::NoExtern => HeapType::Extern,
|
786
|
+
|
787
|
+
HeapType::Any
|
788
|
+
| HeapType::Eq
|
789
|
+
| HeapType::I31
|
790
|
+
| HeapType::Array
|
791
|
+
| HeapType::ConcreteArray(_)
|
792
|
+
| HeapType::Struct
|
793
|
+
| HeapType::ConcreteStruct(_)
|
794
|
+
| HeapType::None => HeapType::Any,
|
795
|
+
}
|
796
|
+
}
|
797
|
+
|
798
|
+
/// Is this the top type within its type hierarchy?
|
799
|
+
#[inline]
|
800
|
+
pub fn is_top(&self) -> bool {
|
801
|
+
match self {
|
802
|
+
HeapType::Any | HeapType::Extern | HeapType::Func => true,
|
803
|
+
_ => false,
|
804
|
+
}
|
805
|
+
}
|
806
|
+
|
807
|
+
/// Get the bottom type of this heap type's type hierarchy.
|
808
|
+
///
|
809
|
+
/// The returned heap type is a subtype of all types in this heap type's
|
810
|
+
/// type hierarchy.
|
811
|
+
#[inline]
|
812
|
+
pub fn bottom(&self) -> HeapType {
|
813
|
+
match self {
|
814
|
+
HeapType::Extern | HeapType::NoExtern => HeapType::NoExtern,
|
815
|
+
|
816
|
+
HeapType::Func | HeapType::ConcreteFunc(_) | HeapType::NoFunc => HeapType::NoFunc,
|
817
|
+
|
818
|
+
HeapType::Any
|
819
|
+
| HeapType::Eq
|
820
|
+
| HeapType::I31
|
821
|
+
| HeapType::Array
|
822
|
+
| HeapType::ConcreteArray(_)
|
823
|
+
| HeapType::Struct
|
824
|
+
| HeapType::ConcreteStruct(_)
|
825
|
+
| HeapType::None => HeapType::None,
|
826
|
+
}
|
827
|
+
}
|
828
|
+
|
829
|
+
/// Is this the bottom type within its type hierarchy?
|
830
|
+
#[inline]
|
831
|
+
pub fn is_bottom(&self) -> bool {
|
832
|
+
match self {
|
833
|
+
HeapType::None | HeapType::NoExtern | HeapType::NoFunc => true,
|
834
|
+
_ => false,
|
835
|
+
}
|
836
|
+
}
|
837
|
+
|
838
|
+
/// Does this heap type match the other heap type?
|
839
|
+
///
|
840
|
+
/// That is, is this heap type a subtype of the other?
|
841
|
+
///
|
842
|
+
/// # Panics
|
843
|
+
///
|
844
|
+
/// Panics if either type is associated with a different engine from the
|
845
|
+
/// other.
|
846
|
+
pub fn matches(&self, other: &HeapType) -> bool {
|
847
|
+
match (self, other) {
|
848
|
+
(HeapType::Extern, HeapType::Extern) => true,
|
849
|
+
(HeapType::Extern, _) => false,
|
850
|
+
|
851
|
+
(HeapType::NoExtern, HeapType::NoExtern | HeapType::Extern) => true,
|
852
|
+
(HeapType::NoExtern, _) => false,
|
853
|
+
|
854
|
+
(HeapType::NoFunc, HeapType::NoFunc | HeapType::ConcreteFunc(_) | HeapType::Func) => {
|
855
|
+
true
|
856
|
+
}
|
857
|
+
(HeapType::NoFunc, _) => false,
|
858
|
+
|
859
|
+
(HeapType::ConcreteFunc(_), HeapType::Func) => true,
|
860
|
+
(HeapType::ConcreteFunc(a), HeapType::ConcreteFunc(b)) => a.matches(b),
|
861
|
+
(HeapType::ConcreteFunc(_), _) => false,
|
862
|
+
|
863
|
+
(HeapType::Func, HeapType::Func) => true,
|
864
|
+
(HeapType::Func, _) => false,
|
865
|
+
|
866
|
+
(
|
867
|
+
HeapType::None,
|
868
|
+
HeapType::None
|
869
|
+
| HeapType::ConcreteArray(_)
|
870
|
+
| HeapType::Array
|
871
|
+
| HeapType::ConcreteStruct(_)
|
872
|
+
| HeapType::Struct
|
873
|
+
| HeapType::I31
|
874
|
+
| HeapType::Eq
|
875
|
+
| HeapType::Any,
|
876
|
+
) => true,
|
877
|
+
(HeapType::None, _) => false,
|
878
|
+
|
879
|
+
(HeapType::ConcreteArray(_), HeapType::Array | HeapType::Eq | HeapType::Any) => true,
|
880
|
+
(HeapType::ConcreteArray(a), HeapType::ConcreteArray(b)) => a.matches(b),
|
881
|
+
(HeapType::ConcreteArray(_), _) => false,
|
882
|
+
|
883
|
+
(HeapType::Array, HeapType::Array | HeapType::Eq | HeapType::Any) => true,
|
884
|
+
(HeapType::Array, _) => false,
|
885
|
+
|
886
|
+
(HeapType::ConcreteStruct(_), HeapType::Struct | HeapType::Eq | HeapType::Any) => true,
|
887
|
+
(HeapType::ConcreteStruct(a), HeapType::ConcreteStruct(b)) => a.matches(b),
|
888
|
+
(HeapType::ConcreteStruct(_), _) => false,
|
889
|
+
|
890
|
+
(HeapType::Struct, HeapType::Struct | HeapType::Eq | HeapType::Any) => true,
|
891
|
+
(HeapType::Struct, _) => false,
|
892
|
+
|
893
|
+
(HeapType::I31, HeapType::I31 | HeapType::Eq | HeapType::Any) => true,
|
894
|
+
(HeapType::I31, _) => false,
|
895
|
+
|
896
|
+
(HeapType::Eq, HeapType::Eq | HeapType::Any) => true,
|
897
|
+
(HeapType::Eq, _) => false,
|
898
|
+
|
899
|
+
(HeapType::Any, HeapType::Any) => true,
|
900
|
+
(HeapType::Any, _) => false,
|
901
|
+
}
|
902
|
+
}
|
903
|
+
|
904
|
+
/// Is heap type `a` precisely equal to heap type `b`?
|
905
|
+
///
|
906
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
907
|
+
/// are not exactly the same heap type.
|
908
|
+
///
|
909
|
+
/// # Panics
|
910
|
+
///
|
911
|
+
/// Panics if either type is associated with a different engine from the
|
912
|
+
/// other.
|
913
|
+
pub fn eq(a: &HeapType, b: &HeapType) -> bool {
|
914
|
+
a.matches(b) && b.matches(a)
|
915
|
+
}
|
916
|
+
|
917
|
+
pub(crate) fn ensure_matches(&self, engine: &Engine, other: &HeapType) -> Result<()> {
|
918
|
+
if !self.comes_from_same_engine(engine) || !other.comes_from_same_engine(engine) {
|
919
|
+
bail!("type used with wrong engine");
|
920
|
+
}
|
921
|
+
if self.matches(other) {
|
922
|
+
Ok(())
|
923
|
+
} else {
|
924
|
+
bail!("type mismatch: expected {other}, found {self}");
|
925
|
+
}
|
926
|
+
}
|
927
|
+
|
928
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
929
|
+
match self {
|
930
|
+
HeapType::Extern
|
931
|
+
| HeapType::NoExtern
|
932
|
+
| HeapType::Func
|
933
|
+
| HeapType::NoFunc
|
934
|
+
| HeapType::Any
|
935
|
+
| HeapType::Eq
|
936
|
+
| HeapType::I31
|
937
|
+
| HeapType::Array
|
938
|
+
| HeapType::Struct
|
939
|
+
| HeapType::None => true,
|
940
|
+
HeapType::ConcreteFunc(ty) => ty.comes_from_same_engine(engine),
|
941
|
+
HeapType::ConcreteArray(ty) => ty.comes_from_same_engine(engine),
|
942
|
+
HeapType::ConcreteStruct(ty) => ty.comes_from_same_engine(engine),
|
943
|
+
}
|
944
|
+
}
|
945
|
+
|
946
|
+
pub(crate) fn to_wasm_type(&self) -> WasmHeapType {
|
947
|
+
match self {
|
948
|
+
HeapType::Extern => WasmHeapType::Extern,
|
949
|
+
HeapType::NoExtern => WasmHeapType::NoExtern,
|
950
|
+
HeapType::Func => WasmHeapType::Func,
|
951
|
+
HeapType::NoFunc => WasmHeapType::NoFunc,
|
952
|
+
HeapType::Any => WasmHeapType::Any,
|
953
|
+
HeapType::Eq => WasmHeapType::Eq,
|
954
|
+
HeapType::I31 => WasmHeapType::I31,
|
955
|
+
HeapType::Array => WasmHeapType::Array,
|
956
|
+
HeapType::Struct => WasmHeapType::Struct,
|
957
|
+
HeapType::None => WasmHeapType::None,
|
958
|
+
HeapType::ConcreteFunc(f) => {
|
959
|
+
WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Engine(f.type_index()))
|
960
|
+
}
|
961
|
+
HeapType::ConcreteArray(a) => {
|
962
|
+
WasmHeapType::ConcreteArray(EngineOrModuleTypeIndex::Engine(a.type_index()))
|
963
|
+
}
|
964
|
+
HeapType::ConcreteStruct(a) => {
|
965
|
+
WasmHeapType::ConcreteStruct(EngineOrModuleTypeIndex::Engine(a.type_index()))
|
966
|
+
}
|
967
|
+
}
|
968
|
+
}
|
969
|
+
|
970
|
+
pub(crate) fn from_wasm_type(engine: &Engine, ty: &WasmHeapType) -> HeapType {
|
971
|
+
match ty {
|
972
|
+
WasmHeapType::Extern => HeapType::Extern,
|
973
|
+
WasmHeapType::NoExtern => HeapType::NoExtern,
|
974
|
+
WasmHeapType::Func => HeapType::Func,
|
975
|
+
WasmHeapType::NoFunc => HeapType::NoFunc,
|
976
|
+
WasmHeapType::Any => HeapType::Any,
|
977
|
+
WasmHeapType::Eq => HeapType::Eq,
|
978
|
+
WasmHeapType::I31 => HeapType::I31,
|
979
|
+
WasmHeapType::Array => HeapType::Array,
|
980
|
+
WasmHeapType::Struct => HeapType::Struct,
|
981
|
+
WasmHeapType::None => HeapType::None,
|
982
|
+
WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Engine(idx)) => {
|
983
|
+
HeapType::ConcreteFunc(FuncType::from_shared_type_index(engine, *idx))
|
984
|
+
}
|
985
|
+
WasmHeapType::ConcreteArray(EngineOrModuleTypeIndex::Engine(idx)) => {
|
986
|
+
HeapType::ConcreteArray(ArrayType::from_shared_type_index(engine, *idx))
|
987
|
+
}
|
988
|
+
WasmHeapType::ConcreteStruct(EngineOrModuleTypeIndex::Engine(idx)) => {
|
989
|
+
HeapType::ConcreteStruct(StructType::from_shared_type_index(engine, *idx))
|
990
|
+
}
|
991
|
+
|
992
|
+
WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::Module(_))
|
993
|
+
| WasmHeapType::ConcreteFunc(EngineOrModuleTypeIndex::RecGroup(_))
|
994
|
+
| WasmHeapType::ConcreteArray(EngineOrModuleTypeIndex::Module(_))
|
995
|
+
| WasmHeapType::ConcreteArray(EngineOrModuleTypeIndex::RecGroup(_))
|
996
|
+
| WasmHeapType::ConcreteStruct(EngineOrModuleTypeIndex::Module(_))
|
997
|
+
| WasmHeapType::ConcreteStruct(EngineOrModuleTypeIndex::RecGroup(_)) => {
|
998
|
+
panic!("HeapType::from_wasm_type on non-canonicalized-for-runtime-usage heap type")
|
999
|
+
}
|
1000
|
+
}
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
pub(crate) fn as_registered_type(&self) -> Option<&RegisteredType> {
|
1004
|
+
match self {
|
1005
|
+
HeapType::ConcreteFunc(f) => Some(&f.registered_type),
|
1006
|
+
HeapType::ConcreteArray(a) => Some(&a.registered_type),
|
1007
|
+
HeapType::ConcreteStruct(a) => Some(&a.registered_type),
|
1008
|
+
|
1009
|
+
HeapType::Extern
|
1010
|
+
| HeapType::NoExtern
|
1011
|
+
| HeapType::Func
|
1012
|
+
| HeapType::NoFunc
|
1013
|
+
| HeapType::Any
|
1014
|
+
| HeapType::Eq
|
1015
|
+
| HeapType::I31
|
1016
|
+
| HeapType::Array
|
1017
|
+
| HeapType::Struct
|
1018
|
+
| HeapType::None => None,
|
1019
|
+
}
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
#[inline]
|
1023
|
+
pub(crate) fn is_vmgcref_type(&self) -> bool {
|
1024
|
+
match self.top() {
|
1025
|
+
Self::Any | Self::Extern => true,
|
1026
|
+
Self::Func => false,
|
1027
|
+
ty => unreachable!("not a top type: {ty:?}"),
|
1028
|
+
}
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
/// Is this a `VMGcRef` type that is not i31 and is not an uninhabited
|
1032
|
+
/// bottom type?
|
1033
|
+
#[inline]
|
1034
|
+
pub(crate) fn is_vmgcref_type_and_points_to_object(&self) -> bool {
|
1035
|
+
self.is_vmgcref_type() && !matches!(self, HeapType::I31 | HeapType::NoFunc | HeapType::None)
|
1036
|
+
}
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
// External Types
|
1040
|
+
|
1041
|
+
/// A list of all possible types which can be externally referenced from a
|
1042
|
+
/// WebAssembly module.
|
1043
|
+
///
|
1044
|
+
/// This list can be found in [`ImportType`] or [`ExportType`], so these types
|
1045
|
+
/// can either be imported or exported.
|
1046
|
+
#[derive(Debug, Clone)]
|
1047
|
+
pub enum ExternType {
|
1048
|
+
/// This external type is the type of a WebAssembly function.
|
1049
|
+
Func(FuncType),
|
1050
|
+
/// This external type is the type of a WebAssembly global.
|
1051
|
+
Global(GlobalType),
|
1052
|
+
/// This external type is the type of a WebAssembly table.
|
1053
|
+
Table(TableType),
|
1054
|
+
/// This external type is the type of a WebAssembly memory.
|
1055
|
+
Memory(MemoryType),
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
macro_rules! extern_type_accessors {
|
1059
|
+
($(($variant:ident($ty:ty) $get:ident $unwrap:ident))*) => ($(
|
1060
|
+
/// Attempt to return the underlying type of this external type,
|
1061
|
+
/// returning `None` if it is a different type.
|
1062
|
+
pub fn $get(&self) -> Option<&$ty> {
|
1063
|
+
if let ExternType::$variant(e) = self {
|
1064
|
+
Some(e)
|
1065
|
+
} else {
|
1066
|
+
None
|
1067
|
+
}
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
/// Returns the underlying descriptor of this [`ExternType`], panicking
|
1071
|
+
/// if it is a different type.
|
1072
|
+
///
|
1073
|
+
/// # Panics
|
1074
|
+
///
|
1075
|
+
/// Panics if `self` is not of the right type.
|
1076
|
+
pub fn $unwrap(&self) -> &$ty {
|
1077
|
+
self.$get().expect(concat!("expected ", stringify!($ty)))
|
1078
|
+
}
|
1079
|
+
)*)
|
1080
|
+
}
|
1081
|
+
|
1082
|
+
impl ExternType {
|
1083
|
+
extern_type_accessors! {
|
1084
|
+
(Func(FuncType) func unwrap_func)
|
1085
|
+
(Global(GlobalType) global unwrap_global)
|
1086
|
+
(Table(TableType) table unwrap_table)
|
1087
|
+
(Memory(MemoryType) memory unwrap_memory)
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
pub(crate) fn from_wasmtime(
|
1091
|
+
engine: &Engine,
|
1092
|
+
types: &ModuleTypes,
|
1093
|
+
ty: &EntityType,
|
1094
|
+
) -> ExternType {
|
1095
|
+
match ty {
|
1096
|
+
EntityType::Function(idx) => match idx {
|
1097
|
+
EngineOrModuleTypeIndex::Engine(e) => {
|
1098
|
+
FuncType::from_shared_type_index(engine, *e).into()
|
1099
|
+
}
|
1100
|
+
EngineOrModuleTypeIndex::Module(m) => {
|
1101
|
+
FuncType::from_wasm_func_type(engine, types[*m].unwrap_func().clone()).into()
|
1102
|
+
}
|
1103
|
+
EngineOrModuleTypeIndex::RecGroup(_) => unreachable!(),
|
1104
|
+
},
|
1105
|
+
EntityType::Global(ty) => GlobalType::from_wasmtime_global(engine, ty).into(),
|
1106
|
+
EntityType::Memory(ty) => MemoryType::from_wasmtime_memory(ty).into(),
|
1107
|
+
EntityType::Table(ty) => TableType::from_wasmtime_table(engine, ty).into(),
|
1108
|
+
EntityType::Tag(_) => unimplemented!("wasm tag support"),
|
1109
|
+
}
|
1110
|
+
}
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
impl From<FuncType> for ExternType {
|
1114
|
+
fn from(ty: FuncType) -> ExternType {
|
1115
|
+
ExternType::Func(ty)
|
1116
|
+
}
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
impl From<GlobalType> for ExternType {
|
1120
|
+
fn from(ty: GlobalType) -> ExternType {
|
1121
|
+
ExternType::Global(ty)
|
1122
|
+
}
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
impl From<MemoryType> for ExternType {
|
1126
|
+
fn from(ty: MemoryType) -> ExternType {
|
1127
|
+
ExternType::Memory(ty)
|
1128
|
+
}
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
impl From<TableType> for ExternType {
|
1132
|
+
fn from(ty: TableType) -> ExternType {
|
1133
|
+
ExternType::Table(ty)
|
1134
|
+
}
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
/// The storage type of a `struct` field or `array` element.
|
1138
|
+
///
|
1139
|
+
/// This is either a packed 8- or -16 bit integer, or else it is some unpacked
|
1140
|
+
/// Wasm value type.
|
1141
|
+
#[derive(Clone, Hash)]
|
1142
|
+
pub enum StorageType {
|
1143
|
+
/// `i8`, an 8-bit integer.
|
1144
|
+
I8,
|
1145
|
+
/// `i16`, a 16-bit integer.
|
1146
|
+
I16,
|
1147
|
+
/// A value type.
|
1148
|
+
ValType(ValType),
|
1149
|
+
}
|
1150
|
+
|
1151
|
+
impl From<ValType> for StorageType {
|
1152
|
+
#[inline]
|
1153
|
+
fn from(v: ValType) -> Self {
|
1154
|
+
StorageType::ValType(v)
|
1155
|
+
}
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
impl StorageType {
|
1159
|
+
/// Is this an `i8`?
|
1160
|
+
#[inline]
|
1161
|
+
pub fn is_i8(&self) -> bool {
|
1162
|
+
matches!(self, Self::I8)
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
/// Is this an `i16`?
|
1166
|
+
#[inline]
|
1167
|
+
pub fn is_i16(&self) -> bool {
|
1168
|
+
matches!(self, Self::I16)
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
/// Is this a Wasm value type?
|
1172
|
+
#[inline]
|
1173
|
+
pub fn is_val_type(&self) -> bool {
|
1174
|
+
matches!(self, Self::I16)
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
/// Get this storage type's underlying value type, if any.
|
1178
|
+
///
|
1179
|
+
/// Returns `None` if this storage type is not a value type.
|
1180
|
+
#[inline]
|
1181
|
+
pub fn as_val_type(&self) -> Option<&ValType> {
|
1182
|
+
match self {
|
1183
|
+
Self::ValType(v) => Some(v),
|
1184
|
+
_ => None,
|
1185
|
+
}
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
/// Get this storage type's underlying value type, panicking if it is not a
|
1189
|
+
/// value type.
|
1190
|
+
pub fn unwrap_val_type(&self) -> &ValType {
|
1191
|
+
self.as_val_type().unwrap()
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
/// Does this field type match the other field type?
|
1195
|
+
///
|
1196
|
+
/// That is, is this field type a subtype of the other field type?
|
1197
|
+
///
|
1198
|
+
/// # Panics
|
1199
|
+
///
|
1200
|
+
/// Panics if either type is associated with a different engine from the
|
1201
|
+
/// other.
|
1202
|
+
pub fn matches(&self, other: &Self) -> bool {
|
1203
|
+
match (self, other) {
|
1204
|
+
(StorageType::I8, StorageType::I8) => true,
|
1205
|
+
(StorageType::I8, _) => false,
|
1206
|
+
(StorageType::I16, StorageType::I16) => true,
|
1207
|
+
(StorageType::I16, _) => false,
|
1208
|
+
(StorageType::ValType(a), StorageType::ValType(b)) => a.matches(b),
|
1209
|
+
(StorageType::ValType(_), _) => false,
|
1210
|
+
}
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
/// Is field type `a` precisely equal to field type `b`?
|
1214
|
+
///
|
1215
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
1216
|
+
/// are not exactly the same field type.
|
1217
|
+
///
|
1218
|
+
/// # Panics
|
1219
|
+
///
|
1220
|
+
/// Panics if either type is associated with a different engine from the
|
1221
|
+
/// other.
|
1222
|
+
pub fn eq(a: &Self, b: &Self) -> bool {
|
1223
|
+
a.matches(b) && b.matches(a)
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
pub(crate) fn from_wasm_storage_type(engine: &Engine, ty: &WasmStorageType) -> Self {
|
1227
|
+
match ty {
|
1228
|
+
WasmStorageType::I8 => Self::I8,
|
1229
|
+
WasmStorageType::I16 => Self::I16,
|
1230
|
+
WasmStorageType::Val(v) => ValType::from_wasm_type(engine, &v).into(),
|
1231
|
+
}
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
pub(crate) fn to_wasm_storage_type(&self) -> WasmStorageType {
|
1235
|
+
match self {
|
1236
|
+
Self::I8 => WasmStorageType::I8,
|
1237
|
+
Self::I16 => WasmStorageType::I16,
|
1238
|
+
Self::ValType(v) => WasmStorageType::Val(v.to_wasm_type()),
|
1239
|
+
}
|
1240
|
+
}
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
/// The type of a `struct` field or an `array`'s elements.
|
1244
|
+
///
|
1245
|
+
/// This is a pair of both the field's storage type and its mutability
|
1246
|
+
/// (i.e. whether the field can be updated or not).
|
1247
|
+
#[derive(Clone, Hash)]
|
1248
|
+
pub struct FieldType {
|
1249
|
+
mutability: Mutability,
|
1250
|
+
element_type: StorageType,
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
impl FieldType {
|
1254
|
+
/// Construct a new field type from the given parts.
|
1255
|
+
#[inline]
|
1256
|
+
pub fn new(mutability: Mutability, element_type: StorageType) -> Self {
|
1257
|
+
Self {
|
1258
|
+
mutability,
|
1259
|
+
element_type,
|
1260
|
+
}
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
/// Get whether or not this field type is mutable.
|
1264
|
+
#[inline]
|
1265
|
+
pub fn mutability(&self) -> Mutability {
|
1266
|
+
self.mutability
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
/// Get this field type's storage type.
|
1270
|
+
#[inline]
|
1271
|
+
pub fn element_type(&self) -> &StorageType {
|
1272
|
+
&self.element_type
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
/// Does this field type match the other field type?
|
1276
|
+
///
|
1277
|
+
/// That is, is this field type a subtype of the other field type?
|
1278
|
+
///
|
1279
|
+
/// # Panics
|
1280
|
+
///
|
1281
|
+
/// Panics if either type is associated with a different engine from the
|
1282
|
+
/// other.
|
1283
|
+
pub fn matches(&self, other: &Self) -> bool {
|
1284
|
+
(other.mutability == Mutability::Var || self.mutability == Mutability::Const)
|
1285
|
+
&& self.element_type.matches(&other.element_type)
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
/// Is field type `a` precisely equal to field type `b`?
|
1289
|
+
///
|
1290
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
1291
|
+
/// are not exactly the same field type.
|
1292
|
+
///
|
1293
|
+
/// # Panics
|
1294
|
+
///
|
1295
|
+
/// Panics if either type is associated with a different engine from the
|
1296
|
+
/// other.
|
1297
|
+
pub fn eq(a: &Self, b: &Self) -> bool {
|
1298
|
+
a.matches(b) && b.matches(a)
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
pub(crate) fn from_wasm_field_type(engine: &Engine, ty: &WasmFieldType) -> Self {
|
1302
|
+
Self {
|
1303
|
+
mutability: if ty.mutable {
|
1304
|
+
Mutability::Var
|
1305
|
+
} else {
|
1306
|
+
Mutability::Const
|
1307
|
+
},
|
1308
|
+
element_type: StorageType::from_wasm_storage_type(engine, &ty.element_type),
|
1309
|
+
}
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
pub(crate) fn to_wasm_field_type(&self) -> WasmFieldType {
|
1313
|
+
WasmFieldType {
|
1314
|
+
element_type: self.element_type.to_wasm_storage_type(),
|
1315
|
+
mutable: matches!(self.mutability, Mutability::Var),
|
1316
|
+
}
|
1317
|
+
}
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
/// The type of a WebAssembly struct.
|
1321
|
+
///
|
1322
|
+
/// WebAssembly structs are a static, fixed-length, ordered sequence of
|
1323
|
+
/// fields. Fields are named by index, not an identifier. Each field is mutable
|
1324
|
+
/// or constant and stores unpacked [`Val`][crate::Val]s or packed 8-/16-bit
|
1325
|
+
/// integers.
|
1326
|
+
///
|
1327
|
+
/// # Subtyping and Equality
|
1328
|
+
///
|
1329
|
+
/// `StructType` does not implement `Eq`, because reference types have a
|
1330
|
+
/// subtyping relationship, and so 99.99% of the time you actually want to check
|
1331
|
+
/// whether one type matches (i.e. is a subtype of) another type. You can use
|
1332
|
+
/// the [`StructType::matches`] method to perform these types of checks. If,
|
1333
|
+
/// however, you are in that 0.01% scenario where you need to check precise
|
1334
|
+
/// equality between types, you can use the [`StructType::eq`] method.
|
1335
|
+
//
|
1336
|
+
// TODO: Once we have array values, update above docs with a reference to the
|
1337
|
+
// future `Array::matches_ty` method
|
1338
|
+
#[derive(Debug, Clone, Hash)]
|
1339
|
+
pub struct StructType {
|
1340
|
+
registered_type: RegisteredType,
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
impl StructType {
|
1344
|
+
/// Construct a new `StructType` with the given field type's mutability and
|
1345
|
+
/// storage type.
|
1346
|
+
///
|
1347
|
+
/// The result will be associated with the given engine, and attempts to use
|
1348
|
+
/// it with other engines will panic (for example, checking whether it is a
|
1349
|
+
/// subtype of another struct type that is associated with a different
|
1350
|
+
/// engine).
|
1351
|
+
///
|
1352
|
+
/// Returns an error if the number of fields exceeds the implementation
|
1353
|
+
/// limit.
|
1354
|
+
pub fn new(engine: &Engine, fields: impl IntoIterator<Item = FieldType>) -> Result<Self> {
|
1355
|
+
// Same as in `FuncType::new`: we must prevent any `RegisteredType`s
|
1356
|
+
// from being reclaimed while constructing this struct type.
|
1357
|
+
let mut registrations = smallvec::SmallVec::<[_; 4]>::new();
|
1358
|
+
|
1359
|
+
let fields = fields
|
1360
|
+
.into_iter()
|
1361
|
+
.map(|ty: FieldType| {
|
1362
|
+
if let Some(r) = ty.element_type.as_val_type().and_then(|v| v.as_ref()) {
|
1363
|
+
if let Some(r) = r.heap_type().as_registered_type() {
|
1364
|
+
registrations.push(r.clone());
|
1365
|
+
}
|
1366
|
+
}
|
1367
|
+
ty.to_wasm_field_type()
|
1368
|
+
})
|
1369
|
+
.collect();
|
1370
|
+
|
1371
|
+
Self::from_wasm_struct_type(engine, WasmStructType { fields })
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
/// Get the engine that this struct type is associated with.
|
1375
|
+
pub fn engine(&self) -> &Engine {
|
1376
|
+
self.registered_type.engine()
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
/// Get the `i`th field type.
|
1380
|
+
///
|
1381
|
+
/// Returns `None` if `i` is out of bounds.
|
1382
|
+
pub fn field(&self, i: usize) -> Option<FieldType> {
|
1383
|
+
let engine = self.engine();
|
1384
|
+
self.as_wasm_struct_type()
|
1385
|
+
.fields
|
1386
|
+
.get(i)
|
1387
|
+
.map(|ty| FieldType::from_wasm_field_type(engine, ty))
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
/// Returns the list of field types for this function.
|
1391
|
+
#[inline]
|
1392
|
+
pub fn fields(&self) -> impl ExactSizeIterator<Item = FieldType> + '_ {
|
1393
|
+
let engine = self.engine();
|
1394
|
+
self.as_wasm_struct_type()
|
1395
|
+
.fields
|
1396
|
+
.iter()
|
1397
|
+
.map(|ty| FieldType::from_wasm_field_type(engine, ty))
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
/// Does this struct type match the other struct type?
|
1401
|
+
///
|
1402
|
+
/// That is, is this function type a subtype of the other struct type?
|
1403
|
+
///
|
1404
|
+
/// # Panics
|
1405
|
+
///
|
1406
|
+
/// Panics if either type is associated with a different engine from the
|
1407
|
+
/// other.
|
1408
|
+
pub fn matches(&self, other: &StructType) -> bool {
|
1409
|
+
assert!(self.comes_from_same_engine(other.engine()));
|
1410
|
+
|
1411
|
+
// Avoid matching on structure for subtyping checks when we have
|
1412
|
+
// precisely the same type.
|
1413
|
+
if self.type_index() == other.type_index() {
|
1414
|
+
return true;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
self.fields().len() >= other.fields().len()
|
1418
|
+
&& self
|
1419
|
+
.fields()
|
1420
|
+
.zip(other.fields())
|
1421
|
+
.all(|(a, b)| a.matches(&b))
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
/// Is struct type `a` precisely equal to struct type `b`?
|
1425
|
+
///
|
1426
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
1427
|
+
/// are not exactly the same struct type.
|
1428
|
+
///
|
1429
|
+
/// # Panics
|
1430
|
+
///
|
1431
|
+
/// Panics if either type is associated with a different engine from the
|
1432
|
+
/// other.
|
1433
|
+
pub fn eq(a: &StructType, b: &StructType) -> bool {
|
1434
|
+
assert!(a.comes_from_same_engine(b.engine()));
|
1435
|
+
a.type_index() == b.type_index()
|
1436
|
+
}
|
1437
|
+
|
1438
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
1439
|
+
Engine::same(self.registered_type.engine(), engine)
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
pub(crate) fn type_index(&self) -> VMSharedTypeIndex {
|
1443
|
+
self.registered_type.index()
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
pub(crate) fn as_wasm_struct_type(&self) -> &WasmStructType {
|
1447
|
+
self.registered_type.unwrap_struct()
|
1448
|
+
}
|
1449
|
+
|
1450
|
+
/// Construct a `StructType` from a `WasmStructType`.
|
1451
|
+
///
|
1452
|
+
/// This method should only be used when something has already registered --
|
1453
|
+
/// and is *keeping registered* -- any other concrete Wasm types referenced
|
1454
|
+
/// by the given `WasmStructType`.
|
1455
|
+
///
|
1456
|
+
/// For example, this method may be called to convert an struct type from
|
1457
|
+
/// within a Wasm module's `ModuleTypes` since the Wasm module itself is
|
1458
|
+
/// holding a strong reference to all of its types, including any `(ref null
|
1459
|
+
/// <index>)` types used as the element type for this struct type.
|
1460
|
+
pub(crate) fn from_wasm_struct_type(engine: &Engine, ty: WasmStructType) -> Result<StructType> {
|
1461
|
+
const MAX_FIELDS: usize = 10_000;
|
1462
|
+
let fields_len = ty.fields.len();
|
1463
|
+
ensure!(
|
1464
|
+
fields_len <= MAX_FIELDS,
|
1465
|
+
"attempted to define a struct type with {fields_len} fields, but \
|
1466
|
+
that is more than the maximum supported number of fields \
|
1467
|
+
({MAX_FIELDS})",
|
1468
|
+
);
|
1469
|
+
|
1470
|
+
let ty = RegisteredType::new(
|
1471
|
+
engine,
|
1472
|
+
WasmSubType {
|
1473
|
+
// TODO:
|
1474
|
+
//
|
1475
|
+
// is_final: true,
|
1476
|
+
// supertype: None,
|
1477
|
+
composite_type: WasmCompositeType::Struct(ty),
|
1478
|
+
},
|
1479
|
+
);
|
1480
|
+
Ok(Self {
|
1481
|
+
registered_type: ty,
|
1482
|
+
})
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
pub(crate) fn from_shared_type_index(engine: &Engine, index: VMSharedTypeIndex) -> StructType {
|
1486
|
+
let ty = RegisteredType::root(engine, index).expect(
|
1487
|
+
"VMSharedTypeIndex is not registered in the Engine! Wrong \
|
1488
|
+
engine? Didn't root the index somewhere?",
|
1489
|
+
);
|
1490
|
+
assert!(ty.is_struct());
|
1491
|
+
Self {
|
1492
|
+
registered_type: ty,
|
1493
|
+
}
|
1494
|
+
}
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
/// The type of a WebAssembly array.
|
1498
|
+
///
|
1499
|
+
/// WebAssembly arrays are dynamically-sized, but not resizable. They contain
|
1500
|
+
/// either unpacked [`Val`][crate::Val]s or packed 8-/16-bit integers.
|
1501
|
+
///
|
1502
|
+
/// # Subtyping and Equality
|
1503
|
+
///
|
1504
|
+
/// `ArrayType` does not implement `Eq`, because reference types have a
|
1505
|
+
/// subtyping relationship, and so 99.99% of the time you actually want to check
|
1506
|
+
/// whether one type matches (i.e. is a subtype of) another type. You can use
|
1507
|
+
/// the [`ArrayType::matches`] method to perform these types of checks. If,
|
1508
|
+
/// however, you are in that 0.01% scenario where you need to check precise
|
1509
|
+
/// equality between types, you can use the [`ArrayType::eq`] method.
|
1510
|
+
//
|
1511
|
+
// TODO: Once we have array values, update above docs with a reference to the
|
1512
|
+
// future `Array::matches_ty` method
|
1513
|
+
#[derive(Debug, Clone, Hash)]
|
1514
|
+
pub struct ArrayType {
|
1515
|
+
registered_type: RegisteredType,
|
1516
|
+
}
|
1517
|
+
|
1518
|
+
impl ArrayType {
|
1519
|
+
/// Construct a new `ArrayType` with the given field type's mutability and
|
1520
|
+
/// storage type.
|
1521
|
+
///
|
1522
|
+
/// The result will be associated with the given engine, and attempts to use
|
1523
|
+
/// it with other engines will panic (for example, checking whether it is a
|
1524
|
+
/// subtype of another array type that is associated with a different
|
1525
|
+
/// engine).
|
1526
|
+
pub fn new(engine: &Engine, field_type: FieldType) -> Self {
|
1527
|
+
// Same as in `FuncType::new`: we must prevent any `RegisteredType` in
|
1528
|
+
// `field_type` from being reclaimed while constructing this array type.
|
1529
|
+
let _registration = field_type
|
1530
|
+
.element_type
|
1531
|
+
.as_val_type()
|
1532
|
+
.and_then(|v| v.as_ref())
|
1533
|
+
.and_then(|r| r.heap_type().as_registered_type());
|
1534
|
+
|
1535
|
+
let wasm_ty = WasmArrayType(field_type.to_wasm_field_type());
|
1536
|
+
Self::from_wasm_array_type(engine, wasm_ty)
|
1537
|
+
}
|
1538
|
+
|
1539
|
+
/// Get the engine that this array type is associated with.
|
1540
|
+
pub fn engine(&self) -> &Engine {
|
1541
|
+
self.registered_type.engine()
|
1542
|
+
}
|
1543
|
+
|
1544
|
+
/// Get this array's underlying field type.
|
1545
|
+
///
|
1546
|
+
/// The field type contains information about both this array type's
|
1547
|
+
/// mutability and the storage type used for its elements.
|
1548
|
+
pub fn field_type(&self) -> FieldType {
|
1549
|
+
FieldType::from_wasm_field_type(self.engine(), &self.as_wasm_array_type().0)
|
1550
|
+
}
|
1551
|
+
|
1552
|
+
/// Get this array type's mutability and whether its instances' elements can
|
1553
|
+
/// be updated or not.
|
1554
|
+
///
|
1555
|
+
/// This is a convenience method providing a short-hand for
|
1556
|
+
/// `my_array_type.field_type().mutability()`.
|
1557
|
+
pub fn mutability(&self) -> Mutability {
|
1558
|
+
if self.as_wasm_array_type().0.mutable {
|
1559
|
+
Mutability::Var
|
1560
|
+
} else {
|
1561
|
+
Mutability::Const
|
1562
|
+
}
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
/// Get the storage type used for this array type's elements.
|
1566
|
+
///
|
1567
|
+
/// This is a convenience method providing a short-hand for
|
1568
|
+
/// `my_array_type.field_type().element_type()`.
|
1569
|
+
pub fn element_type(&self) -> StorageType {
|
1570
|
+
StorageType::from_wasm_storage_type(
|
1571
|
+
self.engine(),
|
1572
|
+
&self.registered_type.unwrap_array().0.element_type,
|
1573
|
+
)
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
/// Does this array type match the other array type?
|
1577
|
+
///
|
1578
|
+
/// That is, is this function type a subtype of the other array type?
|
1579
|
+
///
|
1580
|
+
/// # Panics
|
1581
|
+
///
|
1582
|
+
/// Panics if either type is associated with a different engine from the
|
1583
|
+
/// other.
|
1584
|
+
pub fn matches(&self, other: &ArrayType) -> bool {
|
1585
|
+
assert!(self.comes_from_same_engine(other.engine()));
|
1586
|
+
|
1587
|
+
// Avoid matching on structure for subtyping checks when we have
|
1588
|
+
// precisely the same type.
|
1589
|
+
if self.type_index() == other.type_index() {
|
1590
|
+
return true;
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
self.field_type().matches(&other.field_type())
|
1594
|
+
}
|
1595
|
+
|
1596
|
+
/// Is array type `a` precisely equal to array type `b`?
|
1597
|
+
///
|
1598
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
1599
|
+
/// are not exactly the same array type.
|
1600
|
+
///
|
1601
|
+
/// # Panics
|
1602
|
+
///
|
1603
|
+
/// Panics if either type is associated with a different engine from the
|
1604
|
+
/// other.
|
1605
|
+
pub fn eq(a: &ArrayType, b: &ArrayType) -> bool {
|
1606
|
+
assert!(a.comes_from_same_engine(b.engine()));
|
1607
|
+
a.type_index() == b.type_index()
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
1611
|
+
Engine::same(self.registered_type.engine(), engine)
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
pub(crate) fn type_index(&self) -> VMSharedTypeIndex {
|
1615
|
+
self.registered_type.index()
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
pub(crate) fn as_wasm_array_type(&self) -> &WasmArrayType {
|
1619
|
+
self.registered_type.unwrap_array()
|
1620
|
+
}
|
1621
|
+
|
1622
|
+
/// Construct a `ArrayType` from a `WasmArrayType`.
|
1623
|
+
///
|
1624
|
+
/// This method should only be used when something has already registered --
|
1625
|
+
/// and is *keeping registered* -- any other concrete Wasm types referenced
|
1626
|
+
/// by the given `WasmArrayType`.
|
1627
|
+
///
|
1628
|
+
/// For example, this method may be called to convert an array type from
|
1629
|
+
/// within a Wasm module's `ModuleTypes` since the Wasm module itself is
|
1630
|
+
/// holding a strong reference to all of its types, including any `(ref null
|
1631
|
+
/// <index>)` types used as the element type for this array type.
|
1632
|
+
pub(crate) fn from_wasm_array_type(engine: &Engine, ty: WasmArrayType) -> ArrayType {
|
1633
|
+
let ty = RegisteredType::new(
|
1634
|
+
engine,
|
1635
|
+
WasmSubType {
|
1636
|
+
// TODO:
|
1637
|
+
//
|
1638
|
+
// is_final: true,
|
1639
|
+
// supertype: None,
|
1640
|
+
composite_type: WasmCompositeType::Array(ty),
|
1641
|
+
},
|
1642
|
+
);
|
1643
|
+
Self {
|
1644
|
+
registered_type: ty,
|
1645
|
+
}
|
1646
|
+
}
|
1647
|
+
|
1648
|
+
pub(crate) fn from_shared_type_index(engine: &Engine, index: VMSharedTypeIndex) -> ArrayType {
|
1649
|
+
let ty = RegisteredType::root(engine, index).expect(
|
1650
|
+
"VMSharedTypeIndex is not registered in the Engine! Wrong \
|
1651
|
+
engine? Didn't root the index somewhere?",
|
1652
|
+
);
|
1653
|
+
assert!(ty.is_array());
|
1654
|
+
Self {
|
1655
|
+
registered_type: ty,
|
1656
|
+
}
|
1657
|
+
}
|
1658
|
+
}
|
1659
|
+
|
1660
|
+
/// The type of a WebAssembly function.
|
1661
|
+
///
|
1662
|
+
/// WebAssembly functions can have 0 or more parameters and results.
|
1663
|
+
///
|
1664
|
+
/// # Subtyping and Equality
|
1665
|
+
///
|
1666
|
+
/// `FuncType` does not implement `Eq`, because reference types have a subtyping
|
1667
|
+
/// relationship, and so 99.99% of the time you actually want to check whether
|
1668
|
+
/// one type matches (i.e. is a subtype of) another type. You can use the
|
1669
|
+
/// [`FuncType::matches`] and [`Func::matches_ty`][crate::Func::matches_ty]
|
1670
|
+
/// methods to perform these types of checks. If, however, you are in that 0.01%
|
1671
|
+
/// scenario where you need to check precise equality between types, you can use
|
1672
|
+
/// the [`FuncType::eq`] method.
|
1673
|
+
#[derive(Debug, Clone, Hash)]
|
1674
|
+
pub struct FuncType {
|
1675
|
+
registered_type: RegisteredType,
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
impl Display for FuncType {
|
1679
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1680
|
+
write!(f, "(type (func")?;
|
1681
|
+
if self.params().len() > 0 {
|
1682
|
+
write!(f, " (param")?;
|
1683
|
+
for p in self.params() {
|
1684
|
+
write!(f, " {p}")?;
|
1685
|
+
}
|
1686
|
+
write!(f, ")")?;
|
1687
|
+
}
|
1688
|
+
if self.results().len() > 0 {
|
1689
|
+
write!(f, " (result")?;
|
1690
|
+
for r in self.results() {
|
1691
|
+
write!(f, " {r}")?;
|
1692
|
+
}
|
1693
|
+
write!(f, ")")?;
|
1694
|
+
}
|
1695
|
+
write!(f, "))")
|
1696
|
+
}
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
impl FuncType {
|
1700
|
+
/// Creates a new function descriptor from the given parameters and results.
|
1701
|
+
///
|
1702
|
+
/// The function descriptor returned will represent a function which takes
|
1703
|
+
/// `params` as arguments and returns `results` when it is finished.
|
1704
|
+
pub fn new(
|
1705
|
+
engine: &Engine,
|
1706
|
+
params: impl IntoIterator<Item = ValType>,
|
1707
|
+
results: impl IntoIterator<Item = ValType>,
|
1708
|
+
) -> FuncType {
|
1709
|
+
// Keep any of our parameters' and results' `RegisteredType`s alive
|
1710
|
+
// across `Self::from_wasm_func_type`. If one of our given `ValType`s is
|
1711
|
+
// the only thing keeping a type in the registry, we don't want to
|
1712
|
+
// unregister it when we convert the `ValType` into a `WasmValType` just
|
1713
|
+
// before we register our new `WasmFuncType` that will reference it.
|
1714
|
+
let mut registrations = smallvec::SmallVec::<[_; 4]>::new();
|
1715
|
+
|
1716
|
+
let mut to_wasm_type = |ty: ValType| {
|
1717
|
+
if let Some(r) = ty.as_ref() {
|
1718
|
+
if let Some(r) = r.heap_type().as_registered_type() {
|
1719
|
+
registrations.push(r.clone());
|
1720
|
+
}
|
1721
|
+
}
|
1722
|
+
ty.to_wasm_type()
|
1723
|
+
};
|
1724
|
+
|
1725
|
+
Self::from_wasm_func_type(
|
1726
|
+
engine,
|
1727
|
+
WasmFuncType::new(
|
1728
|
+
params.into_iter().map(&mut to_wasm_type).collect(),
|
1729
|
+
results.into_iter().map(&mut to_wasm_type).collect(),
|
1730
|
+
),
|
1731
|
+
)
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
/// Get the engine that this function type is associated with.
|
1735
|
+
pub fn engine(&self) -> &Engine {
|
1736
|
+
self.registered_type.engine()
|
1737
|
+
}
|
1738
|
+
|
1739
|
+
/// Get the `i`th parameter type.
|
1740
|
+
///
|
1741
|
+
/// Returns `None` if `i` is out of bounds.
|
1742
|
+
pub fn param(&self, i: usize) -> Option<ValType> {
|
1743
|
+
let engine = self.engine();
|
1744
|
+
self.registered_type
|
1745
|
+
.unwrap_func()
|
1746
|
+
.params()
|
1747
|
+
.get(i)
|
1748
|
+
.map(|ty| ValType::from_wasm_type(engine, ty))
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
/// Returns the list of parameter types for this function.
|
1752
|
+
#[inline]
|
1753
|
+
pub fn params(&self) -> impl ExactSizeIterator<Item = ValType> + '_ {
|
1754
|
+
let engine = self.engine();
|
1755
|
+
self.registered_type
|
1756
|
+
.unwrap_func()
|
1757
|
+
.params()
|
1758
|
+
.iter()
|
1759
|
+
.map(|ty| ValType::from_wasm_type(engine, ty))
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
/// Get the `i`th result type.
|
1763
|
+
///
|
1764
|
+
/// Returns `None` if `i` is out of bounds.
|
1765
|
+
pub fn result(&self, i: usize) -> Option<ValType> {
|
1766
|
+
let engine = self.engine();
|
1767
|
+
self.registered_type
|
1768
|
+
.unwrap_func()
|
1769
|
+
.returns()
|
1770
|
+
.get(i)
|
1771
|
+
.map(|ty| ValType::from_wasm_type(engine, ty))
|
1772
|
+
}
|
1773
|
+
|
1774
|
+
/// Returns the list of result types for this function.
|
1775
|
+
#[inline]
|
1776
|
+
pub fn results(&self) -> impl ExactSizeIterator<Item = ValType> + '_ {
|
1777
|
+
let engine = self.engine();
|
1778
|
+
self.registered_type
|
1779
|
+
.unwrap_func()
|
1780
|
+
.returns()
|
1781
|
+
.iter()
|
1782
|
+
.map(|ty| ValType::from_wasm_type(engine, ty))
|
1783
|
+
}
|
1784
|
+
|
1785
|
+
/// Does this function type match the other function type?
|
1786
|
+
///
|
1787
|
+
/// That is, is this function type a subtype of the other function type?
|
1788
|
+
///
|
1789
|
+
/// # Panics
|
1790
|
+
///
|
1791
|
+
/// Panics if either type is associated with a different engine from the
|
1792
|
+
/// other.
|
1793
|
+
pub fn matches(&self, other: &FuncType) -> bool {
|
1794
|
+
assert!(self.comes_from_same_engine(other.engine()));
|
1795
|
+
|
1796
|
+
// Avoid matching on structure for subtyping checks when we have
|
1797
|
+
// precisely the same type.
|
1798
|
+
if self.type_index() == other.type_index() {
|
1799
|
+
return true;
|
1800
|
+
}
|
1801
|
+
|
1802
|
+
self.params().len() == other.params().len()
|
1803
|
+
&& self.results().len() == other.results().len()
|
1804
|
+
// Params are contravariant and results are covariant. For more
|
1805
|
+
// details and a refresher on variance, read
|
1806
|
+
// https://github.com/bytecodealliance/wasm-tools/blob/f1d89a4/crates/wasmparser/src/readers/core/types/matches.rs#L137-L174
|
1807
|
+
&& self
|
1808
|
+
.params()
|
1809
|
+
.zip(other.params())
|
1810
|
+
.all(|(a, b)| b.matches(&a))
|
1811
|
+
&& self
|
1812
|
+
.results()
|
1813
|
+
.zip(other.results())
|
1814
|
+
.all(|(a, b)| a.matches(&b))
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
/// Is function type `a` precisely equal to function type `b`?
|
1818
|
+
///
|
1819
|
+
/// Returns `false` even if `a` is a subtype of `b` or vice versa, if they
|
1820
|
+
/// are not exactly the same function type.
|
1821
|
+
///
|
1822
|
+
/// # Panics
|
1823
|
+
///
|
1824
|
+
/// Panics if either type is associated with a different engine from the
|
1825
|
+
/// other.
|
1826
|
+
pub fn eq(a: &FuncType, b: &FuncType) -> bool {
|
1827
|
+
assert!(a.comes_from_same_engine(b.engine()));
|
1828
|
+
a.type_index() == b.type_index()
|
1829
|
+
}
|
1830
|
+
|
1831
|
+
pub(crate) fn comes_from_same_engine(&self, engine: &Engine) -> bool {
|
1832
|
+
Engine::same(self.registered_type.engine(), engine)
|
1833
|
+
}
|
1834
|
+
|
1835
|
+
pub(crate) fn type_index(&self) -> VMSharedTypeIndex {
|
1836
|
+
self.registered_type.index()
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
pub(crate) fn as_wasm_func_type(&self) -> &WasmFuncType {
|
1840
|
+
self.registered_type.unwrap_func()
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
pub(crate) fn into_registered_type(self) -> RegisteredType {
|
1844
|
+
self.registered_type
|
1845
|
+
}
|
1846
|
+
|
1847
|
+
/// Construct a `FuncType` from a `WasmFuncType`.
|
1848
|
+
///
|
1849
|
+
/// This method should only be used when something has already registered --
|
1850
|
+
/// and is *keeping registered* -- any other concrete Wasm types referenced
|
1851
|
+
/// by the given `WasmFuncType`.
|
1852
|
+
///
|
1853
|
+
/// For example, this method may be called to convert a function type from
|
1854
|
+
/// within a Wasm module's `ModuleTypes` since the Wasm module itself is
|
1855
|
+
/// holding a strong reference to all of its types, including any `(ref null
|
1856
|
+
/// <index>)` types used in the function's parameters and results.
|
1857
|
+
pub(crate) fn from_wasm_func_type(engine: &Engine, ty: WasmFuncType) -> FuncType {
|
1858
|
+
let ty = RegisteredType::new(
|
1859
|
+
engine,
|
1860
|
+
WasmSubType {
|
1861
|
+
// TODO:
|
1862
|
+
//
|
1863
|
+
// is_final: true,
|
1864
|
+
// supertype: None,
|
1865
|
+
composite_type: WasmCompositeType::Func(ty),
|
1866
|
+
},
|
1867
|
+
);
|
1868
|
+
Self {
|
1869
|
+
registered_type: ty,
|
1870
|
+
}
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
pub(crate) fn from_shared_type_index(engine: &Engine, index: VMSharedTypeIndex) -> FuncType {
|
1874
|
+
let ty = RegisteredType::root(engine, index).expect(
|
1875
|
+
"VMSharedTypeIndex is not registered in the Engine! Wrong \
|
1876
|
+
engine? Didn't root the index somewhere?",
|
1877
|
+
);
|
1878
|
+
assert!(ty.is_func());
|
1879
|
+
Self {
|
1880
|
+
registered_type: ty,
|
1881
|
+
}
|
1882
|
+
}
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
// Global Types
|
1886
|
+
|
1887
|
+
/// A WebAssembly global descriptor.
|
1888
|
+
///
|
1889
|
+
/// This type describes an instance of a global in a WebAssembly module. Globals
|
1890
|
+
/// are local to an [`Instance`](crate::Instance) and are either immutable or
|
1891
|
+
/// mutable.
|
1892
|
+
#[derive(Debug, Clone, Hash)]
|
1893
|
+
pub struct GlobalType {
|
1894
|
+
content: ValType,
|
1895
|
+
mutability: Mutability,
|
1896
|
+
}
|
1897
|
+
|
1898
|
+
impl GlobalType {
|
1899
|
+
/// Creates a new global descriptor of the specified `content` type and
|
1900
|
+
/// whether or not it's mutable.
|
1901
|
+
pub fn new(content: ValType, mutability: Mutability) -> GlobalType {
|
1902
|
+
GlobalType {
|
1903
|
+
content,
|
1904
|
+
mutability,
|
1905
|
+
}
|
1906
|
+
}
|
1907
|
+
|
1908
|
+
/// Returns the value type of this global descriptor.
|
1909
|
+
pub fn content(&self) -> &ValType {
|
1910
|
+
&self.content
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
/// Returns whether or not this global is mutable.
|
1914
|
+
pub fn mutability(&self) -> Mutability {
|
1915
|
+
self.mutability
|
1916
|
+
}
|
1917
|
+
|
1918
|
+
pub(crate) fn to_wasm_type(&self) -> Global {
|
1919
|
+
let wasm_ty = self.content().to_wasm_type();
|
1920
|
+
let mutability = matches!(self.mutability(), Mutability::Var);
|
1921
|
+
Global {
|
1922
|
+
wasm_ty,
|
1923
|
+
mutability,
|
1924
|
+
}
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
/// Returns `None` if the wasmtime global has a type that we can't
|
1928
|
+
/// represent, but that should only very rarely happen and indicate a bug.
|
1929
|
+
pub(crate) fn from_wasmtime_global(engine: &Engine, global: &Global) -> GlobalType {
|
1930
|
+
let ty = ValType::from_wasm_type(engine, &global.wasm_ty);
|
1931
|
+
let mutability = if global.mutability {
|
1932
|
+
Mutability::Var
|
1933
|
+
} else {
|
1934
|
+
Mutability::Const
|
1935
|
+
};
|
1936
|
+
GlobalType::new(ty, mutability)
|
1937
|
+
}
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
// Table Types
|
1941
|
+
|
1942
|
+
/// A descriptor for a table in a WebAssembly module.
|
1943
|
+
///
|
1944
|
+
/// Tables are contiguous chunks of a specific element, typically a `funcref` or
|
1945
|
+
/// an `externref`. The most common use for tables is a function table through
|
1946
|
+
/// which `call_indirect` can invoke other functions.
|
1947
|
+
#[derive(Debug, Clone, Hash)]
|
1948
|
+
pub struct TableType {
|
1949
|
+
// Keep a `wasmtime::RefType` so that `TableType::element` doesn't need to
|
1950
|
+
// take an `&Engine`.
|
1951
|
+
element: RefType,
|
1952
|
+
ty: Table,
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
impl TableType {
|
1956
|
+
/// Creates a new table descriptor which will contain the specified
|
1957
|
+
/// `element` and have the `limits` applied to its length.
|
1958
|
+
pub fn new(element: RefType, min: u32, max: Option<u32>) -> TableType {
|
1959
|
+
let wasm_ty = element.to_wasm_type();
|
1960
|
+
|
1961
|
+
debug_assert!(
|
1962
|
+
wasm_ty.is_canonicalized_for_runtime_usage(),
|
1963
|
+
"should be canonicalized for runtime usage: {wasm_ty:?}"
|
1964
|
+
);
|
1965
|
+
|
1966
|
+
TableType {
|
1967
|
+
element,
|
1968
|
+
ty: Table {
|
1969
|
+
wasm_ty,
|
1970
|
+
minimum: min,
|
1971
|
+
maximum: max,
|
1972
|
+
},
|
1973
|
+
}
|
1974
|
+
}
|
1975
|
+
|
1976
|
+
/// Returns the element value type of this table.
|
1977
|
+
pub fn element(&self) -> &RefType {
|
1978
|
+
&self.element
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
/// Returns minimum number of elements this table must have
|
1982
|
+
pub fn minimum(&self) -> u32 {
|
1983
|
+
self.ty.minimum
|
1984
|
+
}
|
1985
|
+
|
1986
|
+
/// Returns the optionally-specified maximum number of elements this table
|
1987
|
+
/// can have.
|
1988
|
+
///
|
1989
|
+
/// If this returns `None` then the table is not limited in size.
|
1990
|
+
pub fn maximum(&self) -> Option<u32> {
|
1991
|
+
self.ty.maximum
|
1992
|
+
}
|
1993
|
+
|
1994
|
+
pub(crate) fn from_wasmtime_table(engine: &Engine, table: &Table) -> TableType {
|
1995
|
+
let element = RefType::from_wasm_type(engine, &table.wasm_ty);
|
1996
|
+
TableType {
|
1997
|
+
element,
|
1998
|
+
ty: table.clone(),
|
1999
|
+
}
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
pub(crate) fn wasmtime_table(&self) -> &Table {
|
2003
|
+
&self.ty
|
2004
|
+
}
|
2005
|
+
}
|
2006
|
+
|
2007
|
+
// Memory Types
|
2008
|
+
|
2009
|
+
/// A descriptor for a WebAssembly memory type.
|
2010
|
+
///
|
2011
|
+
/// Memories are described in units of pages (64KB) and represent contiguous
|
2012
|
+
/// chunks of addressable memory.
|
2013
|
+
#[derive(Debug, Clone, Hash, Eq, PartialEq)]
|
2014
|
+
pub struct MemoryType {
|
2015
|
+
ty: Memory,
|
2016
|
+
}
|
2017
|
+
|
2018
|
+
impl MemoryType {
|
2019
|
+
/// Creates a new descriptor for a 32-bit WebAssembly memory given the
|
2020
|
+
/// specified limits of the memory.
|
2021
|
+
///
|
2022
|
+
/// The `minimum` and `maximum` values here are specified in units of
|
2023
|
+
/// WebAssembly pages, which are 64k.
|
2024
|
+
pub fn new(minimum: u32, maximum: Option<u32>) -> MemoryType {
|
2025
|
+
MemoryType {
|
2026
|
+
ty: Memory {
|
2027
|
+
memory64: false,
|
2028
|
+
shared: false,
|
2029
|
+
minimum: minimum.into(),
|
2030
|
+
maximum: maximum.map(|i| i.into()),
|
2031
|
+
},
|
2032
|
+
}
|
2033
|
+
}
|
2034
|
+
|
2035
|
+
/// Creates a new descriptor for a 64-bit WebAssembly memory given the
|
2036
|
+
/// specified limits of the memory.
|
2037
|
+
///
|
2038
|
+
/// The `minimum` and `maximum` values here are specified in units of
|
2039
|
+
/// WebAssembly pages, which are 64k.
|
2040
|
+
///
|
2041
|
+
/// Note that 64-bit memories are part of the memory64 proposal for
|
2042
|
+
/// WebAssembly which is not standardized yet.
|
2043
|
+
pub fn new64(minimum: u64, maximum: Option<u64>) -> MemoryType {
|
2044
|
+
MemoryType {
|
2045
|
+
ty: Memory {
|
2046
|
+
memory64: true,
|
2047
|
+
shared: false,
|
2048
|
+
minimum,
|
2049
|
+
maximum,
|
2050
|
+
},
|
2051
|
+
}
|
2052
|
+
}
|
2053
|
+
|
2054
|
+
/// Creates a new descriptor for shared WebAssembly memory given the
|
2055
|
+
/// specified limits of the memory.
|
2056
|
+
///
|
2057
|
+
/// The `minimum` and `maximum` values here are specified in units of
|
2058
|
+
/// WebAssembly pages, which are 64k.
|
2059
|
+
///
|
2060
|
+
/// Note that shared memories are part of the threads proposal for
|
2061
|
+
/// WebAssembly which is not standardized yet.
|
2062
|
+
pub fn shared(minimum: u32, maximum: u32) -> MemoryType {
|
2063
|
+
MemoryType {
|
2064
|
+
ty: Memory {
|
2065
|
+
memory64: false,
|
2066
|
+
shared: true,
|
2067
|
+
minimum: minimum.into(),
|
2068
|
+
maximum: Some(maximum.into()),
|
2069
|
+
},
|
2070
|
+
}
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
/// Returns whether this is a 64-bit memory or not.
|
2074
|
+
///
|
2075
|
+
/// Note that 64-bit memories are part of the memory64 proposal for
|
2076
|
+
/// WebAssembly which is not standardized yet.
|
2077
|
+
pub fn is_64(&self) -> bool {
|
2078
|
+
self.ty.memory64
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
/// Returns whether this is a shared memory or not.
|
2082
|
+
///
|
2083
|
+
/// Note that shared memories are part of the threads proposal for
|
2084
|
+
/// WebAssembly which is not standardized yet.
|
2085
|
+
pub fn is_shared(&self) -> bool {
|
2086
|
+
self.ty.shared
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
/// Returns minimum number of WebAssembly pages this memory must have.
|
2090
|
+
///
|
2091
|
+
/// Note that the return value, while a `u64`, will always fit into a `u32`
|
2092
|
+
/// for 32-bit memories.
|
2093
|
+
pub fn minimum(&self) -> u64 {
|
2094
|
+
self.ty.minimum
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
/// Returns the optionally-specified maximum number of pages this memory
|
2098
|
+
/// can have.
|
2099
|
+
///
|
2100
|
+
/// If this returns `None` then the memory is not limited in size.
|
2101
|
+
///
|
2102
|
+
/// Note that the return value, while a `u64`, will always fit into a `u32`
|
2103
|
+
/// for 32-bit memories.
|
2104
|
+
pub fn maximum(&self) -> Option<u64> {
|
2105
|
+
self.ty.maximum
|
2106
|
+
}
|
2107
|
+
|
2108
|
+
pub(crate) fn from_wasmtime_memory(memory: &Memory) -> MemoryType {
|
2109
|
+
MemoryType { ty: memory.clone() }
|
2110
|
+
}
|
2111
|
+
|
2112
|
+
pub(crate) fn wasmtime_memory(&self) -> &Memory {
|
2113
|
+
&self.ty
|
2114
|
+
}
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
// Import Types
|
2118
|
+
|
2119
|
+
/// A descriptor for an imported value into a wasm module.
|
2120
|
+
///
|
2121
|
+
/// This type is primarily accessed from the
|
2122
|
+
/// [`Module::imports`](crate::Module::imports) API. Each [`ImportType`]
|
2123
|
+
/// describes an import into the wasm module with the module/name that it's
|
2124
|
+
/// imported from as well as the type of item that's being imported.
|
2125
|
+
#[derive(Clone)]
|
2126
|
+
pub struct ImportType<'module> {
|
2127
|
+
/// The module of the import.
|
2128
|
+
module: &'module str,
|
2129
|
+
|
2130
|
+
/// The field of the import.
|
2131
|
+
name: &'module str,
|
2132
|
+
|
2133
|
+
/// The type of the import.
|
2134
|
+
ty: EntityType,
|
2135
|
+
types: &'module ModuleTypes,
|
2136
|
+
engine: &'module Engine,
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
impl<'module> ImportType<'module> {
|
2140
|
+
/// Creates a new import descriptor which comes from `module` and `name` and
|
2141
|
+
/// is of type `ty`.
|
2142
|
+
pub(crate) fn new(
|
2143
|
+
module: &'module str,
|
2144
|
+
name: &'module str,
|
2145
|
+
ty: EntityType,
|
2146
|
+
types: &'module ModuleTypes,
|
2147
|
+
engine: &'module Engine,
|
2148
|
+
) -> ImportType<'module> {
|
2149
|
+
ImportType {
|
2150
|
+
module,
|
2151
|
+
name,
|
2152
|
+
ty,
|
2153
|
+
types,
|
2154
|
+
engine,
|
2155
|
+
}
|
2156
|
+
}
|
2157
|
+
|
2158
|
+
/// Returns the module name that this import is expected to come from.
|
2159
|
+
pub fn module(&self) -> &'module str {
|
2160
|
+
self.module
|
2161
|
+
}
|
2162
|
+
|
2163
|
+
/// Returns the field name of the module that this import is expected to
|
2164
|
+
/// come from.
|
2165
|
+
pub fn name(&self) -> &'module str {
|
2166
|
+
self.name
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
/// Returns the expected type of this import.
|
2170
|
+
pub fn ty(&self) -> ExternType {
|
2171
|
+
ExternType::from_wasmtime(self.engine, self.types, &self.ty)
|
2172
|
+
}
|
2173
|
+
}
|
2174
|
+
|
2175
|
+
impl<'module> fmt::Debug for ImportType<'module> {
|
2176
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2177
|
+
f.debug_struct("ImportType")
|
2178
|
+
.field("module", &self.module())
|
2179
|
+
.field("name", &self.name())
|
2180
|
+
.field("ty", &self.ty())
|
2181
|
+
.finish()
|
2182
|
+
}
|
2183
|
+
}
|
2184
|
+
|
2185
|
+
// Export Types
|
2186
|
+
|
2187
|
+
/// A descriptor for an exported WebAssembly value.
|
2188
|
+
///
|
2189
|
+
/// This type is primarily accessed from the
|
2190
|
+
/// [`Module::exports`](crate::Module::exports) accessor and describes what
|
2191
|
+
/// names are exported from a wasm module and the type of the item that is
|
2192
|
+
/// exported.
|
2193
|
+
#[derive(Clone)]
|
2194
|
+
pub struct ExportType<'module> {
|
2195
|
+
/// The name of the export.
|
2196
|
+
name: &'module str,
|
2197
|
+
|
2198
|
+
/// The type of the export.
|
2199
|
+
ty: EntityType,
|
2200
|
+
types: &'module ModuleTypes,
|
2201
|
+
engine: &'module Engine,
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
impl<'module> ExportType<'module> {
|
2205
|
+
/// Creates a new export which is exported with the given `name` and has the
|
2206
|
+
/// given `ty`.
|
2207
|
+
pub(crate) fn new(
|
2208
|
+
name: &'module str,
|
2209
|
+
ty: EntityType,
|
2210
|
+
types: &'module ModuleTypes,
|
2211
|
+
engine: &'module Engine,
|
2212
|
+
) -> ExportType<'module> {
|
2213
|
+
ExportType {
|
2214
|
+
name,
|
2215
|
+
ty,
|
2216
|
+
types,
|
2217
|
+
engine,
|
2218
|
+
}
|
2219
|
+
}
|
2220
|
+
|
2221
|
+
/// Returns the name by which this export is known.
|
2222
|
+
pub fn name(&self) -> &'module str {
|
2223
|
+
self.name
|
2224
|
+
}
|
2225
|
+
|
2226
|
+
/// Returns the type of this export.
|
2227
|
+
pub fn ty(&self) -> ExternType {
|
2228
|
+
ExternType::from_wasmtime(self.engine, self.types, &self.ty)
|
2229
|
+
}
|
2230
|
+
}
|
2231
|
+
|
2232
|
+
impl<'module> fmt::Debug for ExportType<'module> {
|
2233
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2234
|
+
f.debug_struct("ExportType")
|
2235
|
+
.field("name", &self.name().to_owned())
|
2236
|
+
.field("ty", &self.ty())
|
2237
|
+
.finish()
|
2238
|
+
}
|
2239
|
+
}
|