wasmtime 28.0.0 → 29.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +155 -120
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
- data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
- data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
- data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
- data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
- data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
- data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
- data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
- data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
- data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
- data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
- data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
- data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
- data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
- data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
- data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
- data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
- data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
- data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
- data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
- data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
- data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
- data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
- data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
- data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
- data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
- data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
- data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
- data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
- data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
- data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
- data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
- data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
- data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
- data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
- data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2408 -2300
- data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
- data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
- data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
- data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
- data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
- data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
- data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
- data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
- data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
- data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
- data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
- data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
- data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
- data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
- data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
- data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
- data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
- data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
- data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
- data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
- data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
- data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
- data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
- data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
- data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
- data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
- data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
- data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
- data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
- data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
- data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
- data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
- data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
- data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
- data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
- data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
- data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
- data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
- data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
- data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
- data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
- data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
- data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
- data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
- data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
- data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
- data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
- data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
- data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
- data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
- data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
- data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
- data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
- data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
- data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
- data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
- data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
- data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
- data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
- data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
- data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
- data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
- data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
- data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
- data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
- data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
- data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
- data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
- data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
- data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
- data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
- data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
- data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
- data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
- data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
- data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
- data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
- data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
- data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
- data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
- data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
- data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
- data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
- data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
- data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
- data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
- data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
- data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
- data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
- data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
- data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
- data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
- data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
- data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
- data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
- data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
- data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -0,0 +1,2988 @@
|
|
1
|
+
//! Wasmtime's "store" type
|
2
|
+
//!
|
3
|
+
//! This module, and its submodules, contain the `Store` type and various types
|
4
|
+
//! used to interact with it. At first glance this is a pretty confusing module
|
5
|
+
//! where you need to know the difference between:
|
6
|
+
//!
|
7
|
+
//! * `Store<T>`
|
8
|
+
//! * `StoreContext<T>`
|
9
|
+
//! * `StoreContextMut<T>`
|
10
|
+
//! * `AsContext`
|
11
|
+
//! * `AsContextMut`
|
12
|
+
//! * `StoreInner<T>`
|
13
|
+
//! * `StoreOpaque`
|
14
|
+
//! * `StoreData`
|
15
|
+
//!
|
16
|
+
//! There's... quite a lot going on here, and it's easy to be confused. This
|
17
|
+
//! comment is ideally going to serve the purpose of clarifying what all these
|
18
|
+
//! types are for and why they're motivated.
|
19
|
+
//!
|
20
|
+
//! First it's important to know what's "internal" and what's "external". Almost
|
21
|
+
//! everything above is defined as `pub`, but only some of the items are
|
22
|
+
//! reexported to the outside world to be usable from this crate. Otherwise all
|
23
|
+
//! items are `pub` within this `store` module, and the `store` module is
|
24
|
+
//! private to the `wasmtime` crate. Notably `Store<T>`, `StoreContext<T>`,
|
25
|
+
//! `StoreContextMut<T>`, `AsContext`, and `AsContextMut` are all public
|
26
|
+
//! interfaces to the `wasmtime` crate. You can think of these as:
|
27
|
+
//!
|
28
|
+
//! * `Store<T>` - an owned reference to a store, the "root of everything"
|
29
|
+
//! * `StoreContext<T>` - basically `&StoreInner<T>`
|
30
|
+
//! * `StoreContextMut<T>` - more-or-less `&mut StoreInner<T>` with caveats.
|
31
|
+
//! Explained later.
|
32
|
+
//! * `AsContext` - similar to `AsRef`, but produces `StoreContext<T>`
|
33
|
+
//! * `AsContextMut` - similar to `AsMut`, but produces `StoreContextMut<T>`
|
34
|
+
//!
|
35
|
+
//! Next comes the internal structure of the `Store<T>` itself. This looks like:
|
36
|
+
//!
|
37
|
+
//! * `Store<T>` - this type is just a pointer large. It's primarily just
|
38
|
+
//! intended to be consumed by the outside world. Note that the "just a
|
39
|
+
//! pointer large" is a load-bearing implementation detail in Wasmtime. This
|
40
|
+
//! enables it to store a pointer to its own trait object which doesn't need
|
41
|
+
//! to change over time.
|
42
|
+
//!
|
43
|
+
//! * `StoreInner<T>` - the first layer of the contents of a `Store<T>`, what's
|
44
|
+
//! stored inside the `Box`. This is the general Rust pattern when one struct
|
45
|
+
//! is a layer over another. The surprising part, though, is that this is
|
46
|
+
//! further subdivided. This structure only contains things which actually
|
47
|
+
//! need `T` itself. The downside of this structure is that it's always
|
48
|
+
//! generic and means that code is monomorphized into consumer crates. We
|
49
|
+
//! strive to have things be as monomorphic as possible in `wasmtime` so this
|
50
|
+
//! type is not heavily used.
|
51
|
+
//!
|
52
|
+
//! * `StoreOpaque` - this is the primary contents of the `StoreInner<T>` type.
|
53
|
+
//! Stored inline in the outer type the "opaque" here means that it's a
|
54
|
+
//! "store" but it doesn't have access to the `T`. This is the primary
|
55
|
+
//! "internal" reference that Wasmtime uses since `T` is rarely needed by the
|
56
|
+
//! internals of Wasmtime.
|
57
|
+
//!
|
58
|
+
//! * `StoreData` - this is a final helper struct stored within `StoreOpaque`.
|
59
|
+
//! All references of Wasm items into a `Store` are actually indices into a
|
60
|
+
//! table in this structure, and the `StoreData` being separate makes it a bit
|
61
|
+
//! easier to manage/define/work with. There's no real fundamental reason this
|
62
|
+
//! is split out, although sometimes it's useful to have separate borrows into
|
63
|
+
//! these tables than the `StoreOpaque`.
|
64
|
+
//!
|
65
|
+
//! A major caveat with these representations is that the internal `&mut
|
66
|
+
//! StoreInner<T>` is never handed out publicly to consumers of this crate, only
|
67
|
+
//! through a wrapper of `StoreContextMut<'_, T>`. The reason for this is that
|
68
|
+
//! we want to provide mutable, but not destructive, access to the contents of a
|
69
|
+
//! `Store`. For example if a `StoreInner<T>` were replaced with some other
|
70
|
+
//! `StoreInner<T>` then that would drop live instances, possibly those
|
71
|
+
//! currently executing beneath the current stack frame. This would not be a
|
72
|
+
//! safe operation.
|
73
|
+
//!
|
74
|
+
//! This means, though, that the `wasmtime` crate, which liberally uses `&mut
|
75
|
+
//! StoreOpaque` internally, has to be careful to never actually destroy the
|
76
|
+
//! contents of `StoreOpaque`. This is an invariant that we, as the authors of
|
77
|
+
//! `wasmtime`, must uphold for the public interface to be safe.
|
78
|
+
|
79
|
+
use crate::hash_set::HashSet;
|
80
|
+
use crate::instance::InstanceData;
|
81
|
+
use crate::linker::Definition;
|
82
|
+
use crate::module::RegisteredModuleId;
|
83
|
+
use crate::prelude::*;
|
84
|
+
use crate::runtime::vm::mpk::{self, ProtectionKey, ProtectionMask};
|
85
|
+
use crate::runtime::vm::{
|
86
|
+
Backtrace, ExportGlobal, GcRootsList, GcStore, InstanceAllocationRequest, InstanceAllocator,
|
87
|
+
InstanceHandle, Interpreter, InterpreterRef, ModuleRuntimeInfo, OnDemandInstanceAllocator,
|
88
|
+
SignalHandler, StoreBox, StorePtr, Unwind, UnwindHost, UnwindPulley, VMContext, VMFuncRef,
|
89
|
+
VMGcRef, VMRuntimeLimits,
|
90
|
+
};
|
91
|
+
use crate::trampoline::VMHostGlobalContext;
|
92
|
+
use crate::type_registry::RegisteredType;
|
93
|
+
use crate::RootSet;
|
94
|
+
use crate::{module::ModuleRegistry, Engine, Module, Trap, Val, ValRaw};
|
95
|
+
use crate::{Global, Instance, Memory, RootScope, Table, Uninhabited};
|
96
|
+
use alloc::sync::Arc;
|
97
|
+
use core::cell::UnsafeCell;
|
98
|
+
use core::fmt;
|
99
|
+
use core::future::Future;
|
100
|
+
use core::marker;
|
101
|
+
use core::mem::{self, ManuallyDrop};
|
102
|
+
use core::num::NonZeroU64;
|
103
|
+
use core::ops::{Deref, DerefMut, Range};
|
104
|
+
use core::pin::Pin;
|
105
|
+
use core::ptr;
|
106
|
+
use core::task::{Context, Poll};
|
107
|
+
use wasmtime_environ::TripleExt;
|
108
|
+
|
109
|
+
mod context;
|
110
|
+
pub use self::context::*;
|
111
|
+
mod data;
|
112
|
+
pub use self::data::*;
|
113
|
+
mod func_refs;
|
114
|
+
use func_refs::FuncRefs;
|
115
|
+
|
116
|
+
/// A [`Store`] is a collection of WebAssembly instances and host-defined state.
|
117
|
+
///
|
118
|
+
/// All WebAssembly instances and items will be attached to and refer to a
|
119
|
+
/// [`Store`]. For example instances, functions, globals, and tables are all
|
120
|
+
/// attached to a [`Store`]. Instances are created by instantiating a
|
121
|
+
/// [`Module`](crate::Module) within a [`Store`].
|
122
|
+
///
|
123
|
+
/// A [`Store`] is intended to be a short-lived object in a program. No form
|
124
|
+
/// of GC is implemented at this time so once an instance is created within a
|
125
|
+
/// [`Store`] it will not be deallocated until the [`Store`] itself is dropped.
|
126
|
+
/// This makes [`Store`] unsuitable for creating an unbounded number of
|
127
|
+
/// instances in it because [`Store`] will never release this memory. It's
|
128
|
+
/// recommended to have a [`Store`] correspond roughly to the lifetime of a
|
129
|
+
/// "main instance" that an embedding is interested in executing.
|
130
|
+
///
|
131
|
+
/// ## Type parameter `T`
|
132
|
+
///
|
133
|
+
/// Each [`Store`] has a type parameter `T` associated with it. This `T`
|
134
|
+
/// represents state defined by the host. This state will be accessible through
|
135
|
+
/// the [`Caller`](crate::Caller) type that host-defined functions get access
|
136
|
+
/// to. This `T` is suitable for storing `Store`-specific information which
|
137
|
+
/// imported functions may want access to.
|
138
|
+
///
|
139
|
+
/// The data `T` can be accessed through methods like [`Store::data`] and
|
140
|
+
/// [`Store::data_mut`].
|
141
|
+
///
|
142
|
+
/// ## Stores, contexts, oh my
|
143
|
+
///
|
144
|
+
/// Most methods in Wasmtime take something of the form
|
145
|
+
/// [`AsContext`](crate::AsContext) or [`AsContextMut`](crate::AsContextMut) as
|
146
|
+
/// the first argument. These two traits allow ergonomically passing in the
|
147
|
+
/// context you currently have to any method. The primary two sources of
|
148
|
+
/// contexts are:
|
149
|
+
///
|
150
|
+
/// * `Store<T>`
|
151
|
+
/// * `Caller<'_, T>`
|
152
|
+
///
|
153
|
+
/// corresponding to what you create and what you have access to in a host
|
154
|
+
/// function. You can also explicitly acquire a [`StoreContext`] or
|
155
|
+
/// [`StoreContextMut`] and pass that around as well.
|
156
|
+
///
|
157
|
+
/// Note that all methods on [`Store`] are mirrored onto [`StoreContext`],
|
158
|
+
/// [`StoreContextMut`], and [`Caller`](crate::Caller). This way no matter what
|
159
|
+
/// form of context you have you can call various methods, create objects, etc.
|
160
|
+
///
|
161
|
+
/// ## Stores and `Default`
|
162
|
+
///
|
163
|
+
/// You can create a store with default configuration settings using
|
164
|
+
/// `Store::default()`. This will create a brand new [`Engine`] with default
|
165
|
+
/// configuration (see [`Config`](crate::Config) for more information).
|
166
|
+
///
|
167
|
+
/// ## Cross-store usage of items
|
168
|
+
///
|
169
|
+
/// In `wasmtime` wasm items such as [`Global`] and [`Memory`] "belong" to a
|
170
|
+
/// [`Store`]. The store they belong to is the one they were created with
|
171
|
+
/// (passed in as a parameter) or instantiated with. This store is the only
|
172
|
+
/// store that can be used to interact with wasm items after they're created.
|
173
|
+
///
|
174
|
+
/// The `wasmtime` crate will panic if the [`Store`] argument passed in to these
|
175
|
+
/// operations is incorrect. In other words it's considered a programmer error
|
176
|
+
/// rather than a recoverable error for the wrong [`Store`] to be used when
|
177
|
+
/// calling APIs.
|
178
|
+
pub struct Store<T> {
|
179
|
+
// for comments about `ManuallyDrop`, see `Store::into_data`
|
180
|
+
inner: ManuallyDrop<Box<StoreInner<T>>>,
|
181
|
+
}
|
182
|
+
|
183
|
+
#[derive(Copy, Clone, Debug)]
|
184
|
+
/// Passed to the argument of [`Store::call_hook`] to indicate a state transition in
|
185
|
+
/// the WebAssembly VM.
|
186
|
+
pub enum CallHook {
|
187
|
+
/// Indicates the VM is calling a WebAssembly function, from the host.
|
188
|
+
CallingWasm,
|
189
|
+
/// Indicates the VM is returning from a WebAssembly function, to the host.
|
190
|
+
ReturningFromWasm,
|
191
|
+
/// Indicates the VM is calling a host function, from WebAssembly.
|
192
|
+
CallingHost,
|
193
|
+
/// Indicates the VM is returning from a host function, to WebAssembly.
|
194
|
+
ReturningFromHost,
|
195
|
+
}
|
196
|
+
|
197
|
+
impl CallHook {
|
198
|
+
/// Indicates the VM is entering host code (exiting WebAssembly code)
|
199
|
+
pub fn entering_host(&self) -> bool {
|
200
|
+
match self {
|
201
|
+
CallHook::ReturningFromWasm | CallHook::CallingHost => true,
|
202
|
+
_ => false,
|
203
|
+
}
|
204
|
+
}
|
205
|
+
/// Indicates the VM is exiting host code (entering WebAssembly code)
|
206
|
+
pub fn exiting_host(&self) -> bool {
|
207
|
+
match self {
|
208
|
+
CallHook::ReturningFromHost | CallHook::CallingWasm => true,
|
209
|
+
_ => false,
|
210
|
+
}
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
/// Internal contents of a `Store<T>` that live on the heap.
|
215
|
+
///
|
216
|
+
/// The members of this struct are those that need to be generic over `T`, the
|
217
|
+
/// store's internal type storage. Otherwise all things that don't rely on `T`
|
218
|
+
/// should go into `StoreOpaque`.
|
219
|
+
pub struct StoreInner<T> {
|
220
|
+
/// Generic metadata about the store that doesn't need access to `T`.
|
221
|
+
inner: StoreOpaque,
|
222
|
+
|
223
|
+
limiter: Option<ResourceLimiterInner<T>>,
|
224
|
+
call_hook: Option<CallHookInner<T>>,
|
225
|
+
epoch_deadline_behavior:
|
226
|
+
Option<Box<dyn FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync>>,
|
227
|
+
// for comments about `ManuallyDrop`, see `Store::into_data`
|
228
|
+
data: ManuallyDrop<T>,
|
229
|
+
}
|
230
|
+
|
231
|
+
enum ResourceLimiterInner<T> {
|
232
|
+
Sync(Box<dyn FnMut(&mut T) -> &mut (dyn crate::ResourceLimiter) + Send + Sync>),
|
233
|
+
#[cfg(feature = "async")]
|
234
|
+
Async(Box<dyn FnMut(&mut T) -> &mut (dyn crate::ResourceLimiterAsync) + Send + Sync>),
|
235
|
+
}
|
236
|
+
|
237
|
+
/// An object that can take callbacks when the runtime enters or exits hostcalls.
|
238
|
+
#[cfg(all(feature = "async", feature = "call-hook"))]
|
239
|
+
#[async_trait::async_trait]
|
240
|
+
pub trait CallHookHandler<T>: Send {
|
241
|
+
/// A callback to run when wasmtime is about to enter a host call, or when about to
|
242
|
+
/// exit the hostcall.
|
243
|
+
async fn handle_call_event(&self, t: StoreContextMut<'_, T>, ch: CallHook) -> Result<()>;
|
244
|
+
}
|
245
|
+
|
246
|
+
enum CallHookInner<T> {
|
247
|
+
#[cfg(feature = "call-hook")]
|
248
|
+
Sync(Box<dyn FnMut(StoreContextMut<'_, T>, CallHook) -> Result<()> + Send + Sync>),
|
249
|
+
#[cfg(all(feature = "async", feature = "call-hook"))]
|
250
|
+
Async(Box<dyn CallHookHandler<T> + Send + Sync>),
|
251
|
+
#[allow(dead_code)]
|
252
|
+
ForceTypeParameterToBeUsed {
|
253
|
+
uninhabited: Uninhabited,
|
254
|
+
_marker: marker::PhantomData<T>,
|
255
|
+
},
|
256
|
+
}
|
257
|
+
|
258
|
+
/// What to do after returning from a callback when the engine epoch reaches
|
259
|
+
/// the deadline for a Store during execution of a function using that store.
|
260
|
+
pub enum UpdateDeadline {
|
261
|
+
/// Extend the deadline by the specified number of ticks.
|
262
|
+
Continue(u64),
|
263
|
+
/// Extend the deadline by the specified number of ticks after yielding to
|
264
|
+
/// the async executor loop. This can only be used with an async [`Store`]
|
265
|
+
/// configured via [`Config::async_support`](crate::Config::async_support).
|
266
|
+
#[cfg(feature = "async")]
|
267
|
+
Yield(u64),
|
268
|
+
}
|
269
|
+
|
270
|
+
// Forward methods on `StoreOpaque` to also being on `StoreInner<T>`
|
271
|
+
impl<T> Deref for StoreInner<T> {
|
272
|
+
type Target = StoreOpaque;
|
273
|
+
fn deref(&self) -> &Self::Target {
|
274
|
+
&self.inner
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
impl<T> DerefMut for StoreInner<T> {
|
279
|
+
fn deref_mut(&mut self) -> &mut Self::Target {
|
280
|
+
&mut self.inner
|
281
|
+
}
|
282
|
+
}
|
283
|
+
|
284
|
+
/// Monomorphic storage for a `Store<T>`.
|
285
|
+
///
|
286
|
+
/// This structure contains the bulk of the metadata about a `Store`. This is
|
287
|
+
/// used internally in Wasmtime when dependence on the `T` of `Store<T>` isn't
|
288
|
+
/// necessary, allowing code to be monomorphic and compiled into the `wasmtime`
|
289
|
+
/// crate itself.
|
290
|
+
pub struct StoreOpaque {
|
291
|
+
// This `StoreOpaque` structure has references to itself. These aren't
|
292
|
+
// immediately evident, however, so we need to tell the compiler that it
|
293
|
+
// contains self-references. This notably suppresses `noalias` annotations
|
294
|
+
// when this shows up in compiled code because types of this structure do
|
295
|
+
// indeed alias itself. An example of this is `default_callee` holds a
|
296
|
+
// `*mut dyn Store` to the address of this `StoreOpaque` itself, indeed
|
297
|
+
// aliasing!
|
298
|
+
//
|
299
|
+
// It's somewhat unclear to me at this time if this is 100% sufficient to
|
300
|
+
// get all the right codegen in all the right places. For example does
|
301
|
+
// `Store` need to internally contain a `Pin<Box<StoreInner<T>>>`? Do the
|
302
|
+
// contexts need to contain `Pin<&mut StoreInner<T>>`? I'm not familiar
|
303
|
+
// enough with `Pin` to understand if it's appropriate here (we do, for
|
304
|
+
// example want to allow movement in and out of `data: T`, just not movement
|
305
|
+
// of most of the other members). It's also not clear if using `Pin` in a
|
306
|
+
// few places buys us much other than a bunch of `unsafe` that we already
|
307
|
+
// sort of hand-wave away.
|
308
|
+
//
|
309
|
+
// In any case this seems like a good mid-ground for now where we're at
|
310
|
+
// least telling the compiler something about all the aliasing happening
|
311
|
+
// within a `Store`.
|
312
|
+
_marker: marker::PhantomPinned,
|
313
|
+
|
314
|
+
engine: Engine,
|
315
|
+
runtime_limits: VMRuntimeLimits,
|
316
|
+
instances: Vec<StoreInstance>,
|
317
|
+
#[cfg(feature = "component-model")]
|
318
|
+
num_component_instances: usize,
|
319
|
+
signal_handler: Option<SignalHandler>,
|
320
|
+
modules: ModuleRegistry,
|
321
|
+
func_refs: FuncRefs,
|
322
|
+
host_globals: Vec<StoreBox<VMHostGlobalContext>>,
|
323
|
+
|
324
|
+
// GC-related fields.
|
325
|
+
gc_store: Option<GcStore>,
|
326
|
+
gc_roots: RootSet,
|
327
|
+
gc_roots_list: GcRootsList,
|
328
|
+
// Types for which the embedder has created an allocator for.
|
329
|
+
gc_host_alloc_types: HashSet<RegisteredType>,
|
330
|
+
|
331
|
+
// Numbers of resources instantiated in this store, and their limits
|
332
|
+
instance_count: usize,
|
333
|
+
instance_limit: usize,
|
334
|
+
memory_count: usize,
|
335
|
+
memory_limit: usize,
|
336
|
+
table_count: usize,
|
337
|
+
table_limit: usize,
|
338
|
+
#[cfg(feature = "async")]
|
339
|
+
async_state: AsyncState,
|
340
|
+
|
341
|
+
// If fuel_yield_interval is enabled, then we store the remaining fuel (that isn't in
|
342
|
+
// runtime_limits) here. The total amount of fuel is the runtime limits and reserve added
|
343
|
+
// together. Then when we run out of gas, we inject the yield amount from the reserve
|
344
|
+
// until the reserve is empty.
|
345
|
+
fuel_reserve: u64,
|
346
|
+
fuel_yield_interval: Option<NonZeroU64>,
|
347
|
+
/// Indexed data within this `Store`, used to store information about
|
348
|
+
/// globals, functions, memories, etc.
|
349
|
+
///
|
350
|
+
/// Note that this is `ManuallyDrop` because it needs to be dropped before
|
351
|
+
/// `rooted_host_funcs` below. This structure contains pointers which are
|
352
|
+
/// otherwise kept alive by the `Arc` references in `rooted_host_funcs`.
|
353
|
+
store_data: ManuallyDrop<StoreData>,
|
354
|
+
default_caller: InstanceHandle,
|
355
|
+
|
356
|
+
/// Used to optimzed wasm->host calls when the host function is defined with
|
357
|
+
/// `Func::new` to avoid allocating a new vector each time a function is
|
358
|
+
/// called.
|
359
|
+
hostcall_val_storage: Vec<Val>,
|
360
|
+
/// Same as `hostcall_val_storage`, but for the direction of the host
|
361
|
+
/// calling wasm.
|
362
|
+
wasm_val_raw_storage: Vec<ValRaw>,
|
363
|
+
|
364
|
+
/// A list of lists of definitions which have been used to instantiate
|
365
|
+
/// within this `Store`.
|
366
|
+
///
|
367
|
+
/// Note that not all instantiations end up pushing to this list. At the
|
368
|
+
/// time of this writing only the `InstancePre<T>` type will push to this
|
369
|
+
/// list. Pushes to this list are typically accompanied with
|
370
|
+
/// `HostFunc::to_func_store_rooted` to clone an `Arc` here once which
|
371
|
+
/// preserves a strong reference to the `Arc` for each `HostFunc` stored
|
372
|
+
/// within the list of `Definition`s.
|
373
|
+
///
|
374
|
+
/// Note that this is `ManuallyDrop` as it must be dropped after
|
375
|
+
/// `store_data` above, where the function pointers are stored.
|
376
|
+
rooted_host_funcs: ManuallyDrop<Vec<Arc<[Definition]>>>,
|
377
|
+
|
378
|
+
/// Keep track of what protection key is being used during allocation so
|
379
|
+
/// that the right memory pages can be enabled when entering WebAssembly
|
380
|
+
/// guest code.
|
381
|
+
pkey: Option<ProtectionKey>,
|
382
|
+
|
383
|
+
/// Runtime state for components used in the handling of resources, borrow,
|
384
|
+
/// and calls. These also interact with the `ResourceAny` type and its
|
385
|
+
/// internal representation.
|
386
|
+
#[cfg(feature = "component-model")]
|
387
|
+
component_host_table: crate::runtime::vm::component::ResourceTable,
|
388
|
+
#[cfg(feature = "component-model")]
|
389
|
+
component_calls: crate::runtime::vm::component::CallContexts,
|
390
|
+
#[cfg(feature = "component-model")]
|
391
|
+
host_resource_data: crate::component::HostResourceData,
|
392
|
+
|
393
|
+
/// State related to the Pulley interpreter if that's enabled and configured
|
394
|
+
/// for this store's `Engine`. This is `None` if pulley was disabled at
|
395
|
+
/// compile time or if it's not being used by the `Engine`.
|
396
|
+
interpreter: Option<Interpreter>,
|
397
|
+
}
|
398
|
+
|
399
|
+
#[cfg(feature = "async")]
|
400
|
+
struct AsyncState {
|
401
|
+
current_suspend: UnsafeCell<*mut wasmtime_fiber::Suspend<Result<()>, (), Result<()>>>,
|
402
|
+
current_poll_cx: UnsafeCell<PollContext>,
|
403
|
+
/// The last fiber stack that was in use by this store.
|
404
|
+
last_fiber_stack: Option<wasmtime_fiber::FiberStack>,
|
405
|
+
}
|
406
|
+
|
407
|
+
#[cfg(feature = "async")]
|
408
|
+
#[derive(Clone, Copy)]
|
409
|
+
struct PollContext {
|
410
|
+
future_context: *mut Context<'static>,
|
411
|
+
guard_range_start: *mut u8,
|
412
|
+
guard_range_end: *mut u8,
|
413
|
+
}
|
414
|
+
|
415
|
+
#[cfg(feature = "async")]
|
416
|
+
impl Default for PollContext {
|
417
|
+
fn default() -> PollContext {
|
418
|
+
PollContext {
|
419
|
+
future_context: core::ptr::null_mut(),
|
420
|
+
guard_range_start: core::ptr::null_mut(),
|
421
|
+
guard_range_end: core::ptr::null_mut(),
|
422
|
+
}
|
423
|
+
}
|
424
|
+
}
|
425
|
+
|
426
|
+
// Lots of pesky unsafe cells and pointers in this structure. This means we need
|
427
|
+
// to declare explicitly that we use this in a threadsafe fashion.
|
428
|
+
#[cfg(feature = "async")]
|
429
|
+
unsafe impl Send for AsyncState {}
|
430
|
+
#[cfg(feature = "async")]
|
431
|
+
unsafe impl Sync for AsyncState {}
|
432
|
+
|
433
|
+
/// An RAII type to automatically mark a region of code as unsafe for GC.
|
434
|
+
#[doc(hidden)]
|
435
|
+
pub struct AutoAssertNoGc<'a> {
|
436
|
+
store: &'a mut StoreOpaque,
|
437
|
+
entered: bool,
|
438
|
+
}
|
439
|
+
|
440
|
+
impl<'a> AutoAssertNoGc<'a> {
|
441
|
+
#[inline]
|
442
|
+
pub fn new(store: &'a mut StoreOpaque) -> Self {
|
443
|
+
let entered = if !cfg!(feature = "gc") {
|
444
|
+
false
|
445
|
+
} else if let Some(gc_store) = store.gc_store.as_mut() {
|
446
|
+
gc_store.gc_heap.enter_no_gc_scope();
|
447
|
+
true
|
448
|
+
} else {
|
449
|
+
false
|
450
|
+
};
|
451
|
+
|
452
|
+
AutoAssertNoGc { store, entered }
|
453
|
+
}
|
454
|
+
|
455
|
+
/// Creates an `AutoAssertNoGc` value which is forcibly "not entered" and
|
456
|
+
/// disables checks for no GC happening for the duration of this value.
|
457
|
+
///
|
458
|
+
/// This is used when it is statically otherwise known that a GC doesn't
|
459
|
+
/// happen for the various types involved.
|
460
|
+
///
|
461
|
+
/// # Unsafety
|
462
|
+
///
|
463
|
+
/// This method is `unsafe` as it does not provide the same safety
|
464
|
+
/// guarantees as `AutoAssertNoGc::new`. It must be guaranteed by the
|
465
|
+
/// caller that a GC doesn't happen.
|
466
|
+
#[inline]
|
467
|
+
pub unsafe fn disabled(store: &'a mut StoreOpaque) -> Self {
|
468
|
+
if cfg!(debug_assertions) {
|
469
|
+
AutoAssertNoGc::new(store)
|
470
|
+
} else {
|
471
|
+
AutoAssertNoGc {
|
472
|
+
store,
|
473
|
+
entered: false,
|
474
|
+
}
|
475
|
+
}
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
impl core::ops::Deref for AutoAssertNoGc<'_> {
|
480
|
+
type Target = StoreOpaque;
|
481
|
+
|
482
|
+
#[inline]
|
483
|
+
fn deref(&self) -> &Self::Target {
|
484
|
+
&*self.store
|
485
|
+
}
|
486
|
+
}
|
487
|
+
|
488
|
+
impl core::ops::DerefMut for AutoAssertNoGc<'_> {
|
489
|
+
#[inline]
|
490
|
+
fn deref_mut(&mut self) -> &mut Self::Target {
|
491
|
+
&mut *self.store
|
492
|
+
}
|
493
|
+
}
|
494
|
+
|
495
|
+
impl Drop for AutoAssertNoGc<'_> {
|
496
|
+
#[inline]
|
497
|
+
fn drop(&mut self) {
|
498
|
+
if self.entered {
|
499
|
+
self.store.unwrap_gc_store_mut().gc_heap.exit_no_gc_scope();
|
500
|
+
}
|
501
|
+
}
|
502
|
+
}
|
503
|
+
|
504
|
+
/// Used to associate instances with the store.
|
505
|
+
///
|
506
|
+
/// This is needed to track if the instance was allocated explicitly with the on-demand
|
507
|
+
/// instance allocator.
|
508
|
+
struct StoreInstance {
|
509
|
+
handle: InstanceHandle,
|
510
|
+
kind: StoreInstanceKind,
|
511
|
+
}
|
512
|
+
|
513
|
+
enum StoreInstanceKind {
|
514
|
+
/// An actual, non-dummy instance.
|
515
|
+
Real {
|
516
|
+
/// The id of this instance's module inside our owning store's
|
517
|
+
/// `ModuleRegistry`.
|
518
|
+
module_id: RegisteredModuleId,
|
519
|
+
},
|
520
|
+
|
521
|
+
/// This is a dummy instance that is just an implementation detail for
|
522
|
+
/// something else. For example, host-created memories internally create a
|
523
|
+
/// dummy instance.
|
524
|
+
///
|
525
|
+
/// Regardless of the configured instance allocator for the engine, dummy
|
526
|
+
/// instances always use the on-demand allocator to deallocate the instance.
|
527
|
+
Dummy,
|
528
|
+
}
|
529
|
+
|
530
|
+
impl<T> Store<T> {
|
531
|
+
/// Creates a new [`Store`] to be associated with the given [`Engine`] and
|
532
|
+
/// `data` provided.
|
533
|
+
///
|
534
|
+
/// The created [`Store`] will place no additional limits on the size of
|
535
|
+
/// linear memories or tables at runtime. Linear memories and tables will
|
536
|
+
/// be allowed to grow to any upper limit specified in their definitions.
|
537
|
+
/// The store will limit the number of instances, linear memories, and
|
538
|
+
/// tables created to 10,000. This can be overridden with the
|
539
|
+
/// [`Store::limiter`] configuration method.
|
540
|
+
pub fn new(engine: &Engine, data: T) -> Self {
|
541
|
+
let pkey = engine.allocator().next_available_pkey();
|
542
|
+
|
543
|
+
let mut inner = Box::new(StoreInner {
|
544
|
+
inner: StoreOpaque {
|
545
|
+
_marker: marker::PhantomPinned,
|
546
|
+
engine: engine.clone(),
|
547
|
+
runtime_limits: Default::default(),
|
548
|
+
instances: Vec::new(),
|
549
|
+
#[cfg(feature = "component-model")]
|
550
|
+
num_component_instances: 0,
|
551
|
+
signal_handler: None,
|
552
|
+
gc_store: None,
|
553
|
+
gc_roots: RootSet::default(),
|
554
|
+
gc_roots_list: GcRootsList::default(),
|
555
|
+
gc_host_alloc_types: HashSet::default(),
|
556
|
+
modules: ModuleRegistry::default(),
|
557
|
+
func_refs: FuncRefs::default(),
|
558
|
+
host_globals: Vec::new(),
|
559
|
+
instance_count: 0,
|
560
|
+
instance_limit: crate::DEFAULT_INSTANCE_LIMIT,
|
561
|
+
memory_count: 0,
|
562
|
+
memory_limit: crate::DEFAULT_MEMORY_LIMIT,
|
563
|
+
table_count: 0,
|
564
|
+
table_limit: crate::DEFAULT_TABLE_LIMIT,
|
565
|
+
#[cfg(feature = "async")]
|
566
|
+
async_state: AsyncState {
|
567
|
+
current_suspend: UnsafeCell::new(ptr::null_mut()),
|
568
|
+
current_poll_cx: UnsafeCell::new(PollContext::default()),
|
569
|
+
last_fiber_stack: None,
|
570
|
+
},
|
571
|
+
fuel_reserve: 0,
|
572
|
+
fuel_yield_interval: None,
|
573
|
+
store_data: ManuallyDrop::new(StoreData::new()),
|
574
|
+
default_caller: InstanceHandle::null(),
|
575
|
+
hostcall_val_storage: Vec::new(),
|
576
|
+
wasm_val_raw_storage: Vec::new(),
|
577
|
+
rooted_host_funcs: ManuallyDrop::new(Vec::new()),
|
578
|
+
pkey,
|
579
|
+
#[cfg(feature = "component-model")]
|
580
|
+
component_host_table: Default::default(),
|
581
|
+
#[cfg(feature = "component-model")]
|
582
|
+
component_calls: Default::default(),
|
583
|
+
#[cfg(feature = "component-model")]
|
584
|
+
host_resource_data: Default::default(),
|
585
|
+
interpreter: if cfg!(feature = "pulley") && engine.target().is_pulley() {
|
586
|
+
Some(Interpreter::new())
|
587
|
+
} else {
|
588
|
+
None
|
589
|
+
},
|
590
|
+
},
|
591
|
+
limiter: None,
|
592
|
+
call_hook: None,
|
593
|
+
epoch_deadline_behavior: None,
|
594
|
+
data: ManuallyDrop::new(data),
|
595
|
+
});
|
596
|
+
|
597
|
+
// Wasmtime uses the callee argument to host functions to learn about
|
598
|
+
// the original pointer to the `Store` itself, allowing it to
|
599
|
+
// reconstruct a `StoreContextMut<T>`. When we initially call a `Func`,
|
600
|
+
// however, there's no "callee" to provide. To fix this we allocate a
|
601
|
+
// single "default callee" for the entire `Store`. This is then used as
|
602
|
+
// part of `Func::call` to guarantee that the `callee: *mut VMContext`
|
603
|
+
// is never null.
|
604
|
+
inner.default_caller = {
|
605
|
+
let module = Arc::new(wasmtime_environ::Module::default());
|
606
|
+
let shim = ModuleRuntimeInfo::bare(module);
|
607
|
+
let allocator = OnDemandInstanceAllocator::default();
|
608
|
+
allocator
|
609
|
+
.validate_module(shim.env_module(), shim.offsets())
|
610
|
+
.unwrap();
|
611
|
+
let mut instance = unsafe {
|
612
|
+
allocator
|
613
|
+
.allocate_module(InstanceAllocationRequest {
|
614
|
+
host_state: Box::new(()),
|
615
|
+
imports: Default::default(),
|
616
|
+
store: StorePtr::empty(),
|
617
|
+
runtime_info: &shim,
|
618
|
+
wmemcheck: engine.config().wmemcheck,
|
619
|
+
pkey: None,
|
620
|
+
tunables: engine.tunables(),
|
621
|
+
})
|
622
|
+
.expect("failed to allocate default callee")
|
623
|
+
};
|
624
|
+
|
625
|
+
// Note the erasure of the lifetime here into `'static`, so in
|
626
|
+
// general usage of this trait object must be strictly bounded to
|
627
|
+
// the `Store` itself, and this is an invariant that we have to
|
628
|
+
// maintain throughout Wasmtime.
|
629
|
+
unsafe {
|
630
|
+
let traitobj = mem::transmute::<
|
631
|
+
*mut (dyn crate::runtime::vm::VMStore + '_),
|
632
|
+
*mut (dyn crate::runtime::vm::VMStore + 'static),
|
633
|
+
>(&mut *inner);
|
634
|
+
instance.set_store(traitobj);
|
635
|
+
instance
|
636
|
+
}
|
637
|
+
};
|
638
|
+
|
639
|
+
Self {
|
640
|
+
inner: ManuallyDrop::new(inner),
|
641
|
+
}
|
642
|
+
}
|
643
|
+
|
644
|
+
/// Access the underlying data owned by this `Store`.
|
645
|
+
#[inline]
|
646
|
+
pub fn data(&self) -> &T {
|
647
|
+
self.inner.data()
|
648
|
+
}
|
649
|
+
|
650
|
+
/// Access the underlying data owned by this `Store`.
|
651
|
+
#[inline]
|
652
|
+
pub fn data_mut(&mut self) -> &mut T {
|
653
|
+
self.inner.data_mut()
|
654
|
+
}
|
655
|
+
|
656
|
+
/// Consumes this [`Store`], destroying it, and returns the underlying data.
|
657
|
+
pub fn into_data(mut self) -> T {
|
658
|
+
self.inner.flush_fiber_stack();
|
659
|
+
|
660
|
+
// This is an unsafe operation because we want to avoid having a runtime
|
661
|
+
// check or boolean for whether the data is actually contained within a
|
662
|
+
// `Store`. The data itself is stored as `ManuallyDrop` since we're
|
663
|
+
// manually managing the memory here, and there's also a `ManuallyDrop`
|
664
|
+
// around the `Box<StoreInner<T>>`. The way this works though is a bit
|
665
|
+
// tricky, so here's how things get dropped appropriately:
|
666
|
+
//
|
667
|
+
// * When a `Store<T>` is normally dropped, the custom destructor for
|
668
|
+
// `Store<T>` will drop `T`, then the `self.inner` field. The
|
669
|
+
// rustc-glue destructor runs for `Box<StoreInner<T>>` which drops
|
670
|
+
// `StoreInner<T>`. This cleans up all internal fields and doesn't
|
671
|
+
// touch `T` because it's wrapped in `ManuallyDrop`.
|
672
|
+
//
|
673
|
+
// * When calling this method we skip the top-level destructor for
|
674
|
+
// `Store<T>` with `mem::forget`. This skips both the destructor for
|
675
|
+
// `T` and the destructor for `StoreInner<T>`. We do, however, run the
|
676
|
+
// destructor for `Box<StoreInner<T>>` which, like above, will skip
|
677
|
+
// the destructor for `T` since it's `ManuallyDrop`.
|
678
|
+
//
|
679
|
+
// In both cases all the other fields of `StoreInner<T>` should all get
|
680
|
+
// dropped, and the manual management of destructors is basically
|
681
|
+
// between this method and `Drop for Store<T>`. Note that this also
|
682
|
+
// means that `Drop for StoreInner<T>` cannot access `self.data`, so
|
683
|
+
// there is a comment indicating this as well.
|
684
|
+
unsafe {
|
685
|
+
let mut inner = ManuallyDrop::take(&mut self.inner);
|
686
|
+
core::mem::forget(self);
|
687
|
+
ManuallyDrop::take(&mut inner.data)
|
688
|
+
}
|
689
|
+
}
|
690
|
+
|
691
|
+
/// Configures the [`ResourceLimiter`] used to limit resource creation
|
692
|
+
/// within this [`Store`].
|
693
|
+
///
|
694
|
+
/// Whenever resources such as linear memory, tables, or instances are
|
695
|
+
/// allocated the `limiter` specified here is invoked with the store's data
|
696
|
+
/// `T` and the returned [`ResourceLimiter`] is used to limit the operation
|
697
|
+
/// being allocated. The returned [`ResourceLimiter`] is intended to live
|
698
|
+
/// within the `T` itself, for example by storing a
|
699
|
+
/// [`StoreLimits`](crate::StoreLimits).
|
700
|
+
///
|
701
|
+
/// Note that this limiter is only used to limit the creation/growth of
|
702
|
+
/// resources in the future, this does not retroactively attempt to apply
|
703
|
+
/// limits to the [`Store`].
|
704
|
+
///
|
705
|
+
/// # Examples
|
706
|
+
///
|
707
|
+
/// ```
|
708
|
+
/// use wasmtime::*;
|
709
|
+
///
|
710
|
+
/// struct MyApplicationState {
|
711
|
+
/// my_state: u32,
|
712
|
+
/// limits: StoreLimits,
|
713
|
+
/// }
|
714
|
+
///
|
715
|
+
/// let engine = Engine::default();
|
716
|
+
/// let my_state = MyApplicationState {
|
717
|
+
/// my_state: 42,
|
718
|
+
/// limits: StoreLimitsBuilder::new()
|
719
|
+
/// .memory_size(1 << 20 /* 1 MB */)
|
720
|
+
/// .instances(2)
|
721
|
+
/// .build(),
|
722
|
+
/// };
|
723
|
+
/// let mut store = Store::new(&engine, my_state);
|
724
|
+
/// store.limiter(|state| &mut state.limits);
|
725
|
+
///
|
726
|
+
/// // Creation of smaller memories is allowed
|
727
|
+
/// Memory::new(&mut store, MemoryType::new(1, None)).unwrap();
|
728
|
+
///
|
729
|
+
/// // Creation of a larger memory, however, will exceed the 1MB limit we've
|
730
|
+
/// // configured
|
731
|
+
/// assert!(Memory::new(&mut store, MemoryType::new(1000, None)).is_err());
|
732
|
+
///
|
733
|
+
/// // The number of instances in this store is limited to 2, so the third
|
734
|
+
/// // instance here should fail.
|
735
|
+
/// let module = Module::new(&engine, "(module)").unwrap();
|
736
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_ok());
|
737
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_ok());
|
738
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_err());
|
739
|
+
/// ```
|
740
|
+
///
|
741
|
+
/// [`ResourceLimiter`]: crate::ResourceLimiter
|
742
|
+
pub fn limiter(
|
743
|
+
&mut self,
|
744
|
+
mut limiter: impl FnMut(&mut T) -> &mut (dyn crate::ResourceLimiter) + Send + Sync + 'static,
|
745
|
+
) {
|
746
|
+
// Apply the limits on instances, tables, and memory given by the limiter:
|
747
|
+
let inner = &mut self.inner;
|
748
|
+
let (instance_limit, table_limit, memory_limit) = {
|
749
|
+
let l = limiter(&mut inner.data);
|
750
|
+
(l.instances(), l.tables(), l.memories())
|
751
|
+
};
|
752
|
+
let innermost = &mut inner.inner;
|
753
|
+
innermost.instance_limit = instance_limit;
|
754
|
+
innermost.table_limit = table_limit;
|
755
|
+
innermost.memory_limit = memory_limit;
|
756
|
+
|
757
|
+
// Save the limiter accessor function:
|
758
|
+
inner.limiter = Some(ResourceLimiterInner::Sync(Box::new(limiter)));
|
759
|
+
}
|
760
|
+
|
761
|
+
/// Configures the [`ResourceLimiterAsync`](crate::ResourceLimiterAsync)
|
762
|
+
/// used to limit resource creation within this [`Store`].
|
763
|
+
///
|
764
|
+
/// This method is an asynchronous variant of the [`Store::limiter`] method
|
765
|
+
/// where the embedder can block the wasm request for more resources with
|
766
|
+
/// host `async` execution of futures.
|
767
|
+
///
|
768
|
+
/// By using a [`ResourceLimiterAsync`](`crate::ResourceLimiterAsync`)
|
769
|
+
/// with a [`Store`], you can no longer use
|
770
|
+
/// [`Memory::new`](`crate::Memory::new`),
|
771
|
+
/// [`Memory::grow`](`crate::Memory::grow`),
|
772
|
+
/// [`Table::new`](`crate::Table::new`), and
|
773
|
+
/// [`Table::grow`](`crate::Table::grow`). Instead, you must use their
|
774
|
+
/// `async` variants: [`Memory::new_async`](`crate::Memory::new_async`),
|
775
|
+
/// [`Memory::grow_async`](`crate::Memory::grow_async`),
|
776
|
+
/// [`Table::new_async`](`crate::Table::new_async`), and
|
777
|
+
/// [`Table::grow_async`](`crate::Table::grow_async`).
|
778
|
+
///
|
779
|
+
/// Note that this limiter is only used to limit the creation/growth of
|
780
|
+
/// resources in the future, this does not retroactively attempt to apply
|
781
|
+
/// limits to the [`Store`]. Additionally this must be used with an async
|
782
|
+
/// [`Store`] configured via
|
783
|
+
/// [`Config::async_support`](crate::Config::async_support).
|
784
|
+
#[cfg(feature = "async")]
|
785
|
+
pub fn limiter_async(
|
786
|
+
&mut self,
|
787
|
+
mut limiter: impl FnMut(&mut T) -> &mut (dyn crate::ResourceLimiterAsync)
|
788
|
+
+ Send
|
789
|
+
+ Sync
|
790
|
+
+ 'static,
|
791
|
+
) {
|
792
|
+
debug_assert!(self.inner.async_support());
|
793
|
+
// Apply the limits on instances, tables, and memory given by the limiter:
|
794
|
+
let inner = &mut self.inner;
|
795
|
+
let (instance_limit, table_limit, memory_limit) = {
|
796
|
+
let l = limiter(&mut inner.data);
|
797
|
+
(l.instances(), l.tables(), l.memories())
|
798
|
+
};
|
799
|
+
let innermost = &mut inner.inner;
|
800
|
+
innermost.instance_limit = instance_limit;
|
801
|
+
innermost.table_limit = table_limit;
|
802
|
+
innermost.memory_limit = memory_limit;
|
803
|
+
|
804
|
+
// Save the limiter accessor function:
|
805
|
+
inner.limiter = Some(ResourceLimiterInner::Async(Box::new(limiter)));
|
806
|
+
}
|
807
|
+
|
808
|
+
/// Configures an async function that runs on calls and returns between
|
809
|
+
/// WebAssembly and host code. For the non-async equivalent of this method,
|
810
|
+
/// see [`Store::call_hook`].
|
811
|
+
///
|
812
|
+
/// The function is passed a [`CallHook`] argument, which indicates which
|
813
|
+
/// state transition the VM is making.
|
814
|
+
///
|
815
|
+
/// This function's future may return a [`Trap`]. If a trap is returned
|
816
|
+
/// when an import was called, it is immediately raised as-if the host
|
817
|
+
/// import had returned the trap. If a trap is returned after wasm returns
|
818
|
+
/// to the host then the wasm function's result is ignored and this trap is
|
819
|
+
/// returned instead.
|
820
|
+
///
|
821
|
+
/// After this function returns a trap, it may be called for subsequent
|
822
|
+
/// returns to host or wasm code as the trap propagates to the root call.
|
823
|
+
#[cfg(all(feature = "async", feature = "call-hook"))]
|
824
|
+
pub fn call_hook_async(&mut self, hook: impl CallHookHandler<T> + Send + Sync + 'static) {
|
825
|
+
self.inner.call_hook = Some(CallHookInner::Async(Box::new(hook)));
|
826
|
+
}
|
827
|
+
|
828
|
+
/// Configure a function that runs on calls and returns between WebAssembly
|
829
|
+
/// and host code.
|
830
|
+
///
|
831
|
+
/// The function is passed a [`CallHook`] argument, which indicates which
|
832
|
+
/// state transition the VM is making.
|
833
|
+
///
|
834
|
+
/// This function may return a [`Trap`]. If a trap is returned when an
|
835
|
+
/// import was called, it is immediately raised as-if the host import had
|
836
|
+
/// returned the trap. If a trap is returned after wasm returns to the host
|
837
|
+
/// then the wasm function's result is ignored and this trap is returned
|
838
|
+
/// instead.
|
839
|
+
///
|
840
|
+
/// After this function returns a trap, it may be called for subsequent returns
|
841
|
+
/// to host or wasm code as the trap propagates to the root call.
|
842
|
+
#[cfg(feature = "call-hook")]
|
843
|
+
pub fn call_hook(
|
844
|
+
&mut self,
|
845
|
+
hook: impl FnMut(StoreContextMut<'_, T>, CallHook) -> Result<()> + Send + Sync + 'static,
|
846
|
+
) {
|
847
|
+
self.inner.call_hook = Some(CallHookInner::Sync(Box::new(hook)));
|
848
|
+
}
|
849
|
+
|
850
|
+
/// Returns the [`Engine`] that this store is associated with.
|
851
|
+
pub fn engine(&self) -> &Engine {
|
852
|
+
self.inner.engine()
|
853
|
+
}
|
854
|
+
|
855
|
+
/// Perform garbage collection.
|
856
|
+
///
|
857
|
+
/// Note that it is not required to actively call this function. GC will
|
858
|
+
/// automatically happen according to various internal heuristics. This is
|
859
|
+
/// provided if fine-grained control over the GC is desired.
|
860
|
+
///
|
861
|
+
/// This method is only available when the `gc` Cargo feature is enabled.
|
862
|
+
#[cfg(feature = "gc")]
|
863
|
+
pub fn gc(&mut self) {
|
864
|
+
self.inner.gc()
|
865
|
+
}
|
866
|
+
|
867
|
+
/// Perform garbage collection asynchronously.
|
868
|
+
///
|
869
|
+
/// Note that it is not required to actively call this function. GC will
|
870
|
+
/// automatically happen according to various internal heuristics. This is
|
871
|
+
/// provided if fine-grained control over the GC is desired.
|
872
|
+
///
|
873
|
+
/// This method is only available when the `gc` Cargo feature is enabled.
|
874
|
+
#[cfg(all(feature = "async", feature = "gc"))]
|
875
|
+
pub async fn gc_async(&mut self)
|
876
|
+
where
|
877
|
+
T: Send,
|
878
|
+
{
|
879
|
+
self.inner.gc_async().await;
|
880
|
+
}
|
881
|
+
|
882
|
+
/// Returns the amount fuel in this [`Store`]. When fuel is enabled, it must
|
883
|
+
/// be configured via [`Store::set_fuel`].
|
884
|
+
///
|
885
|
+
/// # Errors
|
886
|
+
///
|
887
|
+
/// This function will return an error if fuel consumption is not enabled
|
888
|
+
/// via [`Config::consume_fuel`](crate::Config::consume_fuel).
|
889
|
+
pub fn get_fuel(&self) -> Result<u64> {
|
890
|
+
self.inner.get_fuel()
|
891
|
+
}
|
892
|
+
|
893
|
+
/// Set the fuel to this [`Store`] for wasm to consume while executing.
|
894
|
+
///
|
895
|
+
/// For this method to work fuel consumption must be enabled via
|
896
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel). By default a
|
897
|
+
/// [`Store`] starts with 0 fuel for wasm to execute with (meaning it will
|
898
|
+
/// immediately trap). This function must be called for the store to have
|
899
|
+
/// some fuel to allow WebAssembly to execute.
|
900
|
+
///
|
901
|
+
/// Most WebAssembly instructions consume 1 unit of fuel. Some
|
902
|
+
/// instructions, such as `nop`, `drop`, `block`, and `loop`, consume 0
|
903
|
+
/// units, as any execution cost associated with them involves other
|
904
|
+
/// instructions which do consume fuel.
|
905
|
+
///
|
906
|
+
/// Note that when fuel is entirely consumed it will cause wasm to trap.
|
907
|
+
///
|
908
|
+
/// # Errors
|
909
|
+
///
|
910
|
+
/// This function will return an error if fuel consumption is not enabled via
|
911
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel).
|
912
|
+
pub fn set_fuel(&mut self, fuel: u64) -> Result<()> {
|
913
|
+
self.inner.set_fuel(fuel)
|
914
|
+
}
|
915
|
+
|
916
|
+
/// Configures a [`Store`] to yield execution of async WebAssembly code
|
917
|
+
/// periodically.
|
918
|
+
///
|
919
|
+
/// When a [`Store`] is configured to consume fuel with
|
920
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel) this method will
|
921
|
+
/// configure WebAssembly to be suspended and control will be yielded back to the
|
922
|
+
/// caller every `interval` units of fuel consumed. This is only suitable with use of
|
923
|
+
/// a store associated with an [async config](crate::Config::async_support) because
|
924
|
+
/// only then are futures used and yields are possible.
|
925
|
+
///
|
926
|
+
/// The purpose of this behavior is to ensure that futures which represent
|
927
|
+
/// execution of WebAssembly do not execute too long inside their
|
928
|
+
/// `Future::poll` method. This allows for some form of cooperative
|
929
|
+
/// multitasking where WebAssembly will voluntarily yield control
|
930
|
+
/// periodically (based on fuel consumption) back to the running thread.
|
931
|
+
///
|
932
|
+
/// Note that futures returned by this crate will automatically flag
|
933
|
+
/// themselves to get re-polled if a yield happens. This means that
|
934
|
+
/// WebAssembly will continue to execute, just after giving the host an
|
935
|
+
/// opportunity to do something else.
|
936
|
+
///
|
937
|
+
/// The `interval` parameter indicates how much fuel should be
|
938
|
+
/// consumed between yields of an async future. When fuel runs out wasm will trap.
|
939
|
+
///
|
940
|
+
/// # Error
|
941
|
+
///
|
942
|
+
/// This method will error if it is not called on a store associated with an [async
|
943
|
+
/// config](crate::Config::async_support).
|
944
|
+
pub fn fuel_async_yield_interval(&mut self, interval: Option<u64>) -> Result<()> {
|
945
|
+
self.inner.fuel_async_yield_interval(interval)
|
946
|
+
}
|
947
|
+
|
948
|
+
/// Sets the epoch deadline to a certain number of ticks in the future.
|
949
|
+
///
|
950
|
+
/// When the Wasm guest code is compiled with epoch-interruption
|
951
|
+
/// instrumentation
|
952
|
+
/// ([`Config::epoch_interruption()`](crate::Config::epoch_interruption)),
|
953
|
+
/// and when the `Engine`'s epoch is incremented
|
954
|
+
/// ([`Engine::increment_epoch()`](crate::Engine::increment_epoch))
|
955
|
+
/// past a deadline, execution can be configured to either trap or
|
956
|
+
/// yield and then continue.
|
957
|
+
///
|
958
|
+
/// This deadline is always set relative to the current epoch:
|
959
|
+
/// `ticks_beyond_current` ticks in the future. The deadline can
|
960
|
+
/// be set explicitly via this method, or refilled automatically
|
961
|
+
/// on a yield if configured via
|
962
|
+
/// [`epoch_deadline_async_yield_and_update()`](Store::epoch_deadline_async_yield_and_update). After
|
963
|
+
/// this method is invoked, the deadline is reached when
|
964
|
+
/// [`Engine::increment_epoch()`] has been invoked at least
|
965
|
+
/// `ticks_beyond_current` times.
|
966
|
+
///
|
967
|
+
/// By default a store will trap immediately with an epoch deadline of 0
|
968
|
+
/// (which has always "elapsed"). This method is required to be configured
|
969
|
+
/// for stores with epochs enabled to some future epoch deadline.
|
970
|
+
///
|
971
|
+
/// See documentation on
|
972
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
973
|
+
/// for an introduction to epoch-based interruption.
|
974
|
+
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64) {
|
975
|
+
self.inner.set_epoch_deadline(ticks_beyond_current);
|
976
|
+
}
|
977
|
+
|
978
|
+
/// Configures epoch-deadline expiration to trap.
|
979
|
+
///
|
980
|
+
/// When epoch-interruption-instrumented code is executed on this
|
981
|
+
/// store and the epoch deadline is reached before completion,
|
982
|
+
/// with the store configured in this way, execution will
|
983
|
+
/// terminate with a trap as soon as an epoch check in the
|
984
|
+
/// instrumented code is reached.
|
985
|
+
///
|
986
|
+
/// This behavior is the default if the store is not otherwise
|
987
|
+
/// configured via
|
988
|
+
/// [`epoch_deadline_trap()`](Store::epoch_deadline_trap),
|
989
|
+
/// [`epoch_deadline_callback()`](Store::epoch_deadline_callback) or
|
990
|
+
/// [`epoch_deadline_async_yield_and_update()`](Store::epoch_deadline_async_yield_and_update).
|
991
|
+
///
|
992
|
+
/// This setting is intended to allow for coarse-grained
|
993
|
+
/// interruption, but not a deterministic deadline of a fixed,
|
994
|
+
/// finite interval. For deterministic interruption, see the
|
995
|
+
/// "fuel" mechanism instead.
|
996
|
+
///
|
997
|
+
/// Note that when this is used it's required to call
|
998
|
+
/// [`Store::set_epoch_deadline`] or otherwise wasm will always immediately
|
999
|
+
/// trap.
|
1000
|
+
///
|
1001
|
+
/// See documentation on
|
1002
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
1003
|
+
/// for an introduction to epoch-based interruption.
|
1004
|
+
pub fn epoch_deadline_trap(&mut self) {
|
1005
|
+
self.inner.epoch_deadline_trap();
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
/// Configures epoch-deadline expiration to invoke a custom callback
|
1009
|
+
/// function.
|
1010
|
+
///
|
1011
|
+
/// When epoch-interruption-instrumented code is executed on this
|
1012
|
+
/// store and the epoch deadline is reached before completion, the
|
1013
|
+
/// provided callback function is invoked.
|
1014
|
+
///
|
1015
|
+
/// This callback should either return an [`UpdateDeadline`], or
|
1016
|
+
/// return an error, which will terminate execution with a trap.
|
1017
|
+
///
|
1018
|
+
/// The [`UpdateDeadline`] is a positive number of ticks to
|
1019
|
+
/// add to the epoch deadline, as well as indicating what
|
1020
|
+
/// to do after the callback returns. If the [`Store`] is
|
1021
|
+
/// configured with async support, then the callback may return
|
1022
|
+
/// [`UpdateDeadline::Yield`] to yield to the async executor before
|
1023
|
+
/// updating the epoch deadline. Alternatively, the callback may
|
1024
|
+
/// return [`UpdateDeadline::Continue`] to update the epoch deadline
|
1025
|
+
/// immediately.
|
1026
|
+
///
|
1027
|
+
/// This setting is intended to allow for coarse-grained
|
1028
|
+
/// interruption, but not a deterministic deadline of a fixed,
|
1029
|
+
/// finite interval. For deterministic interruption, see the
|
1030
|
+
/// "fuel" mechanism instead.
|
1031
|
+
///
|
1032
|
+
/// See documentation on
|
1033
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
1034
|
+
/// for an introduction to epoch-based interruption.
|
1035
|
+
pub fn epoch_deadline_callback(
|
1036
|
+
&mut self,
|
1037
|
+
callback: impl FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync + 'static,
|
1038
|
+
) {
|
1039
|
+
self.inner.epoch_deadline_callback(Box::new(callback));
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
/// Configures epoch-deadline expiration to yield to the async
|
1043
|
+
/// caller and the update the deadline.
|
1044
|
+
///
|
1045
|
+
/// When epoch-interruption-instrumented code is executed on this
|
1046
|
+
/// store and the epoch deadline is reached before completion,
|
1047
|
+
/// with the store configured in this way, execution will yield
|
1048
|
+
/// (the future will return `Pending` but re-awake itself for
|
1049
|
+
/// later execution) and, upon resuming, the store will be
|
1050
|
+
/// configured with an epoch deadline equal to the current epoch
|
1051
|
+
/// plus `delta` ticks.
|
1052
|
+
///
|
1053
|
+
/// This setting is intended to allow for cooperative timeslicing
|
1054
|
+
/// of multiple CPU-bound Wasm guests in different stores, all
|
1055
|
+
/// executing under the control of an async executor. To drive
|
1056
|
+
/// this, stores should be configured to "yield and update"
|
1057
|
+
/// automatically with this function, and some external driver (a
|
1058
|
+
/// thread that wakes up periodically, or a timer
|
1059
|
+
/// signal/interrupt) should call
|
1060
|
+
/// [`Engine::increment_epoch()`](crate::Engine::increment_epoch).
|
1061
|
+
///
|
1062
|
+
/// See documentation on
|
1063
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
1064
|
+
/// for an introduction to epoch-based interruption.
|
1065
|
+
#[cfg(feature = "async")]
|
1066
|
+
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
1067
|
+
self.inner.epoch_deadline_async_yield_and_update(delta);
|
1068
|
+
}
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
impl<'a, T> StoreContext<'a, T> {
|
1072
|
+
pub(crate) fn async_support(&self) -> bool {
|
1073
|
+
self.0.async_support()
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
/// Returns the underlying [`Engine`] this store is connected to.
|
1077
|
+
pub fn engine(&self) -> &Engine {
|
1078
|
+
self.0.engine()
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/// Access the underlying data owned by this `Store`.
|
1082
|
+
///
|
1083
|
+
/// Same as [`Store::data`].
|
1084
|
+
pub fn data(&self) -> &'a T {
|
1085
|
+
self.0.data()
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
/// Returns the remaining fuel in this store.
|
1089
|
+
///
|
1090
|
+
/// For more information see [`Store::get_fuel`].
|
1091
|
+
pub fn get_fuel(&self) -> Result<u64> {
|
1092
|
+
self.0.get_fuel()
|
1093
|
+
}
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
impl<'a, T> StoreContextMut<'a, T> {
|
1097
|
+
/// Access the underlying data owned by this `Store`.
|
1098
|
+
///
|
1099
|
+
/// Same as [`Store::data`].
|
1100
|
+
pub fn data(&self) -> &T {
|
1101
|
+
self.0.data()
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
/// Access the underlying data owned by this `Store`.
|
1105
|
+
///
|
1106
|
+
/// Same as [`Store::data_mut`].
|
1107
|
+
pub fn data_mut(&mut self) -> &mut T {
|
1108
|
+
self.0.data_mut()
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
/// Returns the underlying [`Engine`] this store is connected to.
|
1112
|
+
pub fn engine(&self) -> &Engine {
|
1113
|
+
self.0.engine()
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
/// Perform garbage collection of `ExternRef`s.
|
1117
|
+
///
|
1118
|
+
/// Same as [`Store::gc`].
|
1119
|
+
///
|
1120
|
+
/// This method is only available when the `gc` Cargo feature is enabled.
|
1121
|
+
#[cfg(feature = "gc")]
|
1122
|
+
pub fn gc(&mut self) {
|
1123
|
+
self.0.gc()
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
/// Perform garbage collection of `ExternRef`s.
|
1127
|
+
///
|
1128
|
+
/// Same as [`Store::gc`].
|
1129
|
+
///
|
1130
|
+
/// This method is only available when the `gc` Cargo feature is enabled.
|
1131
|
+
#[cfg(all(feature = "async", feature = "gc"))]
|
1132
|
+
pub async fn gc_async(&mut self)
|
1133
|
+
where
|
1134
|
+
T: Send,
|
1135
|
+
{
|
1136
|
+
self.0.gc_async().await;
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
/// Returns remaining fuel in this store.
|
1140
|
+
///
|
1141
|
+
/// For more information see [`Store::get_fuel`]
|
1142
|
+
pub fn get_fuel(&self) -> Result<u64> {
|
1143
|
+
self.0.get_fuel()
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
/// Set the amount of fuel in this store.
|
1147
|
+
///
|
1148
|
+
/// For more information see [`Store::set_fuel`]
|
1149
|
+
pub fn set_fuel(&mut self, fuel: u64) -> Result<()> {
|
1150
|
+
self.0.set_fuel(fuel)
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
/// Configures this `Store` to periodically yield while executing futures.
|
1154
|
+
///
|
1155
|
+
/// For more information see [`Store::fuel_async_yield_interval`]
|
1156
|
+
pub fn fuel_async_yield_interval(&mut self, interval: Option<u64>) -> Result<()> {
|
1157
|
+
self.0.fuel_async_yield_interval(interval)
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
/// Sets the epoch deadline to a certain number of ticks in the future.
|
1161
|
+
///
|
1162
|
+
/// For more information see [`Store::set_epoch_deadline`].
|
1163
|
+
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64) {
|
1164
|
+
self.0.set_epoch_deadline(ticks_beyond_current);
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
/// Configures epoch-deadline expiration to trap.
|
1168
|
+
///
|
1169
|
+
/// For more information see [`Store::epoch_deadline_trap`].
|
1170
|
+
pub fn epoch_deadline_trap(&mut self) {
|
1171
|
+
self.0.epoch_deadline_trap();
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
/// Configures epoch-deadline expiration to yield to the async
|
1175
|
+
/// caller and the update the deadline.
|
1176
|
+
///
|
1177
|
+
/// For more information see
|
1178
|
+
/// [`Store::epoch_deadline_async_yield_and_update`].
|
1179
|
+
#[cfg(feature = "async")]
|
1180
|
+
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
1181
|
+
self.0.epoch_deadline_async_yield_and_update(delta);
|
1182
|
+
}
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
impl<T> StoreInner<T> {
|
1186
|
+
#[inline]
|
1187
|
+
fn data(&self) -> &T {
|
1188
|
+
&self.data
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
#[inline]
|
1192
|
+
fn data_mut(&mut self) -> &mut T {
|
1193
|
+
&mut self.data
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
#[inline]
|
1197
|
+
pub fn call_hook(&mut self, s: CallHook) -> Result<()> {
|
1198
|
+
if self.inner.pkey.is_none() && self.call_hook.is_none() {
|
1199
|
+
Ok(())
|
1200
|
+
} else {
|
1201
|
+
self.call_hook_slow_path(s)
|
1202
|
+
}
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
fn call_hook_slow_path(&mut self, s: CallHook) -> Result<()> {
|
1206
|
+
if let Some(pkey) = &self.inner.pkey {
|
1207
|
+
let allocator = self.engine().allocator();
|
1208
|
+
match s {
|
1209
|
+
CallHook::CallingWasm | CallHook::ReturningFromHost => {
|
1210
|
+
allocator.restrict_to_pkey(*pkey)
|
1211
|
+
}
|
1212
|
+
CallHook::ReturningFromWasm | CallHook::CallingHost => allocator.allow_all_pkeys(),
|
1213
|
+
}
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
// Temporarily take the configured behavior to avoid mutably borrowing
|
1217
|
+
// multiple times.
|
1218
|
+
#[cfg_attr(not(feature = "call-hook"), allow(unreachable_patterns))]
|
1219
|
+
if let Some(mut call_hook) = self.call_hook.take() {
|
1220
|
+
let result = self.invoke_call_hook(&mut call_hook, s);
|
1221
|
+
self.call_hook = Some(call_hook);
|
1222
|
+
return result;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
Ok(())
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
fn invoke_call_hook(&mut self, call_hook: &mut CallHookInner<T>, s: CallHook) -> Result<()> {
|
1229
|
+
match call_hook {
|
1230
|
+
#[cfg(feature = "call-hook")]
|
1231
|
+
CallHookInner::Sync(hook) => hook((&mut *self).as_context_mut(), s),
|
1232
|
+
|
1233
|
+
#[cfg(all(feature = "async", feature = "call-hook"))]
|
1234
|
+
CallHookInner::Async(handler) => unsafe {
|
1235
|
+
self.inner
|
1236
|
+
.async_cx()
|
1237
|
+
.ok_or_else(|| anyhow!("couldn't grab async_cx for call hook"))?
|
1238
|
+
.block_on(
|
1239
|
+
handler
|
1240
|
+
.handle_call_event((&mut *self).as_context_mut(), s)
|
1241
|
+
.as_mut(),
|
1242
|
+
)?
|
1243
|
+
},
|
1244
|
+
|
1245
|
+
CallHookInner::ForceTypeParameterToBeUsed { uninhabited, .. } => {
|
1246
|
+
let _ = s;
|
1247
|
+
match *uninhabited {}
|
1248
|
+
}
|
1249
|
+
}
|
1250
|
+
}
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
fn get_fuel(injected_fuel: i64, fuel_reserve: u64) -> u64 {
|
1254
|
+
fuel_reserve.saturating_add_signed(-injected_fuel)
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
// Add remaining fuel from the reserve into the active fuel if there is any left.
|
1258
|
+
fn refuel(
|
1259
|
+
injected_fuel: &mut i64,
|
1260
|
+
fuel_reserve: &mut u64,
|
1261
|
+
yield_interval: Option<NonZeroU64>,
|
1262
|
+
) -> bool {
|
1263
|
+
let fuel = get_fuel(*injected_fuel, *fuel_reserve);
|
1264
|
+
if fuel > 0 {
|
1265
|
+
set_fuel(injected_fuel, fuel_reserve, yield_interval, fuel);
|
1266
|
+
true
|
1267
|
+
} else {
|
1268
|
+
false
|
1269
|
+
}
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
fn set_fuel(
|
1273
|
+
injected_fuel: &mut i64,
|
1274
|
+
fuel_reserve: &mut u64,
|
1275
|
+
yield_interval: Option<NonZeroU64>,
|
1276
|
+
new_fuel_amount: u64,
|
1277
|
+
) {
|
1278
|
+
let interval = yield_interval.unwrap_or(NonZeroU64::MAX).get();
|
1279
|
+
// If we're yielding periodically we only store the "active" amount of fuel into consumed_ptr
|
1280
|
+
// for the VM to use.
|
1281
|
+
let injected = core::cmp::min(interval, new_fuel_amount);
|
1282
|
+
// Fuel in the VM is stored as an i64, so we have to cap the amount of fuel we inject into the
|
1283
|
+
// VM at once to be i64 range.
|
1284
|
+
let injected = core::cmp::min(injected, i64::MAX as u64);
|
1285
|
+
// Add whatever is left over after injection to the reserve for later use.
|
1286
|
+
*fuel_reserve = new_fuel_amount - injected;
|
1287
|
+
// Within the VM we increment to count fuel, so inject a negative amount. The VM will halt when
|
1288
|
+
// this counter is positive.
|
1289
|
+
*injected_fuel = -(injected as i64);
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
#[doc(hidden)]
|
1293
|
+
impl StoreOpaque {
|
1294
|
+
pub fn id(&self) -> StoreId {
|
1295
|
+
self.store_data.id()
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
pub fn bump_resource_counts(&mut self, module: &Module) -> Result<()> {
|
1299
|
+
fn bump(slot: &mut usize, max: usize, amt: usize, desc: &str) -> Result<()> {
|
1300
|
+
let new = slot.saturating_add(amt);
|
1301
|
+
if new > max {
|
1302
|
+
bail!(
|
1303
|
+
"resource limit exceeded: {} count too high at {}",
|
1304
|
+
desc,
|
1305
|
+
new
|
1306
|
+
);
|
1307
|
+
}
|
1308
|
+
*slot = new;
|
1309
|
+
Ok(())
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
let module = module.env_module();
|
1313
|
+
let memories = module.num_defined_memories();
|
1314
|
+
let tables = module.num_defined_tables();
|
1315
|
+
|
1316
|
+
bump(&mut self.instance_count, self.instance_limit, 1, "instance")?;
|
1317
|
+
bump(
|
1318
|
+
&mut self.memory_count,
|
1319
|
+
self.memory_limit,
|
1320
|
+
memories,
|
1321
|
+
"memory",
|
1322
|
+
)?;
|
1323
|
+
bump(&mut self.table_count, self.table_limit, tables, "table")?;
|
1324
|
+
|
1325
|
+
Ok(())
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
#[inline]
|
1329
|
+
pub fn async_support(&self) -> bool {
|
1330
|
+
cfg!(feature = "async") && self.engine().config().async_support
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
#[inline]
|
1334
|
+
pub fn engine(&self) -> &Engine {
|
1335
|
+
&self.engine
|
1336
|
+
}
|
1337
|
+
|
1338
|
+
#[inline]
|
1339
|
+
pub fn store_data(&self) -> &StoreData {
|
1340
|
+
&self.store_data
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
#[inline]
|
1344
|
+
pub fn store_data_mut(&mut self) -> &mut StoreData {
|
1345
|
+
&mut self.store_data
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
#[inline]
|
1349
|
+
pub(crate) fn modules(&self) -> &ModuleRegistry {
|
1350
|
+
&self.modules
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
#[inline]
|
1354
|
+
pub(crate) fn modules_mut(&mut self) -> &mut ModuleRegistry {
|
1355
|
+
&mut self.modules
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
pub(crate) fn func_refs(&mut self) -> &mut FuncRefs {
|
1359
|
+
&mut self.func_refs
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
pub(crate) fn fill_func_refs(&mut self) {
|
1363
|
+
self.func_refs.fill(&self.modules);
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
pub(crate) fn push_instance_pre_func_refs(&mut self, func_refs: Arc<[VMFuncRef]>) {
|
1367
|
+
self.func_refs.push_instance_pre_func_refs(func_refs);
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
pub(crate) fn host_globals(&mut self) -> &mut Vec<StoreBox<VMHostGlobalContext>> {
|
1371
|
+
&mut self.host_globals
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
pub fn module_for_instance(&self, instance: InstanceId) -> Option<&'_ Module> {
|
1375
|
+
match self.instances[instance.0].kind {
|
1376
|
+
StoreInstanceKind::Dummy => None,
|
1377
|
+
StoreInstanceKind::Real { module_id } => {
|
1378
|
+
let module = self
|
1379
|
+
.modules()
|
1380
|
+
.lookup_module_by_id(module_id)
|
1381
|
+
.expect("should always have a registered module for real instances");
|
1382
|
+
Some(module)
|
1383
|
+
}
|
1384
|
+
}
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
pub unsafe fn add_instance(
|
1388
|
+
&mut self,
|
1389
|
+
handle: InstanceHandle,
|
1390
|
+
module_id: RegisteredModuleId,
|
1391
|
+
) -> InstanceId {
|
1392
|
+
self.instances.push(StoreInstance {
|
1393
|
+
handle: handle.clone(),
|
1394
|
+
kind: StoreInstanceKind::Real { module_id },
|
1395
|
+
});
|
1396
|
+
InstanceId(self.instances.len() - 1)
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
/// Add a dummy instance that to the store.
|
1400
|
+
///
|
1401
|
+
/// These are instances that are just implementation details of something
|
1402
|
+
/// else (e.g. host-created memories that are not actually defined in any
|
1403
|
+
/// Wasm module) and therefore shouldn't show up in things like core dumps.
|
1404
|
+
pub unsafe fn add_dummy_instance(&mut self, handle: InstanceHandle) -> InstanceId {
|
1405
|
+
self.instances.push(StoreInstance {
|
1406
|
+
handle: handle.clone(),
|
1407
|
+
kind: StoreInstanceKind::Dummy,
|
1408
|
+
});
|
1409
|
+
InstanceId(self.instances.len() - 1)
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
pub fn instance(&self, id: InstanceId) -> &InstanceHandle {
|
1413
|
+
&self.instances[id.0].handle
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
pub fn instance_mut(&mut self, id: InstanceId) -> &mut InstanceHandle {
|
1417
|
+
&mut self.instances[id.0].handle
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
/// Get all instances (ignoring dummy instances) within this store.
|
1421
|
+
pub fn all_instances<'a>(&'a mut self) -> impl ExactSizeIterator<Item = Instance> + 'a {
|
1422
|
+
let instances = self
|
1423
|
+
.instances
|
1424
|
+
.iter()
|
1425
|
+
.enumerate()
|
1426
|
+
.filter_map(|(idx, inst)| {
|
1427
|
+
let id = InstanceId::from_index(idx);
|
1428
|
+
if let StoreInstanceKind::Dummy = inst.kind {
|
1429
|
+
None
|
1430
|
+
} else {
|
1431
|
+
Some(InstanceData::from_id(id))
|
1432
|
+
}
|
1433
|
+
})
|
1434
|
+
.collect::<Vec<_>>();
|
1435
|
+
instances
|
1436
|
+
.into_iter()
|
1437
|
+
.map(|i| Instance::from_wasmtime(i, self))
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
/// Get all memories (host- or Wasm-defined) within this store.
|
1441
|
+
pub fn all_memories<'a>(&'a mut self) -> impl Iterator<Item = Memory> + 'a {
|
1442
|
+
// NB: Host-created memories have dummy instances. Therefore, we can get
|
1443
|
+
// all memories in the store by iterating over all instances (including
|
1444
|
+
// dummy instances) and getting each of their defined memories.
|
1445
|
+
let mems = self
|
1446
|
+
.instances
|
1447
|
+
.iter_mut()
|
1448
|
+
.flat_map(|instance| instance.handle.defined_memories())
|
1449
|
+
.collect::<Vec<_>>();
|
1450
|
+
mems.into_iter()
|
1451
|
+
.map(|memory| unsafe { Memory::from_wasmtime_memory(memory, self) })
|
1452
|
+
}
|
1453
|
+
|
1454
|
+
/// Iterate over all tables (host- or Wasm-defined) within this store.
|
1455
|
+
pub fn for_each_table(&mut self, mut f: impl FnMut(&mut Self, Table)) {
|
1456
|
+
// NB: Host-created tables have dummy instances. Therefore, we can get
|
1457
|
+
// all memories in the store by iterating over all instances (including
|
1458
|
+
// dummy instances) and getting each of their defined memories.
|
1459
|
+
|
1460
|
+
struct TempTakeInstances<'a> {
|
1461
|
+
instances: Vec<StoreInstance>,
|
1462
|
+
store: &'a mut StoreOpaque,
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
impl<'a> TempTakeInstances<'a> {
|
1466
|
+
fn new(store: &'a mut StoreOpaque) -> Self {
|
1467
|
+
let instances = mem::take(&mut store.instances);
|
1468
|
+
Self { instances, store }
|
1469
|
+
}
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
impl Drop for TempTakeInstances<'_> {
|
1473
|
+
fn drop(&mut self) {
|
1474
|
+
assert!(self.store.instances.is_empty());
|
1475
|
+
self.store.instances = mem::take(&mut self.instances);
|
1476
|
+
}
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
let mut temp = TempTakeInstances::new(self);
|
1480
|
+
for instance in temp.instances.iter_mut() {
|
1481
|
+
for table in instance.handle.defined_tables() {
|
1482
|
+
let table = unsafe { Table::from_wasmtime_table(table, temp.store) };
|
1483
|
+
f(temp.store, table);
|
1484
|
+
}
|
1485
|
+
}
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
/// Iterate over all globals (host- or Wasm-defined) within this store.
|
1489
|
+
pub fn for_each_global(&mut self, mut f: impl FnMut(&mut Self, Global)) {
|
1490
|
+
struct TempTakeHostGlobalsAndInstances<'a> {
|
1491
|
+
host_globals: Vec<StoreBox<VMHostGlobalContext>>,
|
1492
|
+
instances: Vec<StoreInstance>,
|
1493
|
+
store: &'a mut StoreOpaque,
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
impl<'a> TempTakeHostGlobalsAndInstances<'a> {
|
1497
|
+
fn new(store: &'a mut StoreOpaque) -> Self {
|
1498
|
+
let host_globals = mem::take(&mut store.host_globals);
|
1499
|
+
let instances = mem::take(&mut store.instances);
|
1500
|
+
Self {
|
1501
|
+
host_globals,
|
1502
|
+
instances,
|
1503
|
+
store,
|
1504
|
+
}
|
1505
|
+
}
|
1506
|
+
}
|
1507
|
+
|
1508
|
+
impl Drop for TempTakeHostGlobalsAndInstances<'_> {
|
1509
|
+
fn drop(&mut self) {
|
1510
|
+
assert!(self.store.host_globals.is_empty());
|
1511
|
+
self.store.host_globals = mem::take(&mut self.host_globals);
|
1512
|
+
assert!(self.store.instances.is_empty());
|
1513
|
+
self.store.instances = mem::take(&mut self.instances);
|
1514
|
+
}
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
let mut temp = TempTakeHostGlobalsAndInstances::new(self);
|
1518
|
+
unsafe {
|
1519
|
+
// First enumerate all the host-created globals.
|
1520
|
+
for global in temp.host_globals.iter() {
|
1521
|
+
let export = ExportGlobal {
|
1522
|
+
definition: &mut (*global.get()).global as *mut _,
|
1523
|
+
vmctx: core::ptr::null_mut(),
|
1524
|
+
global: (*global.get()).ty.to_wasm_type(),
|
1525
|
+
};
|
1526
|
+
let global = Global::from_wasmtime_global(export, temp.store);
|
1527
|
+
f(temp.store, global);
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
// Then enumerate all instances' defined globals.
|
1531
|
+
for instance in temp.instances.iter_mut() {
|
1532
|
+
for (_, export) in instance.handle.defined_globals() {
|
1533
|
+
let global = Global::from_wasmtime_global(export, temp.store);
|
1534
|
+
f(temp.store, global);
|
1535
|
+
}
|
1536
|
+
}
|
1537
|
+
}
|
1538
|
+
}
|
1539
|
+
|
1540
|
+
#[cfg_attr(not(target_os = "linux"), allow(dead_code))] // not used on all platforms
|
1541
|
+
pub fn set_signal_handler(&mut self, handler: Option<SignalHandler>) {
|
1542
|
+
self.signal_handler = handler;
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
#[inline]
|
1546
|
+
pub fn runtime_limits(&self) -> &VMRuntimeLimits {
|
1547
|
+
&self.runtime_limits
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
#[inline(never)]
|
1551
|
+
pub(crate) fn allocate_gc_heap(&mut self) -> Result<()> {
|
1552
|
+
assert!(self.gc_store.is_none());
|
1553
|
+
let gc_store = allocate_gc_store(self.engine())?;
|
1554
|
+
self.gc_store = Some(gc_store);
|
1555
|
+
return Ok(());
|
1556
|
+
|
1557
|
+
#[cfg(feature = "gc")]
|
1558
|
+
fn allocate_gc_store(engine: &Engine) -> Result<GcStore> {
|
1559
|
+
ensure!(
|
1560
|
+
engine.features().gc_types(),
|
1561
|
+
"cannot allocate a GC store when GC is disabled at configuration time"
|
1562
|
+
);
|
1563
|
+
let (index, heap) = engine
|
1564
|
+
.allocator()
|
1565
|
+
.allocate_gc_heap(&**engine.gc_runtime()?)?;
|
1566
|
+
Ok(GcStore::new(index, heap))
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
#[cfg(not(feature = "gc"))]
|
1570
|
+
fn allocate_gc_store(_engine: &Engine) -> Result<GcStore> {
|
1571
|
+
bail!("cannot allocate a GC store: the `gc` feature was disabled at compile time")
|
1572
|
+
}
|
1573
|
+
}
|
1574
|
+
|
1575
|
+
#[inline]
|
1576
|
+
#[cfg(feature = "gc")]
|
1577
|
+
pub(crate) fn gc_store(&self) -> Result<&GcStore> {
|
1578
|
+
match &self.gc_store {
|
1579
|
+
Some(gc_store) => Ok(gc_store),
|
1580
|
+
None => bail!("GC heap not initialized yet"),
|
1581
|
+
}
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
#[inline]
|
1585
|
+
pub(crate) fn gc_store_mut(&mut self) -> Result<&mut GcStore> {
|
1586
|
+
if self.gc_store.is_none() {
|
1587
|
+
self.allocate_gc_heap()?;
|
1588
|
+
}
|
1589
|
+
Ok(self.unwrap_gc_store_mut())
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
/// If this store is configured with a GC heap, return a mutable reference
|
1593
|
+
/// to it. Otherwise, return `None`.
|
1594
|
+
#[inline]
|
1595
|
+
pub(crate) fn optional_gc_store_mut(&mut self) -> Result<Option<&mut GcStore>> {
|
1596
|
+
if cfg!(not(feature = "gc")) || !self.engine.features().gc_types() {
|
1597
|
+
Ok(None)
|
1598
|
+
} else {
|
1599
|
+
Ok(Some(self.gc_store_mut()?))
|
1600
|
+
}
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
#[inline]
|
1604
|
+
#[cfg(feature = "gc")]
|
1605
|
+
pub(crate) fn unwrap_gc_store(&self) -> &GcStore {
|
1606
|
+
self.gc_store
|
1607
|
+
.as_ref()
|
1608
|
+
.expect("attempted to access the store's GC heap before it has been allocated")
|
1609
|
+
}
|
1610
|
+
|
1611
|
+
#[inline]
|
1612
|
+
pub(crate) fn unwrap_gc_store_mut(&mut self) -> &mut GcStore {
|
1613
|
+
self.gc_store
|
1614
|
+
.as_mut()
|
1615
|
+
.expect("attempted to access the store's GC heap before it has been allocated")
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
#[inline]
|
1619
|
+
pub(crate) fn gc_roots(&self) -> &RootSet {
|
1620
|
+
&self.gc_roots
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
#[inline]
|
1624
|
+
pub(crate) fn gc_roots_mut(&mut self) -> &mut RootSet {
|
1625
|
+
&mut self.gc_roots
|
1626
|
+
}
|
1627
|
+
|
1628
|
+
#[inline]
|
1629
|
+
pub(crate) fn exit_gc_lifo_scope(&mut self, scope: usize) {
|
1630
|
+
self.gc_roots.exit_lifo_scope(self.gc_store.as_mut(), scope);
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
#[cfg(feature = "gc")]
|
1634
|
+
pub fn gc(&mut self) {
|
1635
|
+
// If the GC heap hasn't been initialized, there is nothing to collect.
|
1636
|
+
if self.gc_store.is_none() {
|
1637
|
+
return;
|
1638
|
+
}
|
1639
|
+
|
1640
|
+
log::trace!("============ Begin GC ===========");
|
1641
|
+
|
1642
|
+
// Take the GC roots out of `self` so we can borrow it mutably but still
|
1643
|
+
// call mutable methods on `self`.
|
1644
|
+
let mut roots = core::mem::take(&mut self.gc_roots_list);
|
1645
|
+
|
1646
|
+
self.trace_roots(&mut roots);
|
1647
|
+
self.unwrap_gc_store_mut().gc(unsafe { roots.iter() });
|
1648
|
+
|
1649
|
+
// Restore the GC roots for the next GC.
|
1650
|
+
roots.clear();
|
1651
|
+
self.gc_roots_list = roots;
|
1652
|
+
|
1653
|
+
log::trace!("============ End GC ===========");
|
1654
|
+
}
|
1655
|
+
|
1656
|
+
#[inline]
|
1657
|
+
#[cfg(not(feature = "gc"))]
|
1658
|
+
pub fn gc(&mut self) {
|
1659
|
+
// Nothing to collect.
|
1660
|
+
//
|
1661
|
+
// Note that this is *not* a public method, this is just defined for the
|
1662
|
+
// crate-internal `StoreOpaque` type. This is a convenience so that we
|
1663
|
+
// don't have to `cfg` every call site.
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
#[cfg(feature = "gc")]
|
1667
|
+
fn trace_roots(&mut self, gc_roots_list: &mut GcRootsList) {
|
1668
|
+
log::trace!("Begin trace GC roots");
|
1669
|
+
|
1670
|
+
// We shouldn't have any leftover, stale GC roots.
|
1671
|
+
assert!(gc_roots_list.is_empty());
|
1672
|
+
|
1673
|
+
self.trace_wasm_stack_roots(gc_roots_list);
|
1674
|
+
self.trace_vmctx_roots(gc_roots_list);
|
1675
|
+
self.trace_user_roots(gc_roots_list);
|
1676
|
+
|
1677
|
+
log::trace!("End trace GC roots")
|
1678
|
+
}
|
1679
|
+
|
1680
|
+
#[cfg(all(feature = "async", feature = "gc"))]
|
1681
|
+
pub async fn gc_async(&mut self) {
|
1682
|
+
assert!(
|
1683
|
+
self.async_support(),
|
1684
|
+
"cannot use `gc_async` without enabling async support in the config",
|
1685
|
+
);
|
1686
|
+
|
1687
|
+
// If the GC heap hasn't been initialized, there is nothing to collect.
|
1688
|
+
if self.gc_store.is_none() {
|
1689
|
+
return;
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
log::trace!("============ Begin Async GC ===========");
|
1693
|
+
|
1694
|
+
// Take the GC roots out of `self` so we can borrow it mutably but still
|
1695
|
+
// call mutable methods on `self`.
|
1696
|
+
let mut roots = std::mem::take(&mut self.gc_roots_list);
|
1697
|
+
|
1698
|
+
self.trace_roots_async(&mut roots).await;
|
1699
|
+
self.unwrap_gc_store_mut()
|
1700
|
+
.gc_async(unsafe { roots.iter() })
|
1701
|
+
.await;
|
1702
|
+
|
1703
|
+
// Restore the GC roots for the next GC.
|
1704
|
+
roots.clear();
|
1705
|
+
self.gc_roots_list = roots;
|
1706
|
+
|
1707
|
+
log::trace!("============ End Async GC ===========");
|
1708
|
+
}
|
1709
|
+
|
1710
|
+
#[inline]
|
1711
|
+
#[cfg(all(feature = "async", not(feature = "gc")))]
|
1712
|
+
pub async fn gc_async(&mut self) {
|
1713
|
+
// Nothing to collect.
|
1714
|
+
//
|
1715
|
+
// Note that this is *not* a public method, this is just defined for the
|
1716
|
+
// crate-internal `StoreOpaque` type. This is a convenience so that we
|
1717
|
+
// don't have to `cfg` every call site.
|
1718
|
+
}
|
1719
|
+
|
1720
|
+
#[cfg(all(feature = "async", feature = "gc"))]
|
1721
|
+
async fn trace_roots_async(&mut self, gc_roots_list: &mut GcRootsList) {
|
1722
|
+
use crate::runtime::vm::Yield;
|
1723
|
+
|
1724
|
+
log::trace!("Begin trace GC roots");
|
1725
|
+
|
1726
|
+
// We shouldn't have any leftover, stale GC roots.
|
1727
|
+
assert!(gc_roots_list.is_empty());
|
1728
|
+
|
1729
|
+
self.trace_wasm_stack_roots(gc_roots_list);
|
1730
|
+
Yield::new().await;
|
1731
|
+
self.trace_vmctx_roots(gc_roots_list);
|
1732
|
+
Yield::new().await;
|
1733
|
+
self.trace_user_roots(gc_roots_list);
|
1734
|
+
|
1735
|
+
log::trace!("End trace GC roots")
|
1736
|
+
}
|
1737
|
+
|
1738
|
+
#[cfg(feature = "gc")]
|
1739
|
+
fn trace_wasm_stack_roots(&mut self, gc_roots_list: &mut GcRootsList) {
|
1740
|
+
use crate::runtime::vm::SendSyncPtr;
|
1741
|
+
use core::ptr::NonNull;
|
1742
|
+
|
1743
|
+
log::trace!("Begin trace GC roots :: Wasm stack");
|
1744
|
+
|
1745
|
+
Backtrace::trace(self, |frame| {
|
1746
|
+
let pc = frame.pc();
|
1747
|
+
debug_assert!(pc != 0, "we should always get a valid PC for Wasm frames");
|
1748
|
+
|
1749
|
+
let fp = frame.fp() as *mut usize;
|
1750
|
+
debug_assert!(
|
1751
|
+
!fp.is_null(),
|
1752
|
+
"we should always get a valid frame pointer for Wasm frames"
|
1753
|
+
);
|
1754
|
+
|
1755
|
+
let module_info = self
|
1756
|
+
.modules()
|
1757
|
+
.lookup_module_by_pc(pc)
|
1758
|
+
.expect("should have module info for Wasm frame");
|
1759
|
+
|
1760
|
+
let stack_map = match module_info.lookup_stack_map(pc) {
|
1761
|
+
Some(sm) => sm,
|
1762
|
+
None => {
|
1763
|
+
log::trace!("No stack map for this Wasm frame");
|
1764
|
+
return core::ops::ControlFlow::Continue(());
|
1765
|
+
}
|
1766
|
+
};
|
1767
|
+
log::trace!(
|
1768
|
+
"We have a stack map that maps {} bytes in this Wasm frame",
|
1769
|
+
stack_map.frame_size()
|
1770
|
+
);
|
1771
|
+
|
1772
|
+
let sp = unsafe { stack_map.sp(fp) };
|
1773
|
+
for stack_slot in unsafe { stack_map.live_gc_refs(sp) } {
|
1774
|
+
let raw: u32 = unsafe { core::ptr::read(stack_slot) };
|
1775
|
+
log::trace!("Stack slot @ {stack_slot:p} = {raw:#x}");
|
1776
|
+
|
1777
|
+
let gc_ref = VMGcRef::from_raw_u32(raw);
|
1778
|
+
if gc_ref.is_some() {
|
1779
|
+
unsafe {
|
1780
|
+
gc_roots_list.add_wasm_stack_root(SendSyncPtr::new(
|
1781
|
+
NonNull::new(stack_slot).unwrap(),
|
1782
|
+
));
|
1783
|
+
}
|
1784
|
+
}
|
1785
|
+
}
|
1786
|
+
|
1787
|
+
core::ops::ControlFlow::Continue(())
|
1788
|
+
});
|
1789
|
+
|
1790
|
+
log::trace!("End trace GC roots :: Wasm stack");
|
1791
|
+
}
|
1792
|
+
|
1793
|
+
#[cfg(feature = "gc")]
|
1794
|
+
fn trace_vmctx_roots(&mut self, gc_roots_list: &mut GcRootsList) {
|
1795
|
+
log::trace!("Begin trace GC roots :: vmctx");
|
1796
|
+
self.for_each_global(|store, global| global.trace_root(store, gc_roots_list));
|
1797
|
+
self.for_each_table(|store, table| table.trace_roots(store, gc_roots_list));
|
1798
|
+
log::trace!("End trace GC roots :: vmctx");
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
#[cfg(feature = "gc")]
|
1802
|
+
fn trace_user_roots(&mut self, gc_roots_list: &mut GcRootsList) {
|
1803
|
+
log::trace!("Begin trace GC roots :: user");
|
1804
|
+
self.gc_roots.trace_roots(gc_roots_list);
|
1805
|
+
log::trace!("End trace GC roots :: user");
|
1806
|
+
}
|
1807
|
+
|
1808
|
+
/// Insert a host-allocated GC type into this store.
|
1809
|
+
///
|
1810
|
+
/// This makes it suitable for the embedder to allocate instances of this
|
1811
|
+
/// type in this store, and we don't have to worry about the type being
|
1812
|
+
/// reclaimed (since it is possible that none of the Wasm modules in this
|
1813
|
+
/// store are holding it alive).
|
1814
|
+
pub(crate) fn insert_gc_host_alloc_type(&mut self, ty: RegisteredType) {
|
1815
|
+
self.gc_host_alloc_types.insert(ty);
|
1816
|
+
}
|
1817
|
+
|
1818
|
+
/// Yields the async context, assuming that we are executing on a fiber and
|
1819
|
+
/// that fiber is not in the process of dying. This function will return
|
1820
|
+
/// None in the latter case (the fiber is dying), and panic if
|
1821
|
+
/// `async_support()` is false.
|
1822
|
+
#[cfg(feature = "async")]
|
1823
|
+
#[inline]
|
1824
|
+
pub fn async_cx(&self) -> Option<AsyncCx> {
|
1825
|
+
assert!(self.async_support());
|
1826
|
+
|
1827
|
+
let poll_cx_box_ptr = self.async_state.current_poll_cx.get();
|
1828
|
+
if poll_cx_box_ptr.is_null() {
|
1829
|
+
return None;
|
1830
|
+
}
|
1831
|
+
|
1832
|
+
let poll_cx_inner_ptr = unsafe { *poll_cx_box_ptr };
|
1833
|
+
if poll_cx_inner_ptr.future_context.is_null() {
|
1834
|
+
return None;
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
Some(AsyncCx {
|
1838
|
+
current_suspend: self.async_state.current_suspend.get(),
|
1839
|
+
current_poll_cx: unsafe { core::ptr::addr_of_mut!((*poll_cx_box_ptr).future_context) },
|
1840
|
+
track_pkey_context_switch: self.pkey.is_some(),
|
1841
|
+
})
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
pub fn get_fuel(&self) -> Result<u64> {
|
1845
|
+
anyhow::ensure!(
|
1846
|
+
self.engine().tunables().consume_fuel,
|
1847
|
+
"fuel is not configured in this store"
|
1848
|
+
);
|
1849
|
+
let injected_fuel = unsafe { *self.runtime_limits.fuel_consumed.get() };
|
1850
|
+
Ok(get_fuel(injected_fuel, self.fuel_reserve))
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
fn refuel(&mut self) -> bool {
|
1854
|
+
let injected_fuel = unsafe { &mut *self.runtime_limits.fuel_consumed.get() };
|
1855
|
+
refuel(
|
1856
|
+
injected_fuel,
|
1857
|
+
&mut self.fuel_reserve,
|
1858
|
+
self.fuel_yield_interval,
|
1859
|
+
)
|
1860
|
+
}
|
1861
|
+
|
1862
|
+
pub fn set_fuel(&mut self, fuel: u64) -> Result<()> {
|
1863
|
+
anyhow::ensure!(
|
1864
|
+
self.engine().tunables().consume_fuel,
|
1865
|
+
"fuel is not configured in this store"
|
1866
|
+
);
|
1867
|
+
let injected_fuel = unsafe { &mut *self.runtime_limits.fuel_consumed.get() };
|
1868
|
+
set_fuel(
|
1869
|
+
injected_fuel,
|
1870
|
+
&mut self.fuel_reserve,
|
1871
|
+
self.fuel_yield_interval,
|
1872
|
+
fuel,
|
1873
|
+
);
|
1874
|
+
Ok(())
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
pub fn fuel_async_yield_interval(&mut self, interval: Option<u64>) -> Result<()> {
|
1878
|
+
anyhow::ensure!(
|
1879
|
+
self.engine().tunables().consume_fuel,
|
1880
|
+
"fuel is not configured in this store"
|
1881
|
+
);
|
1882
|
+
anyhow::ensure!(
|
1883
|
+
self.engine().config().async_support,
|
1884
|
+
"async support is not configured in this store"
|
1885
|
+
);
|
1886
|
+
anyhow::ensure!(
|
1887
|
+
interval != Some(0),
|
1888
|
+
"fuel_async_yield_interval must not be 0"
|
1889
|
+
);
|
1890
|
+
self.fuel_yield_interval = interval.and_then(|i| NonZeroU64::new(i));
|
1891
|
+
// Reset the fuel active + reserve states by resetting the amount.
|
1892
|
+
self.set_fuel(self.get_fuel()?)
|
1893
|
+
}
|
1894
|
+
|
1895
|
+
/// Yields execution to the caller on out-of-gas or epoch interruption.
|
1896
|
+
///
|
1897
|
+
/// This only works on async futures and stores, and assumes that we're
|
1898
|
+
/// executing on a fiber. This will yield execution back to the caller once.
|
1899
|
+
#[cfg(feature = "async")]
|
1900
|
+
fn async_yield_impl(&mut self) -> Result<()> {
|
1901
|
+
use crate::runtime::vm::Yield;
|
1902
|
+
|
1903
|
+
let mut future = Yield::new();
|
1904
|
+
|
1905
|
+
// When control returns, we have a `Result<()>` passed
|
1906
|
+
// in from the host fiber. If this finished successfully then
|
1907
|
+
// we were resumed normally via a `poll`, so keep going. If
|
1908
|
+
// the future was dropped while we were yielded, then we need
|
1909
|
+
// to clean up this fiber. Do so by raising a trap which will
|
1910
|
+
// abort all wasm and get caught on the other side to clean
|
1911
|
+
// things up.
|
1912
|
+
unsafe {
|
1913
|
+
self.async_cx()
|
1914
|
+
.expect("attempted to pull async context during shutdown")
|
1915
|
+
.block_on(Pin::new_unchecked(&mut future))
|
1916
|
+
}
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
#[inline]
|
1920
|
+
pub fn signal_handler(&self) -> Option<*const SignalHandler> {
|
1921
|
+
let handler = self.signal_handler.as_ref()?;
|
1922
|
+
Some(handler)
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
#[inline]
|
1926
|
+
pub fn vmruntime_limits(&self) -> *mut VMRuntimeLimits {
|
1927
|
+
&self.runtime_limits as *const VMRuntimeLimits as *mut VMRuntimeLimits
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
#[inline]
|
1931
|
+
pub fn default_caller(&self) -> *mut VMContext {
|
1932
|
+
self.default_caller.vmctx()
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
#[inline]
|
1936
|
+
pub fn traitobj(&self) -> *mut dyn crate::runtime::vm::VMStore {
|
1937
|
+
self.default_caller.traitobj(self)
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
/// Takes the cached `Vec<Val>` stored internally across hostcalls to get
|
1941
|
+
/// used as part of calling the host in a `Func::new` method invocation.
|
1942
|
+
#[inline]
|
1943
|
+
pub fn take_hostcall_val_storage(&mut self) -> Vec<Val> {
|
1944
|
+
mem::take(&mut self.hostcall_val_storage)
|
1945
|
+
}
|
1946
|
+
|
1947
|
+
/// Restores the vector previously taken by `take_hostcall_val_storage`
|
1948
|
+
/// above back into the store, allowing it to be used in the future for the
|
1949
|
+
/// next wasm->host call.
|
1950
|
+
#[inline]
|
1951
|
+
pub fn save_hostcall_val_storage(&mut self, storage: Vec<Val>) {
|
1952
|
+
if storage.capacity() > self.hostcall_val_storage.capacity() {
|
1953
|
+
self.hostcall_val_storage = storage;
|
1954
|
+
}
|
1955
|
+
}
|
1956
|
+
|
1957
|
+
/// Same as `take_hostcall_val_storage`, but for the direction of the host
|
1958
|
+
/// calling wasm.
|
1959
|
+
#[inline]
|
1960
|
+
pub fn take_wasm_val_raw_storage(&mut self) -> Vec<ValRaw> {
|
1961
|
+
mem::take(&mut self.wasm_val_raw_storage)
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
/// Same as `save_hostcall_val_storage`, but for the direction of the host
|
1965
|
+
/// calling wasm.
|
1966
|
+
#[inline]
|
1967
|
+
pub fn save_wasm_val_raw_storage(&mut self, storage: Vec<ValRaw>) {
|
1968
|
+
if storage.capacity() > self.wasm_val_raw_storage.capacity() {
|
1969
|
+
self.wasm_val_raw_storage = storage;
|
1970
|
+
}
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
pub(crate) fn push_rooted_funcs(&mut self, funcs: Arc<[Definition]>) {
|
1974
|
+
self.rooted_host_funcs.push(funcs);
|
1975
|
+
}
|
1976
|
+
|
1977
|
+
/// Translates a WebAssembly fault at the native `pc` and native `addr` to a
|
1978
|
+
/// WebAssembly-relative fault.
|
1979
|
+
///
|
1980
|
+
/// This function may abort the process if `addr` is not found to actually
|
1981
|
+
/// reside in any linear memory. In such a situation it means that the
|
1982
|
+
/// segfault was erroneously caught by Wasmtime and is possibly indicative
|
1983
|
+
/// of a code generator bug.
|
1984
|
+
///
|
1985
|
+
/// This function returns `None` for dynamically-bounds-checked-memories
|
1986
|
+
/// with spectre mitigations enabled since the hardware fault address is
|
1987
|
+
/// always zero in these situations which means that the trapping context
|
1988
|
+
/// doesn't have enough information to report the fault address.
|
1989
|
+
pub(crate) fn wasm_fault(
|
1990
|
+
&self,
|
1991
|
+
pc: usize,
|
1992
|
+
addr: usize,
|
1993
|
+
) -> Option<crate::runtime::vm::WasmFault> {
|
1994
|
+
// There are a few instances where a "close to zero" pointer is loaded
|
1995
|
+
// and we expect that to happen:
|
1996
|
+
//
|
1997
|
+
// * Explicitly bounds-checked memories with spectre-guards enabled will
|
1998
|
+
// cause out-of-bounds accesses to get routed to address 0, so allow
|
1999
|
+
// wasm instructions to fault on the null address.
|
2000
|
+
// * `call_indirect` when invoking a null function pointer may load data
|
2001
|
+
// from the a `VMFuncRef` whose address is null, meaning any field of
|
2002
|
+
// `VMFuncRef` could be the address of the fault.
|
2003
|
+
//
|
2004
|
+
// In these situations where the address is so small it won't be in any
|
2005
|
+
// instance, so skip the checks below.
|
2006
|
+
if addr <= mem::size_of::<VMFuncRef>() {
|
2007
|
+
const _: () = {
|
2008
|
+
// static-assert that `VMFuncRef` isn't too big to ensure that
|
2009
|
+
// it lives solely within the first page as we currently only
|
2010
|
+
// have the guarantee that the first page of memory is unmapped,
|
2011
|
+
// no more.
|
2012
|
+
assert!(mem::size_of::<VMFuncRef>() <= 512);
|
2013
|
+
};
|
2014
|
+
return None;
|
2015
|
+
}
|
2016
|
+
|
2017
|
+
// Search all known instances in this store for this address. Note that
|
2018
|
+
// this is probably not the speediest way to do this. Traps, however,
|
2019
|
+
// are generally not expected to be super fast and additionally stores
|
2020
|
+
// probably don't have all that many instances or memories.
|
2021
|
+
//
|
2022
|
+
// If this loop becomes hot in the future, however, it should be
|
2023
|
+
// possible to precompute maps about linear memories in a store and have
|
2024
|
+
// a quicker lookup.
|
2025
|
+
let mut fault = None;
|
2026
|
+
for instance in self.instances.iter() {
|
2027
|
+
if let Some(f) = instance.handle.wasm_fault(addr) {
|
2028
|
+
assert!(fault.is_none());
|
2029
|
+
fault = Some(f);
|
2030
|
+
}
|
2031
|
+
}
|
2032
|
+
if fault.is_some() {
|
2033
|
+
return fault;
|
2034
|
+
}
|
2035
|
+
|
2036
|
+
cfg_if::cfg_if! {
|
2037
|
+
if #[cfg(any(feature = "std", unix, windows))] {
|
2038
|
+
// With the standard library a rich error can be printed here
|
2039
|
+
// to stderr and the native abort path is used.
|
2040
|
+
eprintln!(
|
2041
|
+
"\
|
2042
|
+
Wasmtime caught a segfault for a wasm program because the faulting instruction
|
2043
|
+
is allowed to segfault due to how linear memories are implemented. The address
|
2044
|
+
that was accessed, however, is not known to any linear memory in use within this
|
2045
|
+
Store. This may be indicative of a critical bug in Wasmtime's code generation
|
2046
|
+
because all addresses which are known to be reachable from wasm won't reach this
|
2047
|
+
message.
|
2048
|
+
|
2049
|
+
pc: 0x{pc:x}
|
2050
|
+
address: 0x{addr:x}
|
2051
|
+
|
2052
|
+
This is a possible security issue because WebAssembly has accessed something it
|
2053
|
+
shouldn't have been able to. Other accesses may have succeeded and this one just
|
2054
|
+
happened to be caught. The process will now be aborted to prevent this damage
|
2055
|
+
from going any further and to alert what's going on. If this is a security
|
2056
|
+
issue please reach out to the Wasmtime team via its security policy
|
2057
|
+
at https://bytecodealliance.org/security.
|
2058
|
+
"
|
2059
|
+
);
|
2060
|
+
std::process::abort();
|
2061
|
+
} else if #[cfg(panic = "abort")] {
|
2062
|
+
// Without the standard library but with `panic=abort` then
|
2063
|
+
// it's safe to panic as that's known to halt execution. For
|
2064
|
+
// now avoid the above error message as well since without
|
2065
|
+
// `std` it's probably best to be a bit more size-conscious.
|
2066
|
+
let _ = pc;
|
2067
|
+
panic!("invalid fault");
|
2068
|
+
} else {
|
2069
|
+
// Without `std` and with `panic = "unwind"` there's no way to
|
2070
|
+
// abort the process portably, so flag a compile time error.
|
2071
|
+
//
|
2072
|
+
// NB: if this becomes a problem in the future one option would
|
2073
|
+
// be to extend the `capi.rs` module for no_std platforms, but
|
2074
|
+
// it remains yet to be seen at this time if this is hit much.
|
2075
|
+
compile_error!("either `std` or `panic=abort` must be enabled");
|
2076
|
+
None
|
2077
|
+
}
|
2078
|
+
}
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
/// Retrieve the store's protection key.
|
2082
|
+
#[inline]
|
2083
|
+
pub(crate) fn get_pkey(&self) -> Option<ProtectionKey> {
|
2084
|
+
self.pkey
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
#[inline]
|
2088
|
+
#[cfg(feature = "component-model")]
|
2089
|
+
pub(crate) fn component_resource_state(
|
2090
|
+
&mut self,
|
2091
|
+
) -> (
|
2092
|
+
&mut crate::runtime::vm::component::CallContexts,
|
2093
|
+
&mut crate::runtime::vm::component::ResourceTable,
|
2094
|
+
&mut crate::component::HostResourceData,
|
2095
|
+
) {
|
2096
|
+
(
|
2097
|
+
&mut self.component_calls,
|
2098
|
+
&mut self.component_host_table,
|
2099
|
+
&mut self.host_resource_data,
|
2100
|
+
)
|
2101
|
+
}
|
2102
|
+
|
2103
|
+
#[cfg(feature = "component-model")]
|
2104
|
+
pub(crate) fn push_component_instance(&mut self, instance: crate::component::Instance) {
|
2105
|
+
// We don't actually need the instance itself right now, but it seems
|
2106
|
+
// like something we will almost certainly eventually want to keep
|
2107
|
+
// around, so force callers to provide it.
|
2108
|
+
let _ = instance;
|
2109
|
+
|
2110
|
+
self.num_component_instances += 1;
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
pub(crate) fn async_guard_range(&self) -> Range<*mut u8> {
|
2114
|
+
#[cfg(feature = "async")]
|
2115
|
+
unsafe {
|
2116
|
+
let ptr = self.async_state.current_poll_cx.get();
|
2117
|
+
(*ptr).guard_range_start..(*ptr).guard_range_end
|
2118
|
+
}
|
2119
|
+
#[cfg(not(feature = "async"))]
|
2120
|
+
{
|
2121
|
+
core::ptr::null_mut()..core::ptr::null_mut()
|
2122
|
+
}
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
#[cfg(feature = "async")]
|
2126
|
+
fn allocate_fiber_stack(&mut self) -> Result<wasmtime_fiber::FiberStack> {
|
2127
|
+
if let Some(stack) = self.async_state.last_fiber_stack.take() {
|
2128
|
+
return Ok(stack);
|
2129
|
+
}
|
2130
|
+
self.engine().allocator().allocate_fiber_stack()
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
#[cfg(feature = "async")]
|
2134
|
+
fn deallocate_fiber_stack(&mut self, stack: wasmtime_fiber::FiberStack) {
|
2135
|
+
self.flush_fiber_stack();
|
2136
|
+
self.async_state.last_fiber_stack = Some(stack);
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
/// Releases the last fiber stack to the underlying instance allocator, if
|
2140
|
+
/// present.
|
2141
|
+
fn flush_fiber_stack(&mut self) {
|
2142
|
+
#[cfg(feature = "async")]
|
2143
|
+
if let Some(stack) = self.async_state.last_fiber_stack.take() {
|
2144
|
+
unsafe {
|
2145
|
+
self.engine.allocator().deallocate_fiber_stack(stack);
|
2146
|
+
}
|
2147
|
+
}
|
2148
|
+
}
|
2149
|
+
|
2150
|
+
pub(crate) fn interpreter(&mut self) -> Option<InterpreterRef<'_>> {
|
2151
|
+
let i = self.interpreter.as_mut()?;
|
2152
|
+
Some(i.as_interpreter_ref())
|
2153
|
+
}
|
2154
|
+
|
2155
|
+
pub(crate) fn unwinder(&self) -> &'static dyn Unwind {
|
2156
|
+
if self.interpreter.is_some() {
|
2157
|
+
&UnwindPulley
|
2158
|
+
} else {
|
2159
|
+
&UnwindHost
|
2160
|
+
}
|
2161
|
+
}
|
2162
|
+
}
|
2163
|
+
|
2164
|
+
impl<T> StoreContextMut<'_, T> {
|
2165
|
+
/// Executes a synchronous computation `func` asynchronously on a new fiber.
|
2166
|
+
///
|
2167
|
+
/// This function will convert the synchronous `func` into an asynchronous
|
2168
|
+
/// future. This is done by running `func` in a fiber on a separate native
|
2169
|
+
/// stack which can be suspended and resumed from.
|
2170
|
+
///
|
2171
|
+
/// Most of the nitty-gritty here is how we juggle the various contexts
|
2172
|
+
/// necessary to suspend the fiber later on and poll sub-futures. It's hoped
|
2173
|
+
/// that the various comments are illuminating as to what's going on here.
|
2174
|
+
#[cfg(feature = "async")]
|
2175
|
+
pub(crate) async fn on_fiber<R>(
|
2176
|
+
&mut self,
|
2177
|
+
func: impl FnOnce(&mut StoreContextMut<'_, T>) -> R + Send,
|
2178
|
+
) -> Result<R>
|
2179
|
+
where
|
2180
|
+
T: Send,
|
2181
|
+
{
|
2182
|
+
let config = self.engine().config();
|
2183
|
+
debug_assert!(self.0.async_support());
|
2184
|
+
debug_assert!(config.async_stack_size > 0);
|
2185
|
+
|
2186
|
+
let mut slot = None;
|
2187
|
+
let mut future = {
|
2188
|
+
let current_poll_cx = self.0.async_state.current_poll_cx.get();
|
2189
|
+
let current_suspend = self.0.async_state.current_suspend.get();
|
2190
|
+
let stack = self.0.allocate_fiber_stack()?;
|
2191
|
+
|
2192
|
+
let engine = self.engine().clone();
|
2193
|
+
let slot = &mut slot;
|
2194
|
+
let this = &mut *self;
|
2195
|
+
let fiber = wasmtime_fiber::Fiber::new(stack, move |keep_going, suspend| {
|
2196
|
+
// First check and see if we were interrupted/dropped, and only
|
2197
|
+
// continue if we haven't been.
|
2198
|
+
keep_going?;
|
2199
|
+
|
2200
|
+
// Configure our store's suspension context for the rest of the
|
2201
|
+
// execution of this fiber. Note that a raw pointer is stored here
|
2202
|
+
// which is only valid for the duration of this closure.
|
2203
|
+
// Consequently we at least replace it with the previous value when
|
2204
|
+
// we're done. This reset is also required for correctness because
|
2205
|
+
// otherwise our value will overwrite another active fiber's value.
|
2206
|
+
// There should be a test that segfaults in `async_functions.rs` if
|
2207
|
+
// this `Replace` is removed.
|
2208
|
+
unsafe {
|
2209
|
+
let _reset = Reset(current_suspend, *current_suspend);
|
2210
|
+
*current_suspend = suspend;
|
2211
|
+
|
2212
|
+
*slot = Some(func(this));
|
2213
|
+
Ok(())
|
2214
|
+
}
|
2215
|
+
})?;
|
2216
|
+
|
2217
|
+
// Once we have the fiber representing our synchronous computation, we
|
2218
|
+
// wrap that in a custom future implementation which does the
|
2219
|
+
// translation from the future protocol to our fiber API.
|
2220
|
+
FiberFuture {
|
2221
|
+
fiber: Some(fiber),
|
2222
|
+
current_poll_cx,
|
2223
|
+
engine,
|
2224
|
+
state: Some(crate::runtime::vm::AsyncWasmCallState::new()),
|
2225
|
+
}
|
2226
|
+
};
|
2227
|
+
(&mut future).await?;
|
2228
|
+
let stack = future.fiber.take().map(|f| f.into_stack());
|
2229
|
+
drop(future);
|
2230
|
+
if let Some(stack) = stack {
|
2231
|
+
self.0.deallocate_fiber_stack(stack);
|
2232
|
+
}
|
2233
|
+
|
2234
|
+
return Ok(slot.unwrap());
|
2235
|
+
|
2236
|
+
struct FiberFuture<'a> {
|
2237
|
+
fiber: Option<wasmtime_fiber::Fiber<'a, Result<()>, (), Result<()>>>,
|
2238
|
+
current_poll_cx: *mut PollContext,
|
2239
|
+
engine: Engine,
|
2240
|
+
// See comments in `FiberFuture::resume` for this
|
2241
|
+
state: Option<crate::runtime::vm::AsyncWasmCallState>,
|
2242
|
+
}
|
2243
|
+
|
2244
|
+
// This is surely the most dangerous `unsafe impl Send` in the entire
|
2245
|
+
// crate. There are two members in `FiberFuture` which cause it to not
|
2246
|
+
// be `Send`. One is `current_poll_cx` and is entirely uninteresting.
|
2247
|
+
// This is just used to manage `Context` pointers across `await` points
|
2248
|
+
// in the future, and requires raw pointers to get it to happen easily.
|
2249
|
+
// Nothing too weird about the `Send`-ness, values aren't actually
|
2250
|
+
// crossing threads.
|
2251
|
+
//
|
2252
|
+
// The really interesting piece is `fiber`. Now the "fiber" here is
|
2253
|
+
// actual honest-to-god Rust code which we're moving around. What we're
|
2254
|
+
// doing is the equivalent of moving our thread's stack to another OS
|
2255
|
+
// thread. Turns out we, in general, have no idea what's on the stack
|
2256
|
+
// and would generally have no way to verify that this is actually safe
|
2257
|
+
// to do!
|
2258
|
+
//
|
2259
|
+
// Thankfully, though, Wasmtime has the power. Without being glib it's
|
2260
|
+
// actually worth examining what's on the stack. It's unfortunately not
|
2261
|
+
// super-local to this function itself. Our closure to `Fiber::new` runs
|
2262
|
+
// `func`, which is given to us from the outside. Thankfully, though, we
|
2263
|
+
// have tight control over this. Usage of `on_fiber` is typically done
|
2264
|
+
// *just* before entering WebAssembly itself, so we'll have a few stack
|
2265
|
+
// frames of Rust code (all in Wasmtime itself) before we enter wasm.
|
2266
|
+
//
|
2267
|
+
// Once we've entered wasm, well then we have a whole bunch of wasm
|
2268
|
+
// frames on the stack. We've got this nifty thing called Cranelift,
|
2269
|
+
// though, which allows us to also have complete control over everything
|
2270
|
+
// on the stack!
|
2271
|
+
//
|
2272
|
+
// Finally, when wasm switches back to the fiber's starting pointer
|
2273
|
+
// (this future we're returning) then it means wasm has reentered Rust.
|
2274
|
+
// Suspension can only happen via the `block_on` function of an
|
2275
|
+
// `AsyncCx`. This, conveniently, also happens entirely in Wasmtime
|
2276
|
+
// controlled code!
|
2277
|
+
//
|
2278
|
+
// There's an extremely important point that should be called out here.
|
2279
|
+
// User-provided futures **are not on the stack** during suspension
|
2280
|
+
// points. This is extremely crucial because we in general cannot reason
|
2281
|
+
// about Send/Sync for stack-local variables since rustc doesn't analyze
|
2282
|
+
// them at all. With our construction, though, we are guaranteed that
|
2283
|
+
// Wasmtime owns all stack frames between the stack of a fiber and when
|
2284
|
+
// the fiber suspends (and it could move across threads). At this time
|
2285
|
+
// the only user-provided piece of data on the stack is the future
|
2286
|
+
// itself given to us. Lo-and-behold as you might notice the future is
|
2287
|
+
// required to be `Send`!
|
2288
|
+
//
|
2289
|
+
// What this all boils down to is that we, as the authors of Wasmtime,
|
2290
|
+
// need to be extremely careful that on the async fiber stack we only
|
2291
|
+
// store Send things. For example we can't start using `Rc` willy nilly
|
2292
|
+
// by accident and leave a copy in TLS somewhere. (similarly we have to
|
2293
|
+
// be ready for TLS to change while we're executing wasm code between
|
2294
|
+
// suspension points).
|
2295
|
+
//
|
2296
|
+
// While somewhat onerous it shouldn't be too too hard (the TLS bit is
|
2297
|
+
// the hardest bit so far). This does mean, though, that no user should
|
2298
|
+
// ever have to worry about the `Send`-ness of Wasmtime. If rustc says
|
2299
|
+
// it's ok, then it's ok.
|
2300
|
+
//
|
2301
|
+
// With all that in mind we unsafely assert here that wasmtime is
|
2302
|
+
// correct. We declare the fiber as only containing Send data on its
|
2303
|
+
// stack, despite not knowing for sure at compile time that this is
|
2304
|
+
// correct. That's what `unsafe` in Rust is all about, though, right?
|
2305
|
+
unsafe impl Send for FiberFuture<'_> {}
|
2306
|
+
|
2307
|
+
impl FiberFuture<'_> {
|
2308
|
+
fn fiber(&self) -> &wasmtime_fiber::Fiber<'_, Result<()>, (), Result<()>> {
|
2309
|
+
self.fiber.as_ref().unwrap()
|
2310
|
+
}
|
2311
|
+
|
2312
|
+
/// This is a helper function to call `resume` on the underlying
|
2313
|
+
/// fiber while correctly managing Wasmtime's thread-local data.
|
2314
|
+
///
|
2315
|
+
/// Wasmtime's implementation of traps leverages thread-local data
|
2316
|
+
/// to get access to metadata during a signal. This thread-local
|
2317
|
+
/// data is a linked list of "activations" where the nodes of the
|
2318
|
+
/// linked list are stored on the stack. It would be invalid as a
|
2319
|
+
/// result to suspend a computation with the head of the linked list
|
2320
|
+
/// on this stack then move the stack to another thread and resume
|
2321
|
+
/// it. That means that a different thread would point to our stack
|
2322
|
+
/// and our thread doesn't point to our stack at all!
|
2323
|
+
///
|
2324
|
+
/// Basically management of TLS is required here one way or another.
|
2325
|
+
/// The strategy currently settled on is to manage the list of
|
2326
|
+
/// activations created by this fiber as a unit. When a fiber
|
2327
|
+
/// resumes the linked list is prepended to the current thread's
|
2328
|
+
/// list. When the fiber is suspended then the fiber's list of
|
2329
|
+
/// activations are all removed en-masse and saved within the fiber.
|
2330
|
+
fn resume(&mut self, val: Result<()>) -> Result<Result<()>, ()> {
|
2331
|
+
unsafe {
|
2332
|
+
let prev = self.state.take().unwrap().push();
|
2333
|
+
let restore = Restore {
|
2334
|
+
fiber: self,
|
2335
|
+
state: Some(prev),
|
2336
|
+
};
|
2337
|
+
return restore.fiber.fiber().resume(val);
|
2338
|
+
}
|
2339
|
+
|
2340
|
+
struct Restore<'a, 'b> {
|
2341
|
+
fiber: &'a mut FiberFuture<'b>,
|
2342
|
+
state: Option<crate::runtime::vm::PreviousAsyncWasmCallState>,
|
2343
|
+
}
|
2344
|
+
|
2345
|
+
impl Drop for Restore<'_, '_> {
|
2346
|
+
fn drop(&mut self) {
|
2347
|
+
unsafe {
|
2348
|
+
self.fiber.state = Some(self.state.take().unwrap().restore());
|
2349
|
+
}
|
2350
|
+
}
|
2351
|
+
}
|
2352
|
+
}
|
2353
|
+
}
|
2354
|
+
|
2355
|
+
impl Future for FiberFuture<'_> {
|
2356
|
+
type Output = Result<()>;
|
2357
|
+
|
2358
|
+
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
2359
|
+
// We need to carry over this `cx` into our fiber's runtime
|
2360
|
+
// for when it tries to poll sub-futures that are created. Doing
|
2361
|
+
// this must be done unsafely, however, since `cx` is only alive
|
2362
|
+
// for this one singular function call. Here we do a `transmute`
|
2363
|
+
// to extend the lifetime of `Context` so it can be stored in
|
2364
|
+
// our `Store`, and then we replace the current polling context
|
2365
|
+
// with this one.
|
2366
|
+
//
|
2367
|
+
// Note that the replace is done for weird situations where
|
2368
|
+
// futures might be switching contexts and there's multiple
|
2369
|
+
// wasmtime futures in a chain of futures.
|
2370
|
+
//
|
2371
|
+
// On exit from this function, though, we reset the polling
|
2372
|
+
// context back to what it was to signify that `Store` no longer
|
2373
|
+
// has access to this pointer.
|
2374
|
+
let guard = self
|
2375
|
+
.fiber()
|
2376
|
+
.stack()
|
2377
|
+
.guard_range()
|
2378
|
+
.unwrap_or(core::ptr::null_mut()..core::ptr::null_mut());
|
2379
|
+
unsafe {
|
2380
|
+
let _reset = Reset(self.current_poll_cx, *self.current_poll_cx);
|
2381
|
+
*self.current_poll_cx = PollContext {
|
2382
|
+
future_context: core::mem::transmute::<
|
2383
|
+
&mut Context<'_>,
|
2384
|
+
*mut Context<'static>,
|
2385
|
+
>(cx),
|
2386
|
+
guard_range_start: guard.start,
|
2387
|
+
guard_range_end: guard.end,
|
2388
|
+
};
|
2389
|
+
|
2390
|
+
// After that's set up we resume execution of the fiber, which
|
2391
|
+
// may also start the fiber for the first time. This either
|
2392
|
+
// returns `Ok` saying the fiber finished (yay!) or it
|
2393
|
+
// returns `Err` with the payload passed to `suspend`, which
|
2394
|
+
// in our case is `()`.
|
2395
|
+
match self.resume(Ok(())) {
|
2396
|
+
Ok(result) => Poll::Ready(result),
|
2397
|
+
|
2398
|
+
// If `Err` is returned that means the fiber polled a
|
2399
|
+
// future but it said "Pending", so we propagate that
|
2400
|
+
// here.
|
2401
|
+
//
|
2402
|
+
// An additional safety check is performed when leaving
|
2403
|
+
// this function to help bolster the guarantees of
|
2404
|
+
// `unsafe impl Send` above. Notably this future may get
|
2405
|
+
// re-polled on a different thread. Wasmtime's
|
2406
|
+
// thread-local state points to the stack, however,
|
2407
|
+
// meaning that it would be incorrect to leave a pointer
|
2408
|
+
// in TLS when this function returns. This function
|
2409
|
+
// performs a runtime assert to verify that this is the
|
2410
|
+
// case, notably that the one TLS pointer Wasmtime uses
|
2411
|
+
// is not pointing anywhere within the stack. If it is
|
2412
|
+
// then that's a bug indicating that TLS management in
|
2413
|
+
// Wasmtime is incorrect.
|
2414
|
+
Err(()) => {
|
2415
|
+
if let Some(range) = self.fiber().stack().range() {
|
2416
|
+
crate::runtime::vm::AsyncWasmCallState::assert_current_state_not_in_range(range);
|
2417
|
+
}
|
2418
|
+
Poll::Pending
|
2419
|
+
}
|
2420
|
+
}
|
2421
|
+
}
|
2422
|
+
}
|
2423
|
+
}
|
2424
|
+
|
2425
|
+
// Dropping futures is pretty special in that it means the future has
|
2426
|
+
// been requested to be cancelled. Here we run the risk of dropping an
|
2427
|
+
// in-progress fiber, and if we were to do nothing then the fiber would
|
2428
|
+
// leak all its owned stack resources.
|
2429
|
+
//
|
2430
|
+
// To handle this we implement `Drop` here and, if the fiber isn't done,
|
2431
|
+
// resume execution of the fiber saying "hey please stop you're
|
2432
|
+
// interrupted". Our `Trap` created here (which has the stack trace
|
2433
|
+
// of whomever dropped us) will then get propagated in whatever called
|
2434
|
+
// `block_on`, and the idea is that the trap propagates all the way back
|
2435
|
+
// up to the original fiber start, finishing execution.
|
2436
|
+
//
|
2437
|
+
// We don't actually care about the fiber's return value here (no one's
|
2438
|
+
// around to look at it), we just assert the fiber finished to
|
2439
|
+
// completion.
|
2440
|
+
impl Drop for FiberFuture<'_> {
|
2441
|
+
fn drop(&mut self) {
|
2442
|
+
if self.fiber.is_none() {
|
2443
|
+
return;
|
2444
|
+
}
|
2445
|
+
|
2446
|
+
if !self.fiber().done() {
|
2447
|
+
let result = self.resume(Err(anyhow!("future dropped")));
|
2448
|
+
// This resumption with an error should always complete the
|
2449
|
+
// fiber. While it's technically possible for host code to catch
|
2450
|
+
// the trap and re-resume, we'd ideally like to signal that to
|
2451
|
+
// callers that they shouldn't be doing that.
|
2452
|
+
debug_assert!(result.is_ok());
|
2453
|
+
}
|
2454
|
+
|
2455
|
+
self.state.take().unwrap().assert_null();
|
2456
|
+
|
2457
|
+
unsafe {
|
2458
|
+
self.engine
|
2459
|
+
.allocator()
|
2460
|
+
.deallocate_fiber_stack(self.fiber.take().unwrap().into_stack());
|
2461
|
+
}
|
2462
|
+
}
|
2463
|
+
}
|
2464
|
+
}
|
2465
|
+
}
|
2466
|
+
|
2467
|
+
#[cfg(feature = "async")]
|
2468
|
+
pub struct AsyncCx {
|
2469
|
+
current_suspend: *mut *mut wasmtime_fiber::Suspend<Result<()>, (), Result<()>>,
|
2470
|
+
current_poll_cx: *mut *mut Context<'static>,
|
2471
|
+
track_pkey_context_switch: bool,
|
2472
|
+
}
|
2473
|
+
|
2474
|
+
#[cfg(feature = "async")]
|
2475
|
+
impl AsyncCx {
|
2476
|
+
/// Blocks on the asynchronous computation represented by `future` and
|
2477
|
+
/// produces the result here, in-line.
|
2478
|
+
///
|
2479
|
+
/// This function is designed to only work when it's currently executing on
|
2480
|
+
/// a native fiber. This fiber provides the ability for us to handle the
|
2481
|
+
/// future's `Pending` state as "jump back to whomever called the fiber in
|
2482
|
+
/// an asynchronous fashion and propagate `Pending`". This tight coupling
|
2483
|
+
/// with `on_fiber` below is what powers the asynchronicity of calling wasm.
|
2484
|
+
/// Note that the asynchronous part only applies to host functions, wasm
|
2485
|
+
/// itself never really does anything asynchronous at this time.
|
2486
|
+
///
|
2487
|
+
/// This function takes a `future` and will (appear to) synchronously wait
|
2488
|
+
/// on the result. While this function is executing it will fiber switch
|
2489
|
+
/// to-and-from the original frame calling `on_fiber` which should be a
|
2490
|
+
/// guarantee due to how async stores are configured.
|
2491
|
+
///
|
2492
|
+
/// The return value here is either the output of the future `T`, or a trap
|
2493
|
+
/// which represents that the asynchronous computation was cancelled. It is
|
2494
|
+
/// not recommended to catch the trap and try to keep executing wasm, so
|
2495
|
+
/// we've tried to liberally document this.
|
2496
|
+
pub unsafe fn block_on<U>(
|
2497
|
+
&self,
|
2498
|
+
mut future: Pin<&mut (dyn Future<Output = U> + Send)>,
|
2499
|
+
) -> Result<U> {
|
2500
|
+
// Take our current `Suspend` context which was configured as soon as
|
2501
|
+
// our fiber started. Note that we must load it at the front here and
|
2502
|
+
// save it on our stack frame. While we're polling the future other
|
2503
|
+
// fibers may be started for recursive computations, and the current
|
2504
|
+
// suspend context is only preserved at the edges of the fiber, not
|
2505
|
+
// during the fiber itself.
|
2506
|
+
//
|
2507
|
+
// For a little bit of extra safety we also replace the current value
|
2508
|
+
// with null to try to catch any accidental bugs on our part early.
|
2509
|
+
// This is all pretty unsafe so we're trying to be careful...
|
2510
|
+
//
|
2511
|
+
// Note that there should be a segfaulting test in `async_functions.rs`
|
2512
|
+
// if this `Reset` is removed.
|
2513
|
+
let suspend = *self.current_suspend;
|
2514
|
+
let _reset = Reset(self.current_suspend, suspend);
|
2515
|
+
*self.current_suspend = ptr::null_mut();
|
2516
|
+
assert!(!suspend.is_null());
|
2517
|
+
|
2518
|
+
loop {
|
2519
|
+
let future_result = {
|
2520
|
+
let poll_cx = *self.current_poll_cx;
|
2521
|
+
let _reset = Reset(self.current_poll_cx, poll_cx);
|
2522
|
+
*self.current_poll_cx = ptr::null_mut();
|
2523
|
+
assert!(!poll_cx.is_null());
|
2524
|
+
future.as_mut().poll(&mut *poll_cx)
|
2525
|
+
};
|
2526
|
+
|
2527
|
+
match future_result {
|
2528
|
+
Poll::Ready(t) => break Ok(t),
|
2529
|
+
Poll::Pending => {}
|
2530
|
+
}
|
2531
|
+
|
2532
|
+
// In order to prevent this fiber's MPK state from being munged by
|
2533
|
+
// other fibers while it is suspended, we save and restore it once
|
2534
|
+
// once execution resumes. Note that when MPK is not supported,
|
2535
|
+
// these are noops.
|
2536
|
+
let previous_mask = if self.track_pkey_context_switch {
|
2537
|
+
let previous_mask = mpk::current_mask();
|
2538
|
+
mpk::allow(ProtectionMask::all());
|
2539
|
+
previous_mask
|
2540
|
+
} else {
|
2541
|
+
ProtectionMask::all()
|
2542
|
+
};
|
2543
|
+
(*suspend).suspend(())?;
|
2544
|
+
if self.track_pkey_context_switch {
|
2545
|
+
mpk::allow(previous_mask);
|
2546
|
+
}
|
2547
|
+
}
|
2548
|
+
}
|
2549
|
+
}
|
2550
|
+
|
2551
|
+
unsafe impl<T> crate::runtime::vm::VMStore for StoreInner<T> {
|
2552
|
+
fn store_opaque(&self) -> &StoreOpaque {
|
2553
|
+
&self.inner
|
2554
|
+
}
|
2555
|
+
|
2556
|
+
fn store_opaque_mut(&mut self) -> &mut StoreOpaque {
|
2557
|
+
&mut self.inner
|
2558
|
+
}
|
2559
|
+
|
2560
|
+
fn memory_growing(
|
2561
|
+
&mut self,
|
2562
|
+
current: usize,
|
2563
|
+
desired: usize,
|
2564
|
+
maximum: Option<usize>,
|
2565
|
+
) -> Result<bool, anyhow::Error> {
|
2566
|
+
match self.limiter {
|
2567
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2568
|
+
limiter(&mut self.data).memory_growing(current, desired, maximum)
|
2569
|
+
}
|
2570
|
+
#[cfg(feature = "async")]
|
2571
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => unsafe {
|
2572
|
+
self.inner
|
2573
|
+
.async_cx()
|
2574
|
+
.expect("ResourceLimiterAsync requires async Store")
|
2575
|
+
.block_on(
|
2576
|
+
limiter(&mut self.data)
|
2577
|
+
.memory_growing(current, desired, maximum)
|
2578
|
+
.as_mut(),
|
2579
|
+
)?
|
2580
|
+
},
|
2581
|
+
None => Ok(true),
|
2582
|
+
}
|
2583
|
+
}
|
2584
|
+
|
2585
|
+
fn memory_grow_failed(&mut self, error: anyhow::Error) -> Result<()> {
|
2586
|
+
match self.limiter {
|
2587
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2588
|
+
limiter(&mut self.data).memory_grow_failed(error)
|
2589
|
+
}
|
2590
|
+
#[cfg(feature = "async")]
|
2591
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => {
|
2592
|
+
limiter(&mut self.data).memory_grow_failed(error)
|
2593
|
+
}
|
2594
|
+
None => {
|
2595
|
+
log::debug!("ignoring memory growth failure error: {error:?}");
|
2596
|
+
Ok(())
|
2597
|
+
}
|
2598
|
+
}
|
2599
|
+
}
|
2600
|
+
|
2601
|
+
fn table_growing(
|
2602
|
+
&mut self,
|
2603
|
+
current: usize,
|
2604
|
+
desired: usize,
|
2605
|
+
maximum: Option<usize>,
|
2606
|
+
) -> Result<bool, anyhow::Error> {
|
2607
|
+
// Need to borrow async_cx before the mut borrow of the limiter.
|
2608
|
+
// self.async_cx() panicks when used with a non-async store, so
|
2609
|
+
// wrap this in an option.
|
2610
|
+
#[cfg(feature = "async")]
|
2611
|
+
let async_cx = if self.async_support()
|
2612
|
+
&& matches!(self.limiter, Some(ResourceLimiterInner::Async(_)))
|
2613
|
+
{
|
2614
|
+
Some(self.async_cx().unwrap())
|
2615
|
+
} else {
|
2616
|
+
None
|
2617
|
+
};
|
2618
|
+
|
2619
|
+
match self.limiter {
|
2620
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2621
|
+
limiter(&mut self.data).table_growing(current, desired, maximum)
|
2622
|
+
}
|
2623
|
+
#[cfg(feature = "async")]
|
2624
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => unsafe {
|
2625
|
+
async_cx
|
2626
|
+
.expect("ResourceLimiterAsync requires async Store")
|
2627
|
+
.block_on(
|
2628
|
+
limiter(&mut self.data)
|
2629
|
+
.table_growing(current, desired, maximum)
|
2630
|
+
.as_mut(),
|
2631
|
+
)?
|
2632
|
+
},
|
2633
|
+
None => Ok(true),
|
2634
|
+
}
|
2635
|
+
}
|
2636
|
+
|
2637
|
+
fn table_grow_failed(&mut self, error: anyhow::Error) -> Result<()> {
|
2638
|
+
match self.limiter {
|
2639
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2640
|
+
limiter(&mut self.data).table_grow_failed(error)
|
2641
|
+
}
|
2642
|
+
#[cfg(feature = "async")]
|
2643
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => {
|
2644
|
+
limiter(&mut self.data).table_grow_failed(error)
|
2645
|
+
}
|
2646
|
+
None => {
|
2647
|
+
log::debug!("ignoring table growth failure: {error:?}");
|
2648
|
+
Ok(())
|
2649
|
+
}
|
2650
|
+
}
|
2651
|
+
}
|
2652
|
+
|
2653
|
+
fn out_of_gas(&mut self) -> Result<()> {
|
2654
|
+
if !self.refuel() {
|
2655
|
+
return Err(Trap::OutOfFuel.into());
|
2656
|
+
}
|
2657
|
+
#[cfg(feature = "async")]
|
2658
|
+
if self.fuel_yield_interval.is_some() {
|
2659
|
+
self.async_yield_impl()?;
|
2660
|
+
}
|
2661
|
+
Ok(())
|
2662
|
+
}
|
2663
|
+
|
2664
|
+
fn new_epoch(&mut self) -> Result<u64, anyhow::Error> {
|
2665
|
+
// Temporarily take the configured behavior to avoid mutably borrowing
|
2666
|
+
// multiple times.
|
2667
|
+
let mut behavior = self.epoch_deadline_behavior.take();
|
2668
|
+
let delta_result = match &mut behavior {
|
2669
|
+
None => Err(Trap::Interrupt.into()),
|
2670
|
+
Some(callback) => callback((&mut *self).as_context_mut()).and_then(|update| {
|
2671
|
+
let delta = match update {
|
2672
|
+
UpdateDeadline::Continue(delta) => delta,
|
2673
|
+
|
2674
|
+
#[cfg(feature = "async")]
|
2675
|
+
UpdateDeadline::Yield(delta) => {
|
2676
|
+
assert!(
|
2677
|
+
self.async_support(),
|
2678
|
+
"cannot use `UpdateDeadline::Yield` without enabling async support in the config"
|
2679
|
+
);
|
2680
|
+
// Do the async yield. May return a trap if future was
|
2681
|
+
// canceled while we're yielded.
|
2682
|
+
self.async_yield_impl()?;
|
2683
|
+
delta
|
2684
|
+
}
|
2685
|
+
};
|
2686
|
+
|
2687
|
+
// Set a new deadline and return the new epoch deadline so
|
2688
|
+
// the Wasm code doesn't have to reload it.
|
2689
|
+
self.set_epoch_deadline(delta);
|
2690
|
+
Ok(self.get_epoch_deadline())
|
2691
|
+
})
|
2692
|
+
};
|
2693
|
+
|
2694
|
+
// Put back the original behavior which was replaced by `take`.
|
2695
|
+
self.epoch_deadline_behavior = behavior;
|
2696
|
+
delta_result
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
#[cfg(feature = "gc")]
|
2700
|
+
fn maybe_async_gc(&mut self, root: Option<VMGcRef>) -> Result<Option<VMGcRef>> {
|
2701
|
+
let mut scope = RootScope::new(self);
|
2702
|
+
let store = scope.as_context_mut().0;
|
2703
|
+
let store_id = store.id();
|
2704
|
+
let root = root.map(|r| store.gc_roots_mut().push_lifo_root(store_id, r));
|
2705
|
+
|
2706
|
+
if store.async_support() {
|
2707
|
+
#[cfg(feature = "async")]
|
2708
|
+
unsafe {
|
2709
|
+
let async_cx = store.async_cx();
|
2710
|
+
let mut future = store.gc_async();
|
2711
|
+
async_cx
|
2712
|
+
.expect("attempted to pull async context during shutdown")
|
2713
|
+
.block_on(Pin::new_unchecked(&mut future))?;
|
2714
|
+
}
|
2715
|
+
} else {
|
2716
|
+
(**store).gc();
|
2717
|
+
}
|
2718
|
+
|
2719
|
+
let root = match root {
|
2720
|
+
None => None,
|
2721
|
+
Some(r) => {
|
2722
|
+
let r = r
|
2723
|
+
.get_gc_ref(store)
|
2724
|
+
.expect("still in scope")
|
2725
|
+
.unchecked_copy();
|
2726
|
+
Some(store.gc_store_mut()?.clone_gc_ref(&r))
|
2727
|
+
}
|
2728
|
+
};
|
2729
|
+
|
2730
|
+
Ok(root)
|
2731
|
+
}
|
2732
|
+
|
2733
|
+
#[cfg(not(feature = "gc"))]
|
2734
|
+
fn maybe_async_gc(&mut self, root: Option<VMGcRef>) -> Result<Option<VMGcRef>> {
|
2735
|
+
Ok(root)
|
2736
|
+
}
|
2737
|
+
|
2738
|
+
#[cfg(feature = "component-model")]
|
2739
|
+
fn component_calls(&mut self) -> &mut crate::runtime::vm::component::CallContexts {
|
2740
|
+
&mut self.component_calls
|
2741
|
+
}
|
2742
|
+
}
|
2743
|
+
|
2744
|
+
impl<T> StoreInner<T> {
|
2745
|
+
pub(crate) fn set_epoch_deadline(&mut self, delta: u64) {
|
2746
|
+
// Set a new deadline based on the "epoch deadline delta".
|
2747
|
+
//
|
2748
|
+
// Safety: this is safe because the epoch deadline in the
|
2749
|
+
// `VMRuntimeLimits` is accessed only here and by Wasm guest code
|
2750
|
+
// running in this store, and we have a `&mut self` here.
|
2751
|
+
//
|
2752
|
+
// Also, note that when this update is performed while Wasm is
|
2753
|
+
// on the stack, the Wasm will reload the new value once we
|
2754
|
+
// return into it.
|
2755
|
+
let epoch_deadline = unsafe { (*self.vmruntime_limits()).epoch_deadline.get_mut() };
|
2756
|
+
*epoch_deadline = self.engine().current_epoch() + delta;
|
2757
|
+
}
|
2758
|
+
|
2759
|
+
fn epoch_deadline_trap(&mut self) {
|
2760
|
+
self.epoch_deadline_behavior = None;
|
2761
|
+
}
|
2762
|
+
|
2763
|
+
fn epoch_deadline_callback(
|
2764
|
+
&mut self,
|
2765
|
+
callback: Box<dyn FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync>,
|
2766
|
+
) {
|
2767
|
+
self.epoch_deadline_behavior = Some(callback);
|
2768
|
+
}
|
2769
|
+
|
2770
|
+
fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
2771
|
+
assert!(
|
2772
|
+
self.async_support(),
|
2773
|
+
"cannot use `epoch_deadline_async_yield_and_update` without enabling async support in the config"
|
2774
|
+
);
|
2775
|
+
#[cfg(feature = "async")]
|
2776
|
+
{
|
2777
|
+
self.epoch_deadline_behavior =
|
2778
|
+
Some(Box::new(move |_store| Ok(UpdateDeadline::Yield(delta))));
|
2779
|
+
}
|
2780
|
+
let _ = delta; // suppress warning in non-async build
|
2781
|
+
}
|
2782
|
+
|
2783
|
+
fn get_epoch_deadline(&self) -> u64 {
|
2784
|
+
// Safety: this is safe because, as above, it is only invoked
|
2785
|
+
// from within `new_epoch` which is called from guest Wasm
|
2786
|
+
// code, which will have an exclusive borrow on the Store.
|
2787
|
+
let epoch_deadline = unsafe { (*self.vmruntime_limits()).epoch_deadline.get_mut() };
|
2788
|
+
*epoch_deadline
|
2789
|
+
}
|
2790
|
+
}
|
2791
|
+
|
2792
|
+
impl<T: Default> Default for Store<T> {
|
2793
|
+
fn default() -> Store<T> {
|
2794
|
+
Store::new(&Engine::default(), T::default())
|
2795
|
+
}
|
2796
|
+
}
|
2797
|
+
|
2798
|
+
impl<T: fmt::Debug> fmt::Debug for Store<T> {
|
2799
|
+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2800
|
+
let inner = &**self.inner as *const StoreInner<T>;
|
2801
|
+
f.debug_struct("Store")
|
2802
|
+
.field("inner", &inner)
|
2803
|
+
.field("data", &self.inner.data)
|
2804
|
+
.finish()
|
2805
|
+
}
|
2806
|
+
}
|
2807
|
+
|
2808
|
+
impl<T> Drop for Store<T> {
|
2809
|
+
fn drop(&mut self) {
|
2810
|
+
self.inner.flush_fiber_stack();
|
2811
|
+
|
2812
|
+
// for documentation on this `unsafe`, see `into_data`.
|
2813
|
+
unsafe {
|
2814
|
+
ManuallyDrop::drop(&mut self.inner.data);
|
2815
|
+
ManuallyDrop::drop(&mut self.inner);
|
2816
|
+
}
|
2817
|
+
}
|
2818
|
+
}
|
2819
|
+
|
2820
|
+
impl Drop for StoreOpaque {
|
2821
|
+
fn drop(&mut self) {
|
2822
|
+
// NB it's important that this destructor does not access `self.data`.
|
2823
|
+
// That is deallocated by `Drop for Store<T>` above.
|
2824
|
+
|
2825
|
+
unsafe {
|
2826
|
+
let allocator = self.engine.allocator();
|
2827
|
+
let ondemand = OnDemandInstanceAllocator::default();
|
2828
|
+
for instance in self.instances.iter_mut() {
|
2829
|
+
if let StoreInstanceKind::Dummy = instance.kind {
|
2830
|
+
ondemand.deallocate_module(&mut instance.handle);
|
2831
|
+
} else {
|
2832
|
+
allocator.deallocate_module(&mut instance.handle);
|
2833
|
+
}
|
2834
|
+
}
|
2835
|
+
ondemand.deallocate_module(&mut self.default_caller);
|
2836
|
+
|
2837
|
+
#[cfg(feature = "gc")]
|
2838
|
+
if let Some(gc_store) = self.gc_store.take() {
|
2839
|
+
debug_assert!(self.engine.features().gc_types());
|
2840
|
+
allocator.deallocate_gc_heap(gc_store.allocation_index, gc_store.gc_heap);
|
2841
|
+
}
|
2842
|
+
|
2843
|
+
#[cfg(feature = "component-model")]
|
2844
|
+
{
|
2845
|
+
for _ in 0..self.num_component_instances {
|
2846
|
+
allocator.decrement_component_instance_count();
|
2847
|
+
}
|
2848
|
+
}
|
2849
|
+
|
2850
|
+
// See documentation for these fields on `StoreOpaque` for why they
|
2851
|
+
// must be dropped in this order.
|
2852
|
+
ManuallyDrop::drop(&mut self.store_data);
|
2853
|
+
ManuallyDrop::drop(&mut self.rooted_host_funcs);
|
2854
|
+
}
|
2855
|
+
}
|
2856
|
+
}
|
2857
|
+
|
2858
|
+
struct Reset<T: Copy>(*mut T, T);
|
2859
|
+
|
2860
|
+
impl<T: Copy> Drop for Reset<T> {
|
2861
|
+
fn drop(&mut self) {
|
2862
|
+
unsafe {
|
2863
|
+
*self.0 = self.1;
|
2864
|
+
}
|
2865
|
+
}
|
2866
|
+
}
|
2867
|
+
|
2868
|
+
#[cfg(test)]
|
2869
|
+
mod tests {
|
2870
|
+
use super::{get_fuel, refuel, set_fuel};
|
2871
|
+
use std::num::NonZeroU64;
|
2872
|
+
|
2873
|
+
struct FuelTank {
|
2874
|
+
pub consumed_fuel: i64,
|
2875
|
+
pub reserve_fuel: u64,
|
2876
|
+
pub yield_interval: Option<NonZeroU64>,
|
2877
|
+
}
|
2878
|
+
|
2879
|
+
impl FuelTank {
|
2880
|
+
fn new() -> Self {
|
2881
|
+
FuelTank {
|
2882
|
+
consumed_fuel: 0,
|
2883
|
+
reserve_fuel: 0,
|
2884
|
+
yield_interval: None,
|
2885
|
+
}
|
2886
|
+
}
|
2887
|
+
fn get_fuel(&self) -> u64 {
|
2888
|
+
get_fuel(self.consumed_fuel, self.reserve_fuel)
|
2889
|
+
}
|
2890
|
+
fn refuel(&mut self) -> bool {
|
2891
|
+
refuel(
|
2892
|
+
&mut self.consumed_fuel,
|
2893
|
+
&mut self.reserve_fuel,
|
2894
|
+
self.yield_interval,
|
2895
|
+
)
|
2896
|
+
}
|
2897
|
+
fn set_fuel(&mut self, fuel: u64) {
|
2898
|
+
set_fuel(
|
2899
|
+
&mut self.consumed_fuel,
|
2900
|
+
&mut self.reserve_fuel,
|
2901
|
+
self.yield_interval,
|
2902
|
+
fuel,
|
2903
|
+
);
|
2904
|
+
}
|
2905
|
+
}
|
2906
|
+
|
2907
|
+
#[test]
|
2908
|
+
fn smoke() {
|
2909
|
+
let mut tank = FuelTank::new();
|
2910
|
+
tank.set_fuel(10);
|
2911
|
+
assert_eq!(tank.consumed_fuel, -10);
|
2912
|
+
assert_eq!(tank.reserve_fuel, 0);
|
2913
|
+
|
2914
|
+
tank.yield_interval = NonZeroU64::new(10);
|
2915
|
+
tank.set_fuel(25);
|
2916
|
+
assert_eq!(tank.consumed_fuel, -10);
|
2917
|
+
assert_eq!(tank.reserve_fuel, 15);
|
2918
|
+
}
|
2919
|
+
|
2920
|
+
#[test]
|
2921
|
+
fn does_not_lose_precision() {
|
2922
|
+
let mut tank = FuelTank::new();
|
2923
|
+
tank.set_fuel(u64::MAX);
|
2924
|
+
assert_eq!(tank.get_fuel(), u64::MAX);
|
2925
|
+
|
2926
|
+
tank.set_fuel(i64::MAX as u64);
|
2927
|
+
assert_eq!(tank.get_fuel(), i64::MAX as u64);
|
2928
|
+
|
2929
|
+
tank.set_fuel(i64::MAX as u64 + 1);
|
2930
|
+
assert_eq!(tank.get_fuel(), i64::MAX as u64 + 1);
|
2931
|
+
}
|
2932
|
+
|
2933
|
+
#[test]
|
2934
|
+
fn yielding_does_not_lose_precision() {
|
2935
|
+
let mut tank = FuelTank::new();
|
2936
|
+
|
2937
|
+
tank.yield_interval = NonZeroU64::new(10);
|
2938
|
+
tank.set_fuel(u64::MAX);
|
2939
|
+
assert_eq!(tank.get_fuel(), u64::MAX);
|
2940
|
+
assert_eq!(tank.consumed_fuel, -10);
|
2941
|
+
assert_eq!(tank.reserve_fuel, u64::MAX - 10);
|
2942
|
+
|
2943
|
+
tank.yield_interval = NonZeroU64::new(u64::MAX);
|
2944
|
+
tank.set_fuel(u64::MAX);
|
2945
|
+
assert_eq!(tank.get_fuel(), u64::MAX);
|
2946
|
+
assert_eq!(tank.consumed_fuel, -i64::MAX);
|
2947
|
+
assert_eq!(tank.reserve_fuel, u64::MAX - (i64::MAX as u64));
|
2948
|
+
|
2949
|
+
tank.yield_interval = NonZeroU64::new((i64::MAX as u64) + 1);
|
2950
|
+
tank.set_fuel(u64::MAX);
|
2951
|
+
assert_eq!(tank.get_fuel(), u64::MAX);
|
2952
|
+
assert_eq!(tank.consumed_fuel, -i64::MAX);
|
2953
|
+
assert_eq!(tank.reserve_fuel, u64::MAX - (i64::MAX as u64));
|
2954
|
+
}
|
2955
|
+
|
2956
|
+
#[test]
|
2957
|
+
fn refueling() {
|
2958
|
+
// It's possible to fuel to have consumed over the limit as some instructions can consume
|
2959
|
+
// multiple units of fuel at once. Refueling should be strict in it's consumption and not
|
2960
|
+
// add more fuel than there is.
|
2961
|
+
let mut tank = FuelTank::new();
|
2962
|
+
|
2963
|
+
tank.yield_interval = NonZeroU64::new(10);
|
2964
|
+
tank.reserve_fuel = 42;
|
2965
|
+
tank.consumed_fuel = 4;
|
2966
|
+
assert!(tank.refuel());
|
2967
|
+
assert_eq!(tank.reserve_fuel, 28);
|
2968
|
+
assert_eq!(tank.consumed_fuel, -10);
|
2969
|
+
|
2970
|
+
tank.yield_interval = NonZeroU64::new(1);
|
2971
|
+
tank.reserve_fuel = 8;
|
2972
|
+
tank.consumed_fuel = 4;
|
2973
|
+
assert_eq!(tank.get_fuel(), 4);
|
2974
|
+
assert!(tank.refuel());
|
2975
|
+
assert_eq!(tank.reserve_fuel, 3);
|
2976
|
+
assert_eq!(tank.consumed_fuel, -1);
|
2977
|
+
assert_eq!(tank.get_fuel(), 4);
|
2978
|
+
|
2979
|
+
tank.yield_interval = NonZeroU64::new(10);
|
2980
|
+
tank.reserve_fuel = 3;
|
2981
|
+
tank.consumed_fuel = 4;
|
2982
|
+
assert_eq!(tank.get_fuel(), 0);
|
2983
|
+
assert!(!tank.refuel());
|
2984
|
+
assert_eq!(tank.reserve_fuel, 3);
|
2985
|
+
assert_eq!(tank.consumed_fuel, 4);
|
2986
|
+
assert_eq!(tank.get_fuel(), 0);
|
2987
|
+
}
|
2988
|
+
}
|