wasmtime 19.0.2 → 20.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +137 -130
- data/ext/Cargo.toml +10 -10
- data/ext/cargo-vendor/ahash-0.8.11/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/ahash-0.8.11/Cargo.toml +167 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/aes_hash.rs +433 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/fallback_hash.rs +367 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/hash_quality_test.rs +534 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/lib.rs +396 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/operations.rs +372 -0
- data/ext/cargo-vendor/ahash-0.8.11/src/random_state.rs +528 -0
- data/ext/cargo-vendor/ahash-0.8.11/tests/bench.rs +199 -0
- data/ext/cargo-vendor/ahash-0.8.11/tests/map_tests.rs +310 -0
- data/ext/cargo-vendor/anyhow-1.0.83/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/anyhow-1.0.83/Cargo.toml +130 -0
- data/ext/cargo-vendor/anyhow-1.0.83/README.md +181 -0
- data/ext/cargo-vendor/anyhow-1.0.83/build.rs +179 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/backtrace.rs +406 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/chain.rs +102 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/fmt.rs +158 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/kind.rs +121 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/lib.rs +702 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/macros.rs +241 -0
- data/ext/cargo-vendor/anyhow-1.0.83/src/wrapper.rs +84 -0
- data/ext/cargo-vendor/anyhow-1.0.83/tests/test_ensure.rs +724 -0
- data/ext/cargo-vendor/anyhow-1.0.83/tests/test_macros.rs +81 -0
- data/ext/cargo-vendor/anyhow-1.0.83/tests/test_repr.rs +30 -0
- data/ext/cargo-vendor/anyhow-1.0.83/tests/ui/no-impl.stderr +32 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +78 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/README.md +60 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/interval.rs +98 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/lib.rs +59 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/state.rs +280 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/web.rs +177 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/win.rs +201 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/tests/interval.rs +73 -0
- data/ext/cargo-vendor/cap-primitives-3.1.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-primitives-3.1.0/Cargo.toml +84 -0
- data/ext/cargo-vendor/cap-primitives-3.1.0/src/rustix/fs/metadata_ext.rs +420 -0
- data/ext/cargo-vendor/cap-std-3.1.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-std-3.1.0/Cargo.toml +67 -0
- data/ext/cargo-vendor/cap-std-3.1.0/src/fs/dir.rs +888 -0
- data/ext/cargo-vendor/cap-std-3.1.0/src/fs_utf8/dir.rs +832 -0
- data/ext/cargo-vendor/cranelift-bforest-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.107.2/Cargo.toml +40 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/Cargo.toml +178 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/build.rs +396 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/alias_analysis.rs +403 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/binemit/mod.rs +171 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/bitset.rs +187 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/context.rs +386 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph/elaborate.rs +835 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph.rs +838 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/inst_predicates.rs +236 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/constant.rs +462 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/dfg.rs +1777 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/entities.rs +562 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/function.rs +490 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/instructions.rs +1019 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/memflags.rs +452 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/mod.rs +108 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/trapcode.rs +149 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/types.rs +629 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/abi.rs +1707 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit.rs +3932 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/mod.rs +3083 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst.isle +4218 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower/isle.rs +884 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower.isle +2933 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/mod.rs +242 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/pcc.rs +565 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/call_conv.rs +127 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/abi.rs +1109 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/args.rs +1968 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit.rs +3466 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/encode.rs +654 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst.isle +2944 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower/isle.rs +625 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower.isle +2872 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/abi.rs +1047 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/args.rs +347 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/emit.rs +3646 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst.isle +5033 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/lower.isle +3995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/abi.rs +1369 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/evex.rs +748 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/rex.rs +596 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/vex.rs +491 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/args.rs +2289 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit.rs +4383 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit_state.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/mod.rs +2798 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst.isle +5304 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower/isle.rs +1066 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.isle +4809 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.rs +339 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/mod.rs +234 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/pcc.rs +1003 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/legalizer/mod.rs +348 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/abi.rs +2594 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/buffer.rs +2512 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/inst_common.rs +75 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/isle.rs +914 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/lower.rs +1452 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/mod.rs +555 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/pcc.rs +169 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/vcode.rs +1807 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/nan_canonicalization.rs +110 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/cprop.isle +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/spectre.isle +14 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts.rs +295 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/prelude.isle +646 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/result.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/settings.rs +591 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/verifier/mod.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/write.rs +631 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/entities.rs +101 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/formats.rs +205 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/instructions.rs +3791 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.107.2/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.107.2/Cargo.toml +50 -0
- data/ext/cargo-vendor/cranelift-frontend-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.107.2/Cargo.toml +69 -0
- data/ext/cargo-vendor/cranelift-isle-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.107.2/Cargo.toml +46 -0
- data/ext/cargo-vendor/cranelift-native-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.107.2/Cargo.toml +45 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/Cargo.toml +107 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/code_translator.rs +3683 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/dummy.rs +912 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/mod.rs +8 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/spec.rs +945 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/func_translator.rs +296 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/lib.rs +58 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/state.rs +522 -0
- data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/table.rs +104 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/Cargo.toml +48 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/Cargo.lock +293 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/Cargo.toml +46 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/README.md +105 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/examples/mutex_map.rs +23 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/src/core_lazy.rs +32 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/src/inline_lazy.rs +48 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/src/lib.rs +208 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/incorrect_visibility_restriction.rs +8 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/incorrect_visibility_restriction.stderr +10 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_private.rs +14 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_private.stderr +14 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_sized.rs +9 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/compile_fail/static_is_sized.stderr +64 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/no_std.rs +19 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/test.rs +185 -0
- data/ext/cargo-vendor/lazy_static-1.5.0/tests/ui.rs +6 -0
- data/ext/cargo-vendor/mach2-0.4.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/mach2-0.4.2/Cargo.toml +49 -0
- data/ext/cargo-vendor/mach2-0.4.2/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/mach2-0.4.2/LICENSE-BSD +23 -0
- data/ext/cargo-vendor/mach2-0.4.2/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/mach2-0.4.2/README.md +116 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/exc.rs +73 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/kern_return.rs +59 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/lib.rs +59 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/mach_port.rs +50 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/message.rs +345 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/ndr.rs +19 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/port.rs +67 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/semaphore.rs +22 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/structs.rs +66 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/sync_policy.rs +9 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/task.rs +46 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/task_info.rs +49 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/thread_act.rs +36 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/thread_policy.rs +121 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/thread_status.rs +53 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/traps.rs +37 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm.rs +248 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_attributes.rs +18 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_page_size.rs +40 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_prot.rs +13 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_purgable.rs +42 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_region.rs +238 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_statistics.rs +58 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_sync.rs +11 -0
- data/ext/cargo-vendor/mach2-0.4.2/src/vm_types.rs +19 -0
- data/ext/cargo-vendor/object-0.33.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.33.0/CHANGELOG.md +797 -0
- data/ext/cargo-vendor/object-0.33.0/Cargo.toml +179 -0
- data/ext/cargo-vendor/object-0.33.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/object-0.33.0/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/object-0.33.0/README.md +56 -0
- data/ext/cargo-vendor/object-0.33.0/src/archive.rs +91 -0
- data/ext/cargo-vendor/object-0.33.0/src/build/bytes.rs +141 -0
- data/ext/cargo-vendor/object-0.33.0/src/build/elf.rs +3033 -0
- data/ext/cargo-vendor/object-0.33.0/src/build/error.rs +41 -0
- data/ext/cargo-vendor/object-0.33.0/src/build/mod.rs +18 -0
- data/ext/cargo-vendor/object-0.33.0/src/build/table.rs +128 -0
- data/ext/cargo-vendor/object-0.33.0/src/common.rs +568 -0
- data/ext/cargo-vendor/object-0.33.0/src/elf.rs +6291 -0
- data/ext/cargo-vendor/object-0.33.0/src/endian.rs +831 -0
- data/ext/cargo-vendor/object-0.33.0/src/lib.rs +107 -0
- data/ext/cargo-vendor/object-0.33.0/src/macho.rs +3309 -0
- data/ext/cargo-vendor/object-0.33.0/src/pe.rs +3056 -0
- data/ext/cargo-vendor/object-0.33.0/src/pod.rs +239 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/any.rs +1328 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/archive.rs +759 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/comdat.rs +211 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/file.rs +383 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/import.rs +223 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/mod.rs +66 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/relocation.rs +108 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/section.rs +585 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/coff/symbol.rs +635 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/attributes.rs +306 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/comdat.rs +162 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/compression.rs +56 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/dynamic.rs +117 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/file.rs +918 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/hash.rs +224 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/mod.rs +78 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/note.rs +271 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/relocation.rs +629 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/section.rs +1150 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/segment.rs +356 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/symbol.rs +595 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/elf/version.rs +424 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/dyld_cache.rs +345 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/fat.rs +140 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/file.rs +783 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/load_command.rs +386 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/mod.rs +72 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/relocation.rs +149 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/section.rs +389 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/segment.rs +303 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/macho/symbol.rs +492 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/mod.rs +880 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/data_directory.rs +214 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/export.rs +334 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/file.rs +1053 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/import.rs +339 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/mod.rs +68 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/relocation.rs +92 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/resource.rs +210 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/rich.rs +92 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/pe/section.rs +440 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/read_cache.rs +213 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/read_ref.rs +149 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/traits.rs +551 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/util.rs +425 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/wasm.rs +966 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/comdat.rs +134 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/file.rs +697 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/mod.rs +63 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/relocation.rs +134 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/section.rs +433 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/segment.rs +117 -0
- data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/symbol.rs +784 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/coff/mod.rs +10 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/coff/object.rs +678 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/coff/writer.rs +518 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/elf/mod.rs +9 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/elf/object.rs +885 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/elf/writer.rs +2309 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/macho.rs +1107 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/mod.rs +990 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/pe.rs +847 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/string.rs +186 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/util.rs +261 -0
- data/ext/cargo-vendor/object-0.33.0/src/write/xcoff.rs +589 -0
- data/ext/cargo-vendor/object-0.33.0/src/xcoff.rs +905 -0
- data/ext/cargo-vendor/object-0.33.0/tests/integration.rs +2 -0
- data/ext/cargo-vendor/object-0.33.0/tests/parse_self.rs +25 -0
- data/ext/cargo-vendor/object-0.33.0/tests/read/coff.rs +23 -0
- data/ext/cargo-vendor/object-0.33.0/tests/read/elf.rs +47 -0
- data/ext/cargo-vendor/object-0.33.0/tests/read/mod.rs +4 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/bss.rs +255 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/coff.rs +58 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/comdat.rs +225 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/common.rs +245 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/elf.rs +289 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/macho.rs +64 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/mod.rs +704 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/section_flags.rs +90 -0
- data/ext/cargo-vendor/object-0.33.0/tests/round_trip/tls.rs +316 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/Cargo.toml +220 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/src/ctx.rs +128 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/src/lib.rs +193 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/src/snapshots/preview_1.rs +1497 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/async_.rs +293 -0
- data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/sync.rs +279 -0
- data/ext/cargo-vendor/wasm-encoder-0.202.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.202.0/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasm-encoder-0.202.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/builder.rs +455 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/canonicals.rs +159 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/exports.rs +124 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/imports.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/instances.rs +200 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/names.rs +149 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +3595 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/data.rs +186 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/elements.rs +221 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +98 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +112 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +157 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +128 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/producers.rs +181 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +134 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +104 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +678 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +215 -0
- data/ext/cargo-vendor/wasm-encoder-0.209.1/src/raw.rs +30 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.lock +744 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.toml +66 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/types.rs +549 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/operators.rs +4076 -0
- data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/types.rs +4449 -0
- data/ext/cargo-vendor/wasmprinter-0.202.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.202.0/Cargo.toml +45 -0
- data/ext/cargo-vendor/wasmprinter-0.202.0/src/lib.rs +3202 -0
- data/ext/cargo-vendor/wasmprinter-0.202.0/src/operator.rs +1131 -0
- data/ext/cargo-vendor/wasmprinter-0.202.0/tests/all.rs +279 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/Cargo.toml +268 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/code_builder.rs +201 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/runtime.rs +175 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/compile.rs +897 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/config.rs +2695 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/engine/serialization.rs +849 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/engine.rs +741 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/lib.rs +303 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code_memory.rs +335 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/component.rs +661 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/host.rs +439 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/options.rs +554 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/typed.rs +2484 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func.rs +747 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/instance.rs +804 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/linker.rs +786 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/matching.rs +217 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/mod.rs +756 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resources.rs +1133 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/types.rs +892 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/values.rs +978 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/coredump.rs +336 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/global.rs +300 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/table.rs +480 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func/typed.rs +898 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func.rs +2633 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/anyref.rs +46 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/externref.rs +50 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/i31.rs +14 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/rooting.rs +222 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled.rs +17 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/anyref.rs +472 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/externref.rs +644 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/i31.rs +345 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/rooting.rs +1543 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled.rs +12 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc.rs +87 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instance.rs +992 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instantiate.rs +345 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/linker.rs +1521 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/memory.rs +999 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module/registry.rs +354 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module.rs +1295 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/profiling.rs +224 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/data.rs +289 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store.rs +2796 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/func.rs +138 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/global.rs +68 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/memory.rs +286 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/table.rs +34 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trap.rs +641 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/type_registry.rs +632 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types/matching.rs +367 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types.rs +1378 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/v128.rs +131 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/values.rs +945 -0
- data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime.rs +112 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-20.0.2/Cargo.toml +81 -0
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/component.rs +1295 -0
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen/dead-code.wit +27 -0
- data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen.rs +342 -0
- data/ext/cargo-vendor/wasmtime-component-util-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-20.0.2/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/Cargo.toml +114 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/builder.rs +127 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiled_function.rs +225 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler/component.rs +962 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler.rs +1369 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/address_transform.rs +783 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/expression.rs +1252 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/func_environ.rs +2672 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/disabled.rs +116 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/enabled.rs +649 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc.rs +198 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/lib.rs +505 -0
- data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/obj.rs +545 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.lock +782 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.toml +144 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/address_map.rs +125 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/builtin.rs +184 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/address_map.rs +72 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/mod.rs +389 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/module_artifacts.rs +300 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/trap_encoding.rs +69 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/artifacts.rs +72 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/compiler.rs +19 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/info.rs +672 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/adapt.rs +459 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/inline.rs +1332 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types.rs +1972 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component.rs +103 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/trampoline.rs +3233 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/transcode.rs +89 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact.rs +711 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/gc.rs +60 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/lib.rs +70 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module.rs +780 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_artifacts.rs +145 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_environ.rs +1288 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/obj.rs +173 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/trap_encoding.rs +188 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/tunables.rs +158 -0
- data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/vmoffsets.rs +952 -0
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/unix.rs +265 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/Cargo.toml +47 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/Cargo.toml +147 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/build.rs +24 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/aarch64.rs +76 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/riscv64.rs +41 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/s390x.S +70 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/s390x.rs +34 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/x86_64.rs +41 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/async_yield.rs +35 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/libcalls.rs +571 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component.rs +860 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/export.rs +108 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/disabled.rs +23 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/drc.rs +963 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/externref.rs +115 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/free_list.rs +767 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled.rs +18 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_ref.rs +486 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_runtime.rs +503 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/host_data.rs +81 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/i31.rs +86 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc.rs +244 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/on_demand.rs +217 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/gc_heap_pool.rs +92 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/table_pool.rs +231 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling.rs +699 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator.rs +780 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance.rs +1566 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/lib.rs +289 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/libcalls.rs +777 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/memory.rs +751 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/send_sync_ptr.rs +106 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mmap.rs +111 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/traphandlers.rs +55 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mmap.rs +94 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/machports.rs +416 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mmap.rs +151 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/signals.rs +401 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/traphandlers.rs +104 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/table.rs +851 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/mod.rs +12 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory.rs +230 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory_disabled.rs +100 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_disabled.rs +16 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_enabled.rs +40 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers.rs +785 -0
- data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext.rs +1293 -0
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/Cargo.toml +21 -0
- data/ext/cargo-vendor/wasmtime-slab-20.0.2/src/lib.rs +493 -0
- data/ext/cargo-vendor/wasmtime-types-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-20.0.2/Cargo.toml +36 -0
- data/ext/cargo-vendor/wasmtime-types-20.0.2/src/lib.rs +832 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/Cargo.toml +194 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/bindings.rs +283 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ctx.rs +659 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/filesystem.rs +433 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/filesystem/sync.rs +518 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/filesystem.rs +1079 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/io.rs +367 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/network.rs +539 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/host/tcp.rs +306 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ip_name_lookup.rs +126 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/lib.rs +404 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/network.rs +107 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/pipe.rs +826 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/poll.rs +233 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview0.rs +879 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview1.rs +2601 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/runtime.rs +175 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/stdio/worker_thread_stdin.rs +177 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/stdio.rs +507 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/tcp.rs +847 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/udp.rs +125 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/write_stream.rs +203 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/api.rs +194 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/async_.rs +397 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/main.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/preview1.rs +251 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/sync.rs +333 -0
- data/ext/cargo-vendor/wasmtime-wasi-20.0.2/wit/deps/io/poll.wit +41 -0
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/Cargo.toml +81 -0
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/builder.rs +85 -0
- data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/compiler.rs +257 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/Cargo.toml +41 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/lib.rs +2213 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/rust.rs +421 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/types.rs +202 -0
- data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +60 -0
- data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +1000 -0
- data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +999 -0
- data/ext/cargo-vendor/wast-209.0.1/src/component/types.rs +999 -0
- data/ext/cargo-vendor/wast-209.0.1/src/component/wast.rs +160 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +1396 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +2016 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/func.rs +136 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +284 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +235 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +751 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +267 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +302 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +901 -0
- data/ext/cargo-vendor/wast-209.0.1/src/core/wast.rs +256 -0
- data/ext/cargo-vendor/wast-209.0.1/src/lexer.rs +1572 -0
- data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +551 -0
- data/ext/cargo-vendor/wast-209.0.1/src/names.rs +67 -0
- data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +1414 -0
- data/ext/cargo-vendor/wast-209.0.1/src/token.rs +728 -0
- data/ext/cargo-vendor/wast-209.0.1/src/wast.rs +459 -0
- data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +71 -0
- data/ext/cargo-vendor/wast-209.0.1/tests/annotations.rs +200 -0
- data/ext/cargo-vendor/wast-209.0.1/tests/parse-fail.rs +80 -0
- data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/web-time-1.1.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/web-time-1.1.0/CHANGELOG.md +74 -0
- data/ext/cargo-vendor/web-time-1.1.0/Cargo.lock +393 -0
- data/ext/cargo-vendor/web-time-1.1.0/Cargo.toml +246 -0
- data/ext/cargo-vendor/web-time-1.1.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/web-time-1.1.0/LICENSE-MIT +21 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/lib.rs +144 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/time/instant.rs +242 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/time/js.rs +39 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/time/mod.rs +15 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/time/serde.rs +177 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/time/system_time.rs +111 -0
- data/ext/cargo-vendor/web-time-1.1.0/src/web.rs +49 -0
- data/ext/cargo-vendor/wiggle-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-20.0.2/Cargo.toml +122 -0
- data/ext/cargo-vendor/wiggle-20.0.2/src/borrow.rs +113 -0
- data/ext/cargo-vendor/wiggle-20.0.2/src/guest_type.rs +237 -0
- data/ext/cargo-vendor/wiggle-20.0.2/src/lib.rs +1184 -0
- data/ext/cargo-vendor/wiggle-20.0.2/src/wasmtime.rs +97 -0
- data/ext/cargo-vendor/wiggle-generate-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-20.0.2/Cargo.toml +65 -0
- data/ext/cargo-vendor/wiggle-macro-20.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-20.0.2/Cargo.toml +55 -0
- data/ext/cargo-vendor/wiggle-macro-20.0.2/LICENSE +220 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/Cargo.toml +81 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/abi/mod.rs +671 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/bounds.rs +220 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/builtin.rs +263 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/call.rs +413 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/env.rs +435 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/mod.rs +756 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/abi.rs +291 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/asm.rs +252 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/masm.rs +573 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/mod.rs +154 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/regs.rs +149 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/mod.rs +223 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/abi.rs +517 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/asm.rs +1423 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/masm.rs +1256 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/mod.rs +169 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/lib.rs +19 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/masm.rs +947 -0
- data/ext/cargo-vendor/winch-codegen-0.18.2/src/visitor.rs +2149 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/abi.rs +309 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/lex.rs +747 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/resolve.rs +1443 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/ast.rs +1348 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/decoding.rs +1764 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/lib.rs +765 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/resolve.rs +2240 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/serde_.rs +108 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/src/sizealign.rs +179 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/all.rs +153 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit +14 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit.json +166 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit +20 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit.json +281 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit +60 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit.json +774 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit +12 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit.json +72 -0
- data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/wasi.wit +178 -0
- data/ext/src/ruby_api/convert.rs +15 -7
- data/ext/src/ruby_api/func.rs +2 -2
- data/ext/src/ruby_api/global.rs +2 -2
- data/ext/src/ruby_api/params.rs +5 -5
- data/ext/src/ruby_api/table.rs +3 -3
- data/lib/wasmtime/version.rb +1 -1
- metadata +2010 -1881
- data/ext/cargo-vendor/ahash-0.8.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/ahash-0.8.7/Cargo.toml +0 -161
- data/ext/cargo-vendor/ahash-0.8.7/src/aes_hash.rs +0 -434
- data/ext/cargo-vendor/ahash-0.8.7/src/fallback_hash.rs +0 -368
- data/ext/cargo-vendor/ahash-0.8.7/src/hash_quality_test.rs +0 -532
- data/ext/cargo-vendor/ahash-0.8.7/src/lib.rs +0 -397
- data/ext/cargo-vendor/ahash-0.8.7/src/operations.rs +0 -372
- data/ext/cargo-vendor/ahash-0.8.7/src/random_state.rs +0 -528
- data/ext/cargo-vendor/ahash-0.8.7/tests/bench.rs +0 -199
- data/ext/cargo-vendor/ahash-0.8.7/tests/map_tests.rs +0 -234
- data/ext/cargo-vendor/anyhow-1.0.79/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/anyhow-1.0.79/Cargo.toml +0 -67
- data/ext/cargo-vendor/anyhow-1.0.79/README.md +0 -179
- data/ext/cargo-vendor/anyhow-1.0.79/build.rs +0 -167
- data/ext/cargo-vendor/anyhow-1.0.79/src/backtrace.rs +0 -405
- data/ext/cargo-vendor/anyhow-1.0.79/src/chain.rs +0 -102
- data/ext/cargo-vendor/anyhow-1.0.79/src/fmt.rs +0 -156
- data/ext/cargo-vendor/anyhow-1.0.79/src/kind.rs +0 -119
- data/ext/cargo-vendor/anyhow-1.0.79/src/lib.rs +0 -698
- data/ext/cargo-vendor/anyhow-1.0.79/src/macros.rs +0 -231
- data/ext/cargo-vendor/anyhow-1.0.79/src/wrapper.rs +0 -81
- data/ext/cargo-vendor/anyhow-1.0.79/tests/test_ensure.rs +0 -722
- data/ext/cargo-vendor/anyhow-1.0.79/tests/test_macros.rs +0 -80
- data/ext/cargo-vendor/anyhow-1.0.79/tests/test_repr.rs +0 -31
- data/ext/cargo-vendor/anyhow-1.0.79/tests/ui/no-impl.stderr +0 -31
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/Cargo.toml +0 -80
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/README.md +0 -60
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/interval.rs +0 -87
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/lib.rs +0 -60
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/state.rs +0 -274
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/timer/web.rs +0 -177
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/src/timer/win.rs +0 -192
- data/ext/cargo-vendor/async-timer-1.0.0-beta.11/tests/interval.rs +0 -23
- data/ext/cargo-vendor/cap-primitives-3.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-primitives-3.0.0/Cargo.toml +0 -84
- data/ext/cargo-vendor/cap-primitives-3.0.0/src/rustix/fs/metadata_ext.rs +0 -417
- data/ext/cargo-vendor/cap-std-3.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-std-3.0.0/Cargo.toml +0 -67
- data/ext/cargo-vendor/cap-std-3.0.0/src/fs/dir.rs +0 -848
- data/ext/cargo-vendor/cap-std-3.0.0/src/fs_utf8/dir.rs +0 -790
- data/ext/cargo-vendor/cranelift-bforest-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.106.2/Cargo.toml +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/Cargo.toml +0 -175
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/build.rs +0 -395
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/alias_analysis.rs +0 -409
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/binemit/mod.rs +0 -171
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/bitset.rs +0 -165
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/context.rs +0 -384
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph/elaborate.rs +0 -836
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph.rs +0 -702
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/inst_predicates.rs +0 -217
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/constant.rs +0 -462
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/dfg.rs +0 -1734
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/entities.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/function.rs +0 -500
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/instructions.rs +0 -1000
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/memflags.rs +0 -310
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/mod.rs +0 -110
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/table.rs +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/trapcode.rs +0 -144
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/types.rs +0 -629
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/abi.rs +0 -1707
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/emit.rs +0 -3958
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/mod.rs +0 -3082
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst.isle +0 -4197
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower/isle.rs +0 -879
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower.isle +0 -2917
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/mod.rs +0 -241
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/pcc.rs +0 -565
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/call_conv.rs +0 -119
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/abi.rs +0 -1097
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/args.rs +0 -1974
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/emit.rs +0 -3485
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/encode.rs +0 -654
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst.isle +0 -2928
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower/isle.rs +0 -620
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower.isle +0 -2864
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/abi.rs +0 -1041
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/args.rs +0 -355
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/emit.rs +0 -3663
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst.isle +0 -5031
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/lower.isle +0 -3979
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/abi.rs +0 -1303
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/evex.rs +0 -749
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/rex.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/vex.rs +0 -492
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/args.rs +0 -2269
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit.rs +0 -4390
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit_state.rs +0 -72
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/mod.rs +0 -2852
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst.isle +0 -5232
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower/isle.rs +0 -1065
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.isle +0 -4770
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.rs +0 -353
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/mod.rs +0 -233
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/pcc.rs +0 -939
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/mod.rs +0 -356
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/table.rs +0 -114
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/abi.rs +0 -2657
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/buffer.rs +0 -2509
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/inst_common.rs +0 -74
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/isle.rs +0 -914
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/lower.rs +0 -1443
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/mod.rs +0 -558
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/pcc.rs +0 -159
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/vcode.rs +0 -1809
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/nan_canonicalization.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts/cprop.isle +0 -266
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts.rs +0 -284
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/prelude.isle +0 -641
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/result.rs +0 -108
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/settings.rs +0 -602
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/verifier/mod.rs +0 -2033
- data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/write.rs +0 -647
- data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/entities.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/formats.rs +0 -213
- data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/instructions.rs +0 -3810
- data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.106.2/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.106.2/Cargo.toml +0 -50
- data/ext/cargo-vendor/cranelift-frontend-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.106.2/Cargo.toml +0 -68
- data/ext/cargo-vendor/cranelift-isle-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.106.2/Cargo.toml +0 -46
- data/ext/cargo-vendor/cranelift-native-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.106.2/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/Cargo.toml +0 -106
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/code_translator.rs +0 -3680
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/dummy.rs +0 -952
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/mod.rs +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/spec.rs +0 -952
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/func_translator.rs +0 -432
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/lib.rs +0 -62
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/state.rs +0 -542
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/tests/wasm_testsuite.rs +0 -153
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/arith.wat +0 -13
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/br_table.wat +0 -30
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call-simd.wat +0 -14
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call.wat +0 -10
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fannkuch.wat +0 -12180
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fasta.wat +0 -12056
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_ifs.wat +0 -11505
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_primes.wat +0 -11185
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fac-multi-value.wat +0 -19
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fibonacci.wat +0 -22
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/globals.wat +0 -8
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall-simd.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-0.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-1.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-2.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-3.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-4.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-5.wat +0 -14
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-6.wat +0 -14
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params-2.wat +0 -18
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params.wat +0 -41
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/memory.wat +0 -11
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-0.wat +0 -3
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-1.wat +0 -6
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-10.wat +0 -10
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-11.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-12.wat +0 -9
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-13.wat +0 -10
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-14.wat +0 -10
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-15.wat +0 -22
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-16.wat +0 -9
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-17.wat +0 -26
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-2.wat +0 -6
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-3.wat +0 -13
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-4.wat +0 -13
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-5.wat +0 -11
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-6.wat +0 -11
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-7.wat +0 -9
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-8.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-9.wat +0 -15
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/nullref.wat +0 -11
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/passive-data.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2303.wat +0 -15
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2559.wat +0 -51
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/ref-func-0.wat +0 -12
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/rust_fannkuch.wat +0 -1723
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/select.wat +0 -19
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd-store.wat +0 -83
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd.wat +0 -29
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/table-copy.wat +0 -22
- data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/unreachable_code.wat +0 -77
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/Cargo.toml +0 -49
- data/ext/cargo-vendor/lazy_static-1.4.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/lazy_static-1.4.0/Cargo.toml +0 -46
- data/ext/cargo-vendor/lazy_static-1.4.0/README.md +0 -79
- data/ext/cargo-vendor/lazy_static-1.4.0/src/core_lazy.rs +0 -31
- data/ext/cargo-vendor/lazy_static-1.4.0/src/inline_lazy.rs +0 -57
- data/ext/cargo-vendor/lazy_static-1.4.0/src/lib.rs +0 -215
- data/ext/cargo-vendor/lazy_static-1.4.0/tests/no_std.rs +0 -20
- data/ext/cargo-vendor/lazy_static-1.4.0/tests/test.rs +0 -164
- data/ext/cargo-vendor/mach-0.3.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/mach-0.3.2/Cargo.toml +0 -46
- data/ext/cargo-vendor/mach-0.3.2/LICENSE.md +0 -23
- data/ext/cargo-vendor/mach-0.3.2/README.md +0 -55
- data/ext/cargo-vendor/mach-0.3.2/ci/build_fail.sh +0 -7
- data/ext/cargo-vendor/mach-0.3.2/ci/deploy_and_run_on_ios_simulator.rs +0 -175
- data/ext/cargo-vendor/mach-0.3.2/ci/run.sh +0 -57
- data/ext/cargo-vendor/mach-0.3.2/examples/dump_process_registers.rs +0 -136
- data/ext/cargo-vendor/mach-0.3.2/src/exc.rs +0 -44
- data/ext/cargo-vendor/mach-0.3.2/src/kern_return.rs +0 -58
- data/ext/cargo-vendor/mach-0.3.2/src/lib.rs +0 -60
- data/ext/cargo-vendor/mach-0.3.2/src/mach_port.rs +0 -29
- data/ext/cargo-vendor/mach-0.3.2/src/message.rs +0 -248
- data/ext/cargo-vendor/mach-0.3.2/src/port.rs +0 -26
- data/ext/cargo-vendor/mach-0.3.2/src/structs.rs +0 -62
- data/ext/cargo-vendor/mach-0.3.2/src/task.rs +0 -41
- data/ext/cargo-vendor/mach-0.3.2/src/task_info.rs +0 -44
- data/ext/cargo-vendor/mach-0.3.2/src/thread_act.rs +0 -23
- data/ext/cargo-vendor/mach-0.3.2/src/thread_status.rs +0 -23
- data/ext/cargo-vendor/mach-0.3.2/src/traps.rs +0 -35
- data/ext/cargo-vendor/mach-0.3.2/src/vm.rs +0 -247
- data/ext/cargo-vendor/mach-0.3.2/src/vm_attributes.rs +0 -18
- data/ext/cargo-vendor/mach-0.3.2/src/vm_page_size.rs +0 -33
- data/ext/cargo-vendor/mach-0.3.2/src/vm_prot.rs +0 -14
- data/ext/cargo-vendor/mach-0.3.2/src/vm_purgable.rs +0 -42
- data/ext/cargo-vendor/mach-0.3.2/src/vm_region.rs +0 -238
- data/ext/cargo-vendor/mach-0.3.2/src/vm_statistics.rs +0 -78
- data/ext/cargo-vendor/mach-0.3.2/src/vm_sync.rs +0 -11
- data/ext/cargo-vendor/mach-0.3.2/src/vm_types.rs +0 -19
- data/ext/cargo-vendor/wasi-common-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-19.0.2/Cargo.toml +0 -221
- data/ext/cargo-vendor/wasi-common-19.0.2/src/ctx.rs +0 -128
- data/ext/cargo-vendor/wasi-common-19.0.2/src/lib.rs +0 -189
- data/ext/cargo-vendor/wasi-common-19.0.2/src/snapshots/preview_1.rs +0 -1491
- data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/async_.rs +0 -289
- data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/sync.rs +0 -275
- data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +0 -43
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasmparser-0.201.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.lock +0 -744
- data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.toml +0 -66
- data/ext/cargo-vendor/wasmparser-0.201.0/src/readers/component/types.rs +0 -549
- data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/operators.rs +0 -4074
- data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/types.rs +0 -4449
- data/ext/cargo-vendor/wasmprinter-0.201.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.201.0/Cargo.toml +0 -45
- data/ext/cargo-vendor/wasmprinter-0.201.0/src/lib.rs +0 -3143
- data/ext/cargo-vendor/wasmprinter-0.201.0/src/operator.rs +0 -1110
- data/ext/cargo-vendor/wasmprinter-0.201.0/tests/all.rs +0 -279
- data/ext/cargo-vendor/wasmtime-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-19.0.2/Cargo.toml +0 -261
- data/ext/cargo-vendor/wasmtime-19.0.2/src/compile.rs +0 -835
- data/ext/cargo-vendor/wasmtime-19.0.2/src/config.rs +0 -2649
- data/ext/cargo-vendor/wasmtime-19.0.2/src/engine/serialization.rs +0 -809
- data/ext/cargo-vendor/wasmtime-19.0.2/src/engine.rs +0 -735
- data/ext/cargo-vendor/wasmtime-19.0.2/src/lib.rs +0 -293
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/code_memory.rs +0 -335
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/component.rs +0 -586
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/host.rs +0 -456
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/options.rs +0 -541
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/typed.rs +0 -2484
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func.rs +0 -752
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/instance.rs +0 -818
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/linker.rs +0 -788
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/matching.rs +0 -212
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/mod.rs +0 -678
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/resources.rs +0 -1169
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/types.rs +0 -961
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/values.rs +0 -1388
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/coredump.rs +0 -321
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/global.rs +0 -249
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/table.rs +0 -416
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func/typed.rs +0 -985
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func.rs +0 -2585
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instance.rs +0 -981
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instantiate.rs +0 -423
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/linker.rs +0 -1518
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/memory.rs +0 -997
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module/registry.rs +0 -360
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module.rs +0 -1367
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/profiling.rs +0 -222
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/gc_ref.rs +0 -110
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/no_gc_ref.rs +0 -60
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref.rs +0 -9
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store/data.rs +0 -289
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store.rs +0 -2445
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/func.rs +0 -144
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/global.rs +0 -70
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/memory.rs +0 -268
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/table.rs +0 -20
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trap.rs +0 -641
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/type_registry.rs +0 -640
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types/matching.rs +0 -334
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types.rs +0 -1236
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/v128.rs +0 -131
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/values.rs +0 -771
- data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime.rs +0 -112
- data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-19.0.2/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/src/component.rs +0 -1295
- data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/tests/codegen.rs +0 -191
- data/ext/cargo-vendor/wasmtime-component-util-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-19.0.2/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/Cargo.toml +0 -114
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/builder.rs +0 -127
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler/component.rs +0 -960
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler.rs +0 -1316
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/address_transform.rs +0 -784
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/expression.rs +0 -1252
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/func_environ.rs +0 -2846
- data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/lib.rs +0 -186
- data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/compiled_function.rs +0 -231
- data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/lib.rs +0 -130
- data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.lock +0 -782
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.toml +0 -141
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/address_map.rs +0 -191
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/builtin.rs +0 -155
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/compilation.rs +0 -402
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/artifacts.rs +0 -45
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/compiler.rs +0 -47
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/info.rs +0 -594
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/adapt.rs +0 -457
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/inline.rs +0 -1332
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/types.rs +0 -1933
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component.rs +0 -97
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/trampoline.rs +0 -3229
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/transcode.rs +0 -168
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact.rs +0 -713
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/lib.rs +0 -66
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module.rs +0 -1117
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_artifacts.rs +0 -377
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_environ.rs +0 -903
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/obj.rs +0 -172
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/trap_encoding.rs +0 -245
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/tunables.rs +0 -154
- data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/vmoffsets.rs +0 -918
- data/ext/cargo-vendor/wasmtime-fiber-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-19.0.2/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-fiber-19.0.2/src/unix.rs +0 -265
- data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/Cargo.toml +0 -140
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/build.rs +0 -28
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/aarch64.rs +0 -120
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/riscv64.rs +0 -88
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.S +0 -70
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.rs +0 -61
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/x86_64.rs +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component/libcalls.rs +0 -572
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component.rs +0 -864
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/export.rs +0 -105
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/gc.rs +0 -1058
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/no_gc.rs +0 -125
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref.rs +0 -24
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/on_demand.rs +0 -196
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling/table_pool.rs +0 -227
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling.rs +0 -658
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator.rs +0 -730
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance.rs +0 -1527
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/lib.rs +0 -264
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/libcalls.rs +0 -776
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/memory.rs +0 -972
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/send_sync_ptr.rs +0 -93
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/mmap.rs +0 -111
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/traphandlers.rs +0 -51
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/miri/mmap.rs +0 -94
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/machports.rs +0 -488
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/mmap.rs +0 -151
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/signals.rs +0 -402
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/windows/traphandlers.rs +0 -105
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/table.rs +0 -643
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers/coredump.rs +0 -38
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers.rs +0 -736
- data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/vmcontext.rs +0 -1215
- data/ext/cargo-vendor/wasmtime-slab-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-19.0.2/Cargo.toml +0 -21
- data/ext/cargo-vendor/wasmtime-slab-19.0.2/src/lib.rs +0 -450
- data/ext/cargo-vendor/wasmtime-types-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-19.0.2/Cargo.toml +0 -36
- data/ext/cargo-vendor/wasmtime-types-19.0.2/src/lib.rs +0 -640
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/Cargo.toml +0 -194
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/command.rs +0 -122
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ctx.rs +0 -353
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/filesystem.rs +0 -373
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem/sync.rs +0 -517
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem.rs +0 -1081
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/io.rs +0 -366
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/network.rs +0 -519
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/tcp.rs +0 -677
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ip_name_lookup.rs +0 -123
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/lib.rs +0 -323
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/network.rs +0 -108
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/p1ctx.rs +0 -37
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/pipe.rs +0 -826
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/poll.rs +0 -179
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview0.rs +0 -872
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview1.rs +0 -2361
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio/worker_thread_stdin.rs +0 -173
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio.rs +0 -443
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/tcp.rs +0 -350
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/udp.rs +0 -125
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/write_stream.rs +0 -203
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/api.rs +0 -210
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/async_.rs +0 -380
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/main.rs +0 -106
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/preview1.rs +0 -243
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/sync.rs +0 -315
- data/ext/cargo-vendor/wasmtime-wasi-19.0.2/wit/deps/io/poll.wit +0 -42
- data/ext/cargo-vendor/wasmtime-winch-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-19.0.2/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/builder.rs +0 -65
- data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/compiler.rs +0 -283
- data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/Cargo.toml +0 -41
- data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/lib.rs +0 -2104
- data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/rust.rs +0 -421
- data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/types.rs +0 -194
- data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/src/lib.rs +0 -404
- data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +0 -59
- data/ext/cargo-vendor/wast-201.0.0/src/component/binary.rs +0 -1004
- data/ext/cargo-vendor/wast-201.0.0/src/component/resolve.rs +0 -1006
- data/ext/cargo-vendor/wast-201.0.0/src/component/types.rs +0 -991
- data/ext/cargo-vendor/wast-201.0.0/src/component/wast.rs +0 -160
- data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +0 -1365
- data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +0 -1993
- data/ext/cargo-vendor/wast-201.0.0/src/core/func.rs +0 -136
- data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +0 -281
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +0 -233
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +0 -763
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/types.rs +0 -271
- data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +0 -289
- data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +0 -861
- data/ext/cargo-vendor/wast-201.0.0/src/core/wast.rs +0 -256
- data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +0 -1442
- data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +0 -542
- data/ext/cargo-vendor/wast-201.0.0/src/names.rs +0 -89
- data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +0 -1374
- data/ext/cargo-vendor/wast-201.0.0/src/token.rs +0 -718
- data/ext/cargo-vendor/wast-201.0.0/src/wast.rs +0 -420
- data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +0 -63
- data/ext/cargo-vendor/wast-201.0.0/tests/annotations.rs +0 -200
- data/ext/cargo-vendor/wast-201.0.0/tests/parse-fail.rs +0 -98
- data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/wiggle-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-19.0.2/Cargo.toml +0 -122
- data/ext/cargo-vendor/wiggle-19.0.2/src/borrow.rs +0 -259
- data/ext/cargo-vendor/wiggle-19.0.2/src/guest_type.rs +0 -237
- data/ext/cargo-vendor/wiggle-19.0.2/src/lib.rs +0 -1199
- data/ext/cargo-vendor/wiggle-19.0.2/src/wasmtime.rs +0 -101
- data/ext/cargo-vendor/wiggle-generate-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-19.0.2/Cargo.toml +0 -65
- data/ext/cargo-vendor/wiggle-macro-19.0.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-19.0.2/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.17.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.17.2/Cargo.toml +0 -77
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/abi/mod.rs +0 -737
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/bounds.rs +0 -220
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/builtin.rs +0 -272
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/call.rs +0 -413
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/env.rs +0 -399
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/mod.rs +0 -672
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/abi.rs +0 -309
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/asm.rs +0 -247
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/masm.rs +0 -557
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/mod.rs +0 -152
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/regs.rs +0 -183
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/mod.rs +0 -232
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/abi.rs +0 -543
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/asm.rs +0 -1418
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/masm.rs +0 -1300
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/mod.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/lib.rs +0 -21
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/masm.rs +0 -955
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/trampoline.rs +0 -626
- data/ext/cargo-vendor/winch-codegen-0.17.2/src/visitor.rs +0 -2101
- data/ext/cargo-vendor/wit-parser-0.201.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.201.0/Cargo.toml +0 -101
- data/ext/cargo-vendor/wit-parser-0.201.0/src/abi.rs +0 -295
- data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/lex.rs +0 -747
- data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/resolve.rs +0 -1427
- data/ext/cargo-vendor/wit-parser-0.201.0/src/ast.rs +0 -1348
- data/ext/cargo-vendor/wit-parser-0.201.0/src/decoding.rs +0 -1764
- data/ext/cargo-vendor/wit-parser-0.201.0/src/lib.rs +0 -747
- data/ext/cargo-vendor/wit-parser-0.201.0/src/resolve.rs +0 -2239
- data/ext/cargo-vendor/wit-parser-0.201.0/src/serde_.rs +0 -108
- data/ext/cargo-vendor/wit-parser-0.201.0/src/sizealign.rs +0 -144
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/all.rs +0 -185
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit +0 -14
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit.json +0 -166
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit +0 -20
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit.json +0 -281
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit +0 -60
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit.json +0 -774
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit +0 -12
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit.json +0 -72
- data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/wasi.wit +0 -178
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/FAQ.md +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/README.md +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/build.rs +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/convert.rs +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/hash_map.rs +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/hash_set.rs +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/src/specialize.rs +0 -0
- /data/ext/cargo-vendor/{ahash-0.8.7 → ahash-0.8.11}/tests/nopanic.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/build/probe.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ptr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/drop/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_backtrace.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_boxed.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_convert.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_downcast.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_ffi.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/no-impl.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.stderr +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/c_wrapper/posix.c +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/apple.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/async_tokio1.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/dummy.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/timer/posix.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/tests/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.11 → async-timer-1.0.0-beta.14}/tests/timer.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/access.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/assert_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/dir_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file_path_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/file_type.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/follow_symlinks.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/is_file_read_write.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/canonical_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/cow_component.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/open_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/manually/read_link_one.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/maybe_owned_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_ambient.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/open_unchecked_error.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/remove_open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/set_times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/stat.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/access.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/open_parent.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_symlink_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/set_times_nofollow.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/fs/via_parent/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/darwin/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/check.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/remove_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/remove_file_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/fs/stat_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/freebsd/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/access_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/copy_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/cvt.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_root_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/open_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/permissions_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_symlink_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/fs/times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/file_metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/procfs.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/fs/stat_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/linux/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/rustix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/monotonic_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/system_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/time/system_time.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/access_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/create_file_at_w.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/get_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/metadata_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/open_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_link_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/remove_open_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_symlink_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-3.0.0 → cap-primitives-3.1.0}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/file.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/fs_utf8/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/tcp_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/net/udp_socket.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_datagram.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/os/unix/net/unix_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-3.0.0 → cap-std-3.1.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/sections_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{lazy_static-1.4.0 → lazy_static-1.5.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{lazy_static-1.4.0 → lazy_static-1.5.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/boolean.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/bootstrap.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_priv.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_reply.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_types.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/dyld_kernel.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/exception_types.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_init.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_time.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_types.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/memory_object_types.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_behavior.rs +0 -0
- /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_inherit.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasm-encoder-0.209.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmparser-0.202.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmprinter-0.202.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmprinter-0.202.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.2}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-19.0.2 → wasmtime-asm-macros-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cache-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.2}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.2}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-19.0.2 → wasmtime-component-util-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-cranelift-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.2}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-19.0.2 → wasmtime-cranelift-20.0.2}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-environ-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/types/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.2}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-fiber-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.2}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.2}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.2}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-runtime-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/memory_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/instance/allocator/pooling/stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/custom/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2/src → wasmtime-runtime-20.0.2/src/threads}/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.2}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-types-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-types-20.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-19.0.2 → wasmtime-versioned-export-macros-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wasmtime-wasi-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-19.0.2 → wasmtime-wit-bindgen-20.0.2}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.201.0 → wast-209.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-201.0.0 → wast-209.0.1}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-19.0.2 → wat-1.209.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.209.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.209.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.2}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-generate-20.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.2}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-macro-20.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/codegen/context.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.2}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/docs.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/live.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/wasi.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,2104 +0,0 @@
|
|
1
|
-
use crate::rust::{to_rust_ident, to_rust_upper_camel_case, RustGenerator, TypeMode};
|
2
|
-
use crate::types::{TypeInfo, Types};
|
3
|
-
use anyhow::{bail, Context};
|
4
|
-
use heck::*;
|
5
|
-
use indexmap::{IndexMap, IndexSet};
|
6
|
-
use std::collections::{BTreeMap, HashMap, HashSet};
|
7
|
-
use std::fmt::Write as _;
|
8
|
-
use std::io::{Read, Write};
|
9
|
-
use std::mem;
|
10
|
-
use std::process::{Command, Stdio};
|
11
|
-
use wit_parser::*;
|
12
|
-
|
13
|
-
macro_rules! uwrite {
|
14
|
-
($dst:expr, $($arg:tt)*) => {
|
15
|
-
write!($dst, $($arg)*).unwrap()
|
16
|
-
};
|
17
|
-
}
|
18
|
-
|
19
|
-
macro_rules! uwriteln {
|
20
|
-
($dst:expr, $($arg:tt)*) => {
|
21
|
-
writeln!($dst, $($arg)*).unwrap()
|
22
|
-
};
|
23
|
-
}
|
24
|
-
|
25
|
-
mod rust;
|
26
|
-
mod source;
|
27
|
-
mod types;
|
28
|
-
use source::Source;
|
29
|
-
|
30
|
-
#[derive(Clone)]
|
31
|
-
enum InterfaceName {
|
32
|
-
/// This interface was remapped using `with` to some other Rust code.
|
33
|
-
Remapped {
|
34
|
-
name_at_root: String,
|
35
|
-
local_path: Vec<String>,
|
36
|
-
},
|
37
|
-
/// This interface is generated in the module hierarchy specified.
|
38
|
-
Path(Vec<String>),
|
39
|
-
}
|
40
|
-
|
41
|
-
#[derive(Default)]
|
42
|
-
struct Wasmtime {
|
43
|
-
src: Source,
|
44
|
-
opts: Opts,
|
45
|
-
import_interfaces: Vec<(String, InterfaceName)>,
|
46
|
-
import_functions: Vec<ImportFunction>,
|
47
|
-
exports: Exports,
|
48
|
-
types: Types,
|
49
|
-
sizes: SizeAlign,
|
50
|
-
interface_names: HashMap<InterfaceId, InterfaceName>,
|
51
|
-
with_name_counter: usize,
|
52
|
-
interface_last_seen_as_import: HashMap<InterfaceId, bool>,
|
53
|
-
trappable_errors: IndexMap<TypeId, String>,
|
54
|
-
}
|
55
|
-
|
56
|
-
struct ImportFunction {
|
57
|
-
add_to_linker: String,
|
58
|
-
sig: String,
|
59
|
-
}
|
60
|
-
|
61
|
-
#[derive(Default)]
|
62
|
-
struct Exports {
|
63
|
-
fields: BTreeMap<String, (String, String)>,
|
64
|
-
modules: Vec<(String, InterfaceName)>,
|
65
|
-
funcs: Vec<String>,
|
66
|
-
}
|
67
|
-
|
68
|
-
#[derive(Default, Debug, Clone, Copy)]
|
69
|
-
pub enum Ownership {
|
70
|
-
/// Generated types will be composed entirely of owning fields, regardless
|
71
|
-
/// of whether they are used as parameters to guest exports or not.
|
72
|
-
#[default]
|
73
|
-
Owning,
|
74
|
-
|
75
|
-
/// Generated types used as parameters to guest exports will be "deeply
|
76
|
-
/// borrowing", i.e. contain references rather than owned values when
|
77
|
-
/// applicable.
|
78
|
-
Borrowing {
|
79
|
-
/// Whether or not to generate "duplicate" type definitions for a single
|
80
|
-
/// WIT type if necessary, for example if it's used as both an import
|
81
|
-
/// and an export, or if it's used both as a parameter to an export and
|
82
|
-
/// a return value from an export.
|
83
|
-
duplicate_if_necessary: bool,
|
84
|
-
},
|
85
|
-
}
|
86
|
-
|
87
|
-
#[derive(Default, Debug, Clone)]
|
88
|
-
pub struct Opts {
|
89
|
-
/// Whether or not `rustfmt` is executed to format generated code.
|
90
|
-
pub rustfmt: bool,
|
91
|
-
|
92
|
-
/// Whether or not to emit `tracing` macro calls on function entry/exit.
|
93
|
-
pub tracing: bool,
|
94
|
-
|
95
|
-
/// Whether or not to use async rust functions and traits.
|
96
|
-
pub async_: AsyncConfig,
|
97
|
-
|
98
|
-
/// A list of "trappable errors" which are used to replace the `E` in
|
99
|
-
/// `result<T, E>` found in WIT.
|
100
|
-
pub trappable_error_type: Vec<TrappableError>,
|
101
|
-
|
102
|
-
/// Whether to generate owning or borrowing type definitions.
|
103
|
-
pub ownership: Ownership,
|
104
|
-
|
105
|
-
/// Whether or not to generate code for only the interfaces of this wit file or not.
|
106
|
-
pub only_interfaces: bool,
|
107
|
-
|
108
|
-
/// Remapping of interface names to rust module names.
|
109
|
-
/// TODO: is there a better type to use for the value of this map?
|
110
|
-
pub with: HashMap<String, String>,
|
111
|
-
}
|
112
|
-
|
113
|
-
#[derive(Debug, Clone)]
|
114
|
-
pub struct TrappableError {
|
115
|
-
/// Full path to the error, such as `wasi:io/streams/error`.
|
116
|
-
pub wit_path: String,
|
117
|
-
|
118
|
-
/// The name, in Rust, of the error type to generate.
|
119
|
-
pub rust_type_name: String,
|
120
|
-
}
|
121
|
-
|
122
|
-
#[derive(Default, Debug, Clone)]
|
123
|
-
pub enum AsyncConfig {
|
124
|
-
/// No functions are `async`.
|
125
|
-
#[default]
|
126
|
-
None,
|
127
|
-
/// All generated functions should be `async`.
|
128
|
-
All,
|
129
|
-
/// These imported functions should not be async, but everything else is.
|
130
|
-
AllExceptImports(HashSet<String>),
|
131
|
-
/// These functions are the only imports that are async, all other imports
|
132
|
-
/// are sync.
|
133
|
-
///
|
134
|
-
/// Note that all exports are still async in this situation.
|
135
|
-
OnlyImports(HashSet<String>),
|
136
|
-
}
|
137
|
-
|
138
|
-
impl AsyncConfig {
|
139
|
-
pub fn is_import_async(&self, f: &str) -> bool {
|
140
|
-
match self {
|
141
|
-
AsyncConfig::None => false,
|
142
|
-
AsyncConfig::All => true,
|
143
|
-
AsyncConfig::AllExceptImports(set) => !set.contains(f),
|
144
|
-
AsyncConfig::OnlyImports(set) => set.contains(f),
|
145
|
-
}
|
146
|
-
}
|
147
|
-
|
148
|
-
pub fn maybe_async(&self) -> bool {
|
149
|
-
match self {
|
150
|
-
AsyncConfig::None => false,
|
151
|
-
AsyncConfig::All | AsyncConfig::AllExceptImports(_) | AsyncConfig::OnlyImports(_) => {
|
152
|
-
true
|
153
|
-
}
|
154
|
-
}
|
155
|
-
}
|
156
|
-
}
|
157
|
-
|
158
|
-
impl Opts {
|
159
|
-
pub fn generate(&self, resolve: &Resolve, world: WorldId) -> String {
|
160
|
-
let mut r = Wasmtime::default();
|
161
|
-
r.sizes.fill(resolve);
|
162
|
-
r.opts = self.clone();
|
163
|
-
r.generate(resolve, world)
|
164
|
-
}
|
165
|
-
}
|
166
|
-
|
167
|
-
impl Wasmtime {
|
168
|
-
fn name_interface(
|
169
|
-
&mut self,
|
170
|
-
resolve: &Resolve,
|
171
|
-
id: InterfaceId,
|
172
|
-
name: &WorldKey,
|
173
|
-
is_export: bool,
|
174
|
-
) -> bool {
|
175
|
-
let mut path = Vec::new();
|
176
|
-
if is_export {
|
177
|
-
path.push("exports".to_string());
|
178
|
-
}
|
179
|
-
match name {
|
180
|
-
WorldKey::Name(name) => {
|
181
|
-
path.push(name.to_snake_case());
|
182
|
-
}
|
183
|
-
WorldKey::Interface(_) => {
|
184
|
-
let iface = &resolve.interfaces[id];
|
185
|
-
let pkgname = &resolve.packages[iface.package.unwrap()].name;
|
186
|
-
path.push(pkgname.namespace.to_snake_case());
|
187
|
-
path.push(self.name_package_module(resolve, iface.package.unwrap()));
|
188
|
-
path.push(to_rust_ident(iface.name.as_ref().unwrap()));
|
189
|
-
}
|
190
|
-
}
|
191
|
-
let entry = if let Some(remapped_path) = self.lookup_replacement(resolve, name, None) {
|
192
|
-
let remapped_path = remapped_path.to_string();
|
193
|
-
let name = format!("__with_name{}", self.with_name_counter);
|
194
|
-
self.with_name_counter += 1;
|
195
|
-
uwriteln!(self.src, "use {remapped_path} as {name};");
|
196
|
-
InterfaceName::Remapped {
|
197
|
-
name_at_root: name,
|
198
|
-
local_path: path,
|
199
|
-
}
|
200
|
-
} else {
|
201
|
-
InterfaceName::Path(path)
|
202
|
-
};
|
203
|
-
|
204
|
-
let remapped = matches!(entry, InterfaceName::Remapped { .. });
|
205
|
-
self.interface_names.insert(id, entry);
|
206
|
-
remapped
|
207
|
-
}
|
208
|
-
|
209
|
-
/// If the package `id` is the only package with its namespace/name combo
|
210
|
-
/// then pass through the name unmodified. If, however, there are multiple
|
211
|
-
/// versions of this package then the package module is going to get version
|
212
|
-
/// information.
|
213
|
-
fn name_package_module(&self, resolve: &Resolve, id: PackageId) -> String {
|
214
|
-
let pkg = &resolve.packages[id];
|
215
|
-
let versions_with_same_name = resolve
|
216
|
-
.packages
|
217
|
-
.iter()
|
218
|
-
.filter_map(|(_, p)| {
|
219
|
-
if p.name.namespace == pkg.name.namespace && p.name.name == pkg.name.name {
|
220
|
-
Some(&p.name.version)
|
221
|
-
} else {
|
222
|
-
None
|
223
|
-
}
|
224
|
-
})
|
225
|
-
.collect::<Vec<_>>();
|
226
|
-
let base = pkg.name.name.to_snake_case();
|
227
|
-
if versions_with_same_name.len() == 1 {
|
228
|
-
return base;
|
229
|
-
}
|
230
|
-
|
231
|
-
let version = match &pkg.name.version {
|
232
|
-
Some(version) => version,
|
233
|
-
// If this package didn't have a version then don't mangle its name
|
234
|
-
// and other packages with the same name but with versions present
|
235
|
-
// will have their names mangled.
|
236
|
-
None => return base,
|
237
|
-
};
|
238
|
-
|
239
|
-
// Here there's multiple packages with the same name that differ only in
|
240
|
-
// version, so the version needs to be mangled into the Rust module name
|
241
|
-
// that we're generating. This in theory could look at all of
|
242
|
-
// `versions_with_same_name` and produce a minimal diff, e.g. for 0.1.0
|
243
|
-
// and 0.2.0 this could generate "foo1" and "foo2", but for now
|
244
|
-
// a simpler path is chosen to generate "foo0_1_0" and "foo0_2_0".
|
245
|
-
let version = version
|
246
|
-
.to_string()
|
247
|
-
.replace('.', "_")
|
248
|
-
.replace('-', "_")
|
249
|
-
.replace('+', "_")
|
250
|
-
.to_snake_case();
|
251
|
-
format!("{base}{version}")
|
252
|
-
}
|
253
|
-
|
254
|
-
fn generate(&mut self, resolve: &Resolve, id: WorldId) -> String {
|
255
|
-
self.types.analyze(resolve, id);
|
256
|
-
for (i, te) in self.opts.trappable_error_type.iter().enumerate() {
|
257
|
-
let id = resolve_type_in_package(resolve, &te.wit_path)
|
258
|
-
.context(format!("resolving {:?}", te))
|
259
|
-
.unwrap();
|
260
|
-
let name = format!("_TrappableError{i}");
|
261
|
-
uwriteln!(self.src, "type {name} = {};", te.rust_type_name);
|
262
|
-
let prev = self.trappable_errors.insert(id, name);
|
263
|
-
assert!(prev.is_none());
|
264
|
-
}
|
265
|
-
|
266
|
-
let world = &resolve.worlds[id];
|
267
|
-
for (name, import) in world.imports.iter() {
|
268
|
-
if !self.opts.only_interfaces || matches!(import, WorldItem::Interface(_)) {
|
269
|
-
self.import(resolve, id, name, import);
|
270
|
-
}
|
271
|
-
}
|
272
|
-
|
273
|
-
for (name, export) in world.exports.iter() {
|
274
|
-
if !self.opts.only_interfaces || matches!(export, WorldItem::Interface(_)) {
|
275
|
-
self.export(resolve, name, export);
|
276
|
-
}
|
277
|
-
}
|
278
|
-
self.finish(resolve, id)
|
279
|
-
}
|
280
|
-
|
281
|
-
fn import(&mut self, resolve: &Resolve, world: WorldId, name: &WorldKey, item: &WorldItem) {
|
282
|
-
let mut gen = InterfaceGenerator::new(self, resolve);
|
283
|
-
match item {
|
284
|
-
WorldItem::Function(func) => {
|
285
|
-
// Only generate a trait signature for free functions since
|
286
|
-
// resource-related functions get their trait signatures
|
287
|
-
// during `type_resource`.
|
288
|
-
if let FunctionKind::Freestanding = func.kind {
|
289
|
-
gen.generate_function_trait_sig(func);
|
290
|
-
}
|
291
|
-
let sig = mem::take(&mut gen.src).into();
|
292
|
-
gen.generate_add_function_to_linker(TypeOwner::World(world), func, "linker");
|
293
|
-
let add_to_linker = gen.src.into();
|
294
|
-
self.import_functions
|
295
|
-
.push(ImportFunction { sig, add_to_linker });
|
296
|
-
}
|
297
|
-
WorldItem::Interface(id) => {
|
298
|
-
gen.gen.interface_last_seen_as_import.insert(*id, true);
|
299
|
-
if gen.gen.name_interface(resolve, *id, name, false) {
|
300
|
-
return;
|
301
|
-
}
|
302
|
-
gen.current_interface = Some((*id, name, false));
|
303
|
-
gen.types(*id);
|
304
|
-
let key_name = resolve.name_world_key(name);
|
305
|
-
|
306
|
-
gen.generate_add_to_linker(*id, &key_name);
|
307
|
-
|
308
|
-
let module = &gen.src[..];
|
309
|
-
|
310
|
-
let snake = match name {
|
311
|
-
WorldKey::Name(s) => s.to_snake_case(),
|
312
|
-
WorldKey::Interface(id) => resolve.interfaces[*id]
|
313
|
-
.name
|
314
|
-
.as_ref()
|
315
|
-
.unwrap()
|
316
|
-
.to_snake_case(),
|
317
|
-
};
|
318
|
-
let module = format!(
|
319
|
-
"
|
320
|
-
#[allow(clippy::all)]
|
321
|
-
pub mod {snake} {{
|
322
|
-
#[allow(unused_imports)]
|
323
|
-
use wasmtime::component::__internal::anyhow;
|
324
|
-
|
325
|
-
{module}
|
326
|
-
}}
|
327
|
-
"
|
328
|
-
);
|
329
|
-
self.import_interfaces
|
330
|
-
.push((module, self.interface_names[id].clone()));
|
331
|
-
}
|
332
|
-
WorldItem::Type(ty) => {
|
333
|
-
let name = match name {
|
334
|
-
WorldKey::Name(name) => name,
|
335
|
-
WorldKey::Interface(_) => unreachable!(),
|
336
|
-
};
|
337
|
-
gen.define_type(name, *ty);
|
338
|
-
let body = mem::take(&mut gen.src);
|
339
|
-
self.src.push_str(&body);
|
340
|
-
}
|
341
|
-
};
|
342
|
-
}
|
343
|
-
|
344
|
-
fn export(&mut self, resolve: &Resolve, name: &WorldKey, item: &WorldItem) {
|
345
|
-
let mut gen = InterfaceGenerator::new(self, resolve);
|
346
|
-
let (field, ty, getter) = match item {
|
347
|
-
WorldItem::Function(func) => {
|
348
|
-
gen.define_rust_guest_export(resolve, None, func);
|
349
|
-
let body = mem::take(&mut gen.src).into();
|
350
|
-
let (_name, getter) = gen.extract_typed_function(func);
|
351
|
-
assert!(gen.src.is_empty());
|
352
|
-
self.exports.funcs.push(body);
|
353
|
-
(
|
354
|
-
func_field_name(resolve, func),
|
355
|
-
"wasmtime::component::Func".to_string(),
|
356
|
-
getter,
|
357
|
-
)
|
358
|
-
}
|
359
|
-
WorldItem::Type(_) => unreachable!(),
|
360
|
-
WorldItem::Interface(id) => {
|
361
|
-
gen.gen.interface_last_seen_as_import.insert(*id, false);
|
362
|
-
gen.gen.name_interface(resolve, *id, name, true);
|
363
|
-
gen.current_interface = Some((*id, name, true));
|
364
|
-
gen.types(*id);
|
365
|
-
let struct_name = "Guest";
|
366
|
-
let iface = &resolve.interfaces[*id];
|
367
|
-
let iface_name = match name {
|
368
|
-
WorldKey::Name(name) => name,
|
369
|
-
WorldKey::Interface(_) => iface.name.as_ref().unwrap(),
|
370
|
-
};
|
371
|
-
uwriteln!(gen.src, "pub struct {struct_name} {{");
|
372
|
-
for (_, func) in iface.functions.iter() {
|
373
|
-
uwriteln!(
|
374
|
-
gen.src,
|
375
|
-
"{}: wasmtime::component::Func,",
|
376
|
-
func_field_name(resolve, func)
|
377
|
-
);
|
378
|
-
}
|
379
|
-
uwriteln!(gen.src, "}}");
|
380
|
-
|
381
|
-
uwriteln!(gen.src, "impl {struct_name} {{");
|
382
|
-
uwrite!(
|
383
|
-
gen.src,
|
384
|
-
"
|
385
|
-
pub fn new(
|
386
|
-
__exports: &mut wasmtime::component::ExportInstance<'_, '_>,
|
387
|
-
) -> wasmtime::Result<{struct_name}> {{
|
388
|
-
"
|
389
|
-
);
|
390
|
-
let mut fields = Vec::new();
|
391
|
-
for (_, func) in iface.functions.iter() {
|
392
|
-
let (name, getter) = gen.extract_typed_function(func);
|
393
|
-
uwriteln!(gen.src, "let {name} = {getter};");
|
394
|
-
fields.push(name);
|
395
|
-
}
|
396
|
-
uwriteln!(gen.src, "Ok({struct_name} {{");
|
397
|
-
for name in fields {
|
398
|
-
uwriteln!(gen.src, "{name},");
|
399
|
-
}
|
400
|
-
uwriteln!(gen.src, "}})");
|
401
|
-
uwriteln!(gen.src, "}}");
|
402
|
-
|
403
|
-
let mut resource_methods = IndexMap::new();
|
404
|
-
|
405
|
-
for (_, func) in iface.functions.iter() {
|
406
|
-
match func.kind {
|
407
|
-
FunctionKind::Freestanding => {
|
408
|
-
gen.define_rust_guest_export(resolve, Some(name), func);
|
409
|
-
}
|
410
|
-
FunctionKind::Method(id)
|
411
|
-
| FunctionKind::Constructor(id)
|
412
|
-
| FunctionKind::Static(id) => {
|
413
|
-
resource_methods.entry(id).or_insert(Vec::new()).push(func);
|
414
|
-
}
|
415
|
-
}
|
416
|
-
}
|
417
|
-
|
418
|
-
for (id, _) in resource_methods.iter() {
|
419
|
-
let name = resolve.types[*id].name.as_ref().unwrap();
|
420
|
-
let snake = name.to_snake_case();
|
421
|
-
let camel = name.to_upper_camel_case();
|
422
|
-
uwriteln!(
|
423
|
-
gen.src,
|
424
|
-
"pub fn {snake}(&self) -> Guest{camel}<'_> {{
|
425
|
-
Guest{camel} {{ funcs: self }}
|
426
|
-
}}"
|
427
|
-
);
|
428
|
-
}
|
429
|
-
|
430
|
-
uwriteln!(gen.src, "}}");
|
431
|
-
|
432
|
-
for (id, methods) in resource_methods {
|
433
|
-
let resource_name = resolve.types[id].name.as_ref().unwrap();
|
434
|
-
let camel = resource_name.to_upper_camel_case();
|
435
|
-
uwriteln!(gen.src, "impl Guest{camel}<'_> {{");
|
436
|
-
for method in methods {
|
437
|
-
gen.define_rust_guest_export(resolve, Some(name), method);
|
438
|
-
}
|
439
|
-
uwriteln!(gen.src, "}}");
|
440
|
-
}
|
441
|
-
|
442
|
-
let module = &gen.src[..];
|
443
|
-
let snake = to_rust_ident(iface_name);
|
444
|
-
|
445
|
-
let module = format!(
|
446
|
-
"
|
447
|
-
#[allow(clippy::all)]
|
448
|
-
pub mod {snake} {{
|
449
|
-
#[allow(unused_imports)]
|
450
|
-
use wasmtime::component::__internal::anyhow;
|
451
|
-
|
452
|
-
{module}
|
453
|
-
}}
|
454
|
-
"
|
455
|
-
);
|
456
|
-
let pkgname = match name {
|
457
|
-
WorldKey::Name(_) => None,
|
458
|
-
WorldKey::Interface(_) => {
|
459
|
-
Some(resolve.packages[iface.package.unwrap()].name.clone())
|
460
|
-
}
|
461
|
-
};
|
462
|
-
self.exports
|
463
|
-
.modules
|
464
|
-
.push((module, self.interface_names[id].clone()));
|
465
|
-
|
466
|
-
let name = resolve.name_world_key(name);
|
467
|
-
let (path, method_name) = match pkgname {
|
468
|
-
Some(pkgname) => (
|
469
|
-
format!(
|
470
|
-
"exports::{}::{}::{snake}::{struct_name}",
|
471
|
-
pkgname.namespace.to_snake_case(),
|
472
|
-
self.name_package_module(resolve, iface.package.unwrap()),
|
473
|
-
),
|
474
|
-
format!(
|
475
|
-
"{}_{}_{snake}",
|
476
|
-
pkgname.namespace.to_snake_case(),
|
477
|
-
self.name_package_module(resolve, iface.package.unwrap())
|
478
|
-
),
|
479
|
-
),
|
480
|
-
None => (format!("exports::{snake}::{struct_name}"), snake.clone()),
|
481
|
-
};
|
482
|
-
let getter = format!(
|
483
|
-
"\
|
484
|
-
{path}::new(
|
485
|
-
&mut __exports.instance(\"{name}\")
|
486
|
-
.ok_or_else(|| anyhow::anyhow!(\"exported instance `{name}` not present\"))?
|
487
|
-
)?\
|
488
|
-
"
|
489
|
-
);
|
490
|
-
let field = format!("interface{}", self.exports.fields.len());
|
491
|
-
self.exports.funcs.push(format!(
|
492
|
-
"
|
493
|
-
pub fn {method_name}(&self) -> &{path} {{
|
494
|
-
&self.{field}
|
495
|
-
}}
|
496
|
-
",
|
497
|
-
));
|
498
|
-
(field, path, getter)
|
499
|
-
}
|
500
|
-
};
|
501
|
-
let prev = self.exports.fields.insert(field, (ty, getter));
|
502
|
-
assert!(prev.is_none());
|
503
|
-
}
|
504
|
-
|
505
|
-
fn build_struct(&mut self, resolve: &Resolve, world: WorldId) {
|
506
|
-
let camel = to_rust_upper_camel_case(&resolve.worlds[world].name);
|
507
|
-
uwriteln!(self.src, "pub struct {camel} {{");
|
508
|
-
for (name, (ty, _)) in self.exports.fields.iter() {
|
509
|
-
uwriteln!(self.src, "{name}: {ty},");
|
510
|
-
}
|
511
|
-
self.src.push_str("}\n");
|
512
|
-
|
513
|
-
let (async_, async__, send, await_) = if self.opts.async_.maybe_async() {
|
514
|
-
("async", "_async", ":Send", ".await")
|
515
|
-
} else {
|
516
|
-
("", "", "", "")
|
517
|
-
};
|
518
|
-
|
519
|
-
self.toplevel_import_trait(resolve, world);
|
520
|
-
|
521
|
-
uwriteln!(self.src, "const _: () = {{");
|
522
|
-
uwriteln!(
|
523
|
-
self.src,
|
524
|
-
"
|
525
|
-
#[allow(unused_imports)]
|
526
|
-
use wasmtime::component::__internal::anyhow;
|
527
|
-
"
|
528
|
-
);
|
529
|
-
|
530
|
-
uwriteln!(self.src, "impl {camel} {{");
|
531
|
-
self.toplevel_add_to_linker(resolve, world);
|
532
|
-
uwriteln!(
|
533
|
-
self.src,
|
534
|
-
"
|
535
|
-
/// Instantiates the provided `module` using the specified
|
536
|
-
/// parameters, wrapping up the result in a structure that
|
537
|
-
/// translates between wasm and the host.
|
538
|
-
pub {async_} fn instantiate{async__}<T {send}>(
|
539
|
-
mut store: impl wasmtime::AsContextMut<Data = T>,
|
540
|
-
component: &wasmtime::component::Component,
|
541
|
-
linker: &wasmtime::component::Linker<T>,
|
542
|
-
) -> wasmtime::Result<(Self, wasmtime::component::Instance)> {{
|
543
|
-
let instance = linker.instantiate{async__}(&mut store, component){await_}?;
|
544
|
-
Ok((Self::new(store, &instance)?, instance))
|
545
|
-
}}
|
546
|
-
|
547
|
-
/// Instantiates a pre-instantiated module using the specified
|
548
|
-
/// parameters, wrapping up the result in a structure that
|
549
|
-
/// translates between wasm and the host.
|
550
|
-
pub {async_} fn instantiate_pre<T {send}>(
|
551
|
-
mut store: impl wasmtime::AsContextMut<Data = T>,
|
552
|
-
instance_pre: &wasmtime::component::InstancePre<T>,
|
553
|
-
) -> wasmtime::Result<(Self, wasmtime::component::Instance)> {{
|
554
|
-
let instance = instance_pre.instantiate{async__}(&mut store){await_}?;
|
555
|
-
Ok((Self::new(store, &instance)?, instance))
|
556
|
-
}}
|
557
|
-
|
558
|
-
/// Low-level creation wrapper for wrapping up the exports
|
559
|
-
/// of the `instance` provided in this structure of wasm
|
560
|
-
/// exports.
|
561
|
-
///
|
562
|
-
/// This function will extract exports from the `instance`
|
563
|
-
/// defined within `store` and wrap them all up in the
|
564
|
-
/// returned structure which can be used to interact with
|
565
|
-
/// the wasm module.
|
566
|
-
pub fn new(
|
567
|
-
mut store: impl wasmtime::AsContextMut,
|
568
|
-
instance: &wasmtime::component::Instance,
|
569
|
-
) -> wasmtime::Result<Self> {{
|
570
|
-
let mut store = store.as_context_mut();
|
571
|
-
let mut exports = instance.exports(&mut store);
|
572
|
-
let mut __exports = exports.root();
|
573
|
-
",
|
574
|
-
);
|
575
|
-
for (name, (_, get)) in self.exports.fields.iter() {
|
576
|
-
uwriteln!(self.src, "let {name} = {get};");
|
577
|
-
}
|
578
|
-
uwriteln!(self.src, "Ok({camel} {{");
|
579
|
-
for (name, _) in self.exports.fields.iter() {
|
580
|
-
uwriteln!(self.src, "{name},");
|
581
|
-
}
|
582
|
-
uwriteln!(self.src, "}})");
|
583
|
-
uwriteln!(self.src, "}}"); // close `fn new`
|
584
|
-
|
585
|
-
for func in self.exports.funcs.iter() {
|
586
|
-
self.src.push_str(func);
|
587
|
-
}
|
588
|
-
|
589
|
-
uwriteln!(self.src, "}}"); // close `impl {camel}`
|
590
|
-
|
591
|
-
uwriteln!(self.src, "}};"); // close `const _: () = ...
|
592
|
-
}
|
593
|
-
|
594
|
-
fn finish(&mut self, resolve: &Resolve, world: WorldId) -> String {
|
595
|
-
if !self.opts.only_interfaces {
|
596
|
-
self.build_struct(resolve, world)
|
597
|
-
}
|
598
|
-
|
599
|
-
let imports = mem::take(&mut self.import_interfaces);
|
600
|
-
self.emit_modules(imports);
|
601
|
-
|
602
|
-
let exports = mem::take(&mut self.exports.modules);
|
603
|
-
self.emit_modules(exports);
|
604
|
-
|
605
|
-
let mut src = mem::take(&mut self.src);
|
606
|
-
if self.opts.rustfmt {
|
607
|
-
let mut child = Command::new("rustfmt")
|
608
|
-
.arg("--edition=2018")
|
609
|
-
.stdin(Stdio::piped())
|
610
|
-
.stdout(Stdio::piped())
|
611
|
-
.spawn()
|
612
|
-
.expect("failed to spawn `rustfmt`");
|
613
|
-
child
|
614
|
-
.stdin
|
615
|
-
.take()
|
616
|
-
.unwrap()
|
617
|
-
.write_all(src.as_bytes())
|
618
|
-
.unwrap();
|
619
|
-
src.as_mut_string().truncate(0);
|
620
|
-
child
|
621
|
-
.stdout
|
622
|
-
.take()
|
623
|
-
.unwrap()
|
624
|
-
.read_to_string(src.as_mut_string())
|
625
|
-
.unwrap();
|
626
|
-
let status = child.wait().unwrap();
|
627
|
-
assert!(status.success());
|
628
|
-
}
|
629
|
-
|
630
|
-
src.into()
|
631
|
-
}
|
632
|
-
|
633
|
-
fn emit_modules(&mut self, modules: Vec<(String, InterfaceName)>) {
|
634
|
-
#[derive(Default)]
|
635
|
-
struct Module {
|
636
|
-
submodules: BTreeMap<String, Module>,
|
637
|
-
contents: Vec<String>,
|
638
|
-
}
|
639
|
-
let mut map = Module::default();
|
640
|
-
for (module, name) in modules {
|
641
|
-
let path = match name {
|
642
|
-
InterfaceName::Remapped { local_path, .. } => local_path,
|
643
|
-
InterfaceName::Path(path) => path,
|
644
|
-
};
|
645
|
-
let mut cur = &mut map;
|
646
|
-
for name in path[..path.len() - 1].iter() {
|
647
|
-
cur = cur
|
648
|
-
.submodules
|
649
|
-
.entry(name.clone())
|
650
|
-
.or_insert(Module::default());
|
651
|
-
}
|
652
|
-
cur.contents.push(module);
|
653
|
-
}
|
654
|
-
|
655
|
-
emit(&mut self.src, map);
|
656
|
-
|
657
|
-
fn emit(me: &mut Source, module: Module) {
|
658
|
-
for (name, submodule) in module.submodules {
|
659
|
-
uwriteln!(me, "pub mod {name} {{");
|
660
|
-
emit(me, submodule);
|
661
|
-
uwriteln!(me, "}}");
|
662
|
-
}
|
663
|
-
for submodule in module.contents {
|
664
|
-
uwriteln!(me, "{submodule}");
|
665
|
-
}
|
666
|
-
}
|
667
|
-
}
|
668
|
-
|
669
|
-
fn lookup_replacement(
|
670
|
-
&self,
|
671
|
-
resolve: &Resolve,
|
672
|
-
key: &WorldKey,
|
673
|
-
item: Option<&str>,
|
674
|
-
) -> Option<&str> {
|
675
|
-
// First try to lookup the exact name of the interface as specified
|
676
|
-
// via `name_world_key`.
|
677
|
-
let name = resolve.name_world_key(key);
|
678
|
-
let candidate1 = match item {
|
679
|
-
Some(item) => format!("{name}/{item}"),
|
680
|
-
None => name.clone(),
|
681
|
-
};
|
682
|
-
if let Some(ret) = self.opts.with.get(&candidate1) {
|
683
|
-
return Some(ret);
|
684
|
-
}
|
685
|
-
|
686
|
-
// .. if the above failed allow omitting the `@...` version information
|
687
|
-
// and see if there's a `with` key for that.
|
688
|
-
//
|
689
|
-
// NB: this means that in a scenario where there's packages with the
|
690
|
-
// same name/namespace where one has a version and one doesn't there's
|
691
|
-
// no way to use `with` to specify just one and not the other. That
|
692
|
-
// should be ok for now, but this should ideally detect a situation like
|
693
|
-
// that and omit this fallback in such a situation.
|
694
|
-
let version_start = name.find('@')?;
|
695
|
-
let name = &name[..version_start];
|
696
|
-
let candidate2 = match item {
|
697
|
-
Some(item) => format!("{name}/{item}"),
|
698
|
-
None => name.to_string(),
|
699
|
-
};
|
700
|
-
if let Some(ret) = self.opts.with.get(&candidate2) {
|
701
|
-
return Some(ret);
|
702
|
-
}
|
703
|
-
|
704
|
-
None
|
705
|
-
}
|
706
|
-
}
|
707
|
-
|
708
|
-
impl Wasmtime {
|
709
|
-
fn has_world_trait(&self, resolve: &Resolve, world: WorldId) -> bool {
|
710
|
-
!self.import_functions.is_empty() || get_world_resources(resolve, world).count() > 0
|
711
|
-
}
|
712
|
-
|
713
|
-
fn toplevel_import_trait(&mut self, resolve: &Resolve, world: WorldId) {
|
714
|
-
if !self.has_world_trait(resolve, world) {
|
715
|
-
return;
|
716
|
-
}
|
717
|
-
|
718
|
-
let world_camel = to_rust_upper_camel_case(&resolve.worlds[world].name);
|
719
|
-
if self.opts.async_.maybe_async() {
|
720
|
-
uwriteln!(self.src, "#[wasmtime::component::__internal::async_trait]")
|
721
|
-
}
|
722
|
-
uwrite!(self.src, "pub trait {world_camel}Imports");
|
723
|
-
for (i, resource) in get_world_resources(resolve, world).enumerate() {
|
724
|
-
if i == 0 {
|
725
|
-
uwrite!(self.src, ": ");
|
726
|
-
} else {
|
727
|
-
uwrite!(self.src, " + ");
|
728
|
-
}
|
729
|
-
uwrite!(self.src, "Host{}", resource.to_upper_camel_case());
|
730
|
-
}
|
731
|
-
uwriteln!(self.src, " {{");
|
732
|
-
for f in self.import_functions.iter() {
|
733
|
-
self.src.push_str(&f.sig);
|
734
|
-
self.src.push_str("\n");
|
735
|
-
}
|
736
|
-
uwriteln!(self.src, "}}");
|
737
|
-
}
|
738
|
-
|
739
|
-
fn toplevel_add_to_linker(&mut self, resolve: &Resolve, world: WorldId) {
|
740
|
-
let has_world_trait = self.has_world_trait(resolve, world);
|
741
|
-
if self.import_interfaces.is_empty() && !has_world_trait {
|
742
|
-
return;
|
743
|
-
}
|
744
|
-
let mut interfaces = Vec::new();
|
745
|
-
for (_, name) in self.import_interfaces.iter() {
|
746
|
-
let path = match name {
|
747
|
-
InterfaceName::Remapped { .. } => unreachable!("imported a remapped module"),
|
748
|
-
InterfaceName::Path(path) => path,
|
749
|
-
};
|
750
|
-
interfaces.push(path.join("::"));
|
751
|
-
}
|
752
|
-
|
753
|
-
uwrite!(
|
754
|
-
self.src,
|
755
|
-
"
|
756
|
-
pub fn add_to_linker<T, U>(
|
757
|
-
linker: &mut wasmtime::component::Linker<T>,
|
758
|
-
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
|
759
|
-
) -> wasmtime::Result<()>
|
760
|
-
where U: \
|
761
|
-
"
|
762
|
-
);
|
763
|
-
let world_camel = to_rust_upper_camel_case(&resolve.worlds[world].name);
|
764
|
-
let world_trait = format!("{world_camel}Imports");
|
765
|
-
for (i, name) in interfaces
|
766
|
-
.iter()
|
767
|
-
.map(|n| format!("{n}::Host"))
|
768
|
-
.chain(if has_world_trait {
|
769
|
-
Some(world_trait.clone())
|
770
|
-
} else {
|
771
|
-
None
|
772
|
-
})
|
773
|
-
.enumerate()
|
774
|
-
{
|
775
|
-
if i > 0 {
|
776
|
-
self.src.push_str(" + ");
|
777
|
-
}
|
778
|
-
self.src.push_str(&name);
|
779
|
-
}
|
780
|
-
|
781
|
-
let maybe_send = if self.opts.async_.maybe_async() {
|
782
|
-
" + Send, T: Send"
|
783
|
-
} else {
|
784
|
-
""
|
785
|
-
};
|
786
|
-
|
787
|
-
self.src.push_str(maybe_send);
|
788
|
-
self.src.push_str(",\n{\n");
|
789
|
-
for name in interfaces.iter() {
|
790
|
-
uwriteln!(self.src, "{name}::add_to_linker(linker, get)?;");
|
791
|
-
}
|
792
|
-
if has_world_trait {
|
793
|
-
uwriteln!(self.src, "Self::add_root_to_linker(linker, get)?;");
|
794
|
-
}
|
795
|
-
uwriteln!(self.src, "Ok(())\n}}");
|
796
|
-
if !has_world_trait {
|
797
|
-
return;
|
798
|
-
}
|
799
|
-
|
800
|
-
uwrite!(
|
801
|
-
self.src,
|
802
|
-
"
|
803
|
-
pub fn add_root_to_linker<T, U>(
|
804
|
-
linker: &mut wasmtime::component::Linker<T>,
|
805
|
-
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
|
806
|
-
) -> wasmtime::Result<()>
|
807
|
-
where U: {world_trait}{maybe_send}
|
808
|
-
{{
|
809
|
-
let mut linker = linker.root();
|
810
|
-
",
|
811
|
-
);
|
812
|
-
for name in get_world_resources(resolve, world) {
|
813
|
-
let camel = name.to_upper_camel_case();
|
814
|
-
uwriteln!(
|
815
|
-
self.src,
|
816
|
-
"linker.resource(
|
817
|
-
\"{name}\",
|
818
|
-
wasmtime::component::ResourceType::host::<{camel}>(),
|
819
|
-
move |mut store, rep| -> wasmtime::Result<()> {{
|
820
|
-
Host{camel}::drop(get(store.data_mut()), wasmtime::component::Resource::new_own(rep))
|
821
|
-
}},
|
822
|
-
)?;"
|
823
|
-
)
|
824
|
-
}
|
825
|
-
|
826
|
-
for f in self.import_functions.iter() {
|
827
|
-
self.src.push_str(&f.add_to_linker);
|
828
|
-
self.src.push_str("\n");
|
829
|
-
}
|
830
|
-
uwriteln!(self.src, "Ok(())\n}}");
|
831
|
-
}
|
832
|
-
}
|
833
|
-
|
834
|
-
fn resolve_type_in_package(resolve: &Resolve, wit_path: &str) -> anyhow::Result<TypeId> {
|
835
|
-
// Build a map, `packages_to_omit_version`, where that package can be
|
836
|
-
// uniquely identified by its name/namespace combo and as such version
|
837
|
-
// information is not required.
|
838
|
-
let mut packages_with_same_name = HashMap::new();
|
839
|
-
for (id, pkg) in resolve.packages.iter() {
|
840
|
-
packages_with_same_name
|
841
|
-
.entry(PackageName {
|
842
|
-
version: None,
|
843
|
-
..pkg.name.clone()
|
844
|
-
})
|
845
|
-
.or_insert(Vec::new())
|
846
|
-
.push(id)
|
847
|
-
}
|
848
|
-
let packages_to_omit_version = packages_with_same_name
|
849
|
-
.iter()
|
850
|
-
.filter_map(
|
851
|
-
|(_name, list)| {
|
852
|
-
if list.len() == 1 {
|
853
|
-
Some(list)
|
854
|
-
} else {
|
855
|
-
None
|
856
|
-
}
|
857
|
-
},
|
858
|
-
)
|
859
|
-
.flat_map(|l| l)
|
860
|
-
.collect::<HashSet<_>>();
|
861
|
-
|
862
|
-
let mut found_interface = false;
|
863
|
-
|
864
|
-
// Look for an interface whose assigned prefix starts `wit_path`. Not
|
865
|
-
// exactly the most efficient thing ever but is sufficient for now.
|
866
|
-
for (id, interface) in resolve.interfaces.iter() {
|
867
|
-
found_interface = true;
|
868
|
-
|
869
|
-
let iface_name = match &interface.name {
|
870
|
-
Some(name) => name,
|
871
|
-
None => continue,
|
872
|
-
};
|
873
|
-
let pkgid = interface.package.unwrap();
|
874
|
-
let pkgname = &resolve.packages[pkgid].name;
|
875
|
-
let prefix = if packages_to_omit_version.contains(&pkgid) {
|
876
|
-
let mut name = pkgname.clone();
|
877
|
-
name.version = None;
|
878
|
-
format!("{name}/{iface_name}")
|
879
|
-
} else {
|
880
|
-
resolve.id_of(id).unwrap()
|
881
|
-
};
|
882
|
-
let wit_path = match wit_path.strip_prefix(&prefix) {
|
883
|
-
Some(rest) => rest,
|
884
|
-
None => continue,
|
885
|
-
};
|
886
|
-
|
887
|
-
let wit_path = match wit_path.strip_prefix('/') {
|
888
|
-
Some(rest) => rest,
|
889
|
-
None => continue,
|
890
|
-
};
|
891
|
-
|
892
|
-
match interface.types.get(wit_path).copied() {
|
893
|
-
Some(type_id) => return Ok(type_id),
|
894
|
-
None => continue,
|
895
|
-
}
|
896
|
-
}
|
897
|
-
|
898
|
-
if found_interface {
|
899
|
-
bail!("no types found to match `{wit_path}` in interface");
|
900
|
-
}
|
901
|
-
|
902
|
-
bail!("no package/interface found to match `{wit_path}`")
|
903
|
-
}
|
904
|
-
|
905
|
-
struct InterfaceGenerator<'a> {
|
906
|
-
src: Source,
|
907
|
-
gen: &'a mut Wasmtime,
|
908
|
-
resolve: &'a Resolve,
|
909
|
-
current_interface: Option<(InterfaceId, &'a WorldKey, bool)>,
|
910
|
-
}
|
911
|
-
|
912
|
-
impl<'a> InterfaceGenerator<'a> {
|
913
|
-
fn new(gen: &'a mut Wasmtime, resolve: &'a Resolve) -> InterfaceGenerator<'a> {
|
914
|
-
InterfaceGenerator {
|
915
|
-
src: Source::default(),
|
916
|
-
gen,
|
917
|
-
resolve,
|
918
|
-
current_interface: None,
|
919
|
-
}
|
920
|
-
}
|
921
|
-
|
922
|
-
fn types_imported(&self) -> bool {
|
923
|
-
match self.current_interface {
|
924
|
-
Some((_, _, is_export)) => !is_export,
|
925
|
-
None => true,
|
926
|
-
}
|
927
|
-
}
|
928
|
-
|
929
|
-
fn types(&mut self, id: InterfaceId) {
|
930
|
-
for (name, id) in self.resolve.interfaces[id].types.iter() {
|
931
|
-
self.define_type(name, *id);
|
932
|
-
}
|
933
|
-
}
|
934
|
-
|
935
|
-
fn define_type(&mut self, name: &str, id: TypeId) {
|
936
|
-
let ty = &self.resolve.types[id];
|
937
|
-
match &ty.kind {
|
938
|
-
TypeDefKind::Record(record) => self.type_record(id, name, record, &ty.docs),
|
939
|
-
TypeDefKind::Flags(flags) => self.type_flags(id, name, flags, &ty.docs),
|
940
|
-
TypeDefKind::Tuple(tuple) => self.type_tuple(id, name, tuple, &ty.docs),
|
941
|
-
TypeDefKind::Enum(enum_) => self.type_enum(id, name, enum_, &ty.docs),
|
942
|
-
TypeDefKind::Variant(variant) => self.type_variant(id, name, variant, &ty.docs),
|
943
|
-
TypeDefKind::Option(t) => self.type_option(id, name, t, &ty.docs),
|
944
|
-
TypeDefKind::Result(r) => self.type_result(id, name, r, &ty.docs),
|
945
|
-
TypeDefKind::List(t) => self.type_list(id, name, t, &ty.docs),
|
946
|
-
TypeDefKind::Type(t) => self.type_alias(id, name, t, &ty.docs),
|
947
|
-
TypeDefKind::Future(_) => todo!("generate for future"),
|
948
|
-
TypeDefKind::Stream(_) => todo!("generate for stream"),
|
949
|
-
TypeDefKind::Handle(handle) => self.type_handle(id, name, handle, &ty.docs),
|
950
|
-
TypeDefKind::Resource => self.type_resource(id, name, ty, &ty.docs),
|
951
|
-
TypeDefKind::Unknown => unreachable!(),
|
952
|
-
}
|
953
|
-
}
|
954
|
-
|
955
|
-
fn type_handle(&mut self, id: TypeId, name: &str, handle: &Handle, docs: &Docs) {
|
956
|
-
self.rustdoc(docs);
|
957
|
-
let name = name.to_upper_camel_case();
|
958
|
-
uwriteln!(self.src, "pub type {name} = ");
|
959
|
-
self.print_handle(handle);
|
960
|
-
self.push_str(";\n");
|
961
|
-
self.assert_type(id, &name);
|
962
|
-
}
|
963
|
-
|
964
|
-
fn type_resource(&mut self, id: TypeId, name: &str, resource: &TypeDef, docs: &Docs) {
|
965
|
-
let camel = name.to_upper_camel_case();
|
966
|
-
|
967
|
-
if self.types_imported() {
|
968
|
-
self.rustdoc(docs);
|
969
|
-
|
970
|
-
let replacement = match self.current_interface {
|
971
|
-
Some((_, key, _)) => self.gen.lookup_replacement(self.resolve, key, Some(name)),
|
972
|
-
None => self.gen.opts.with.get(name).map(|s| s.as_str()),
|
973
|
-
};
|
974
|
-
match replacement {
|
975
|
-
Some(path) => {
|
976
|
-
uwriteln!(
|
977
|
-
self.src,
|
978
|
-
"pub use {}{path} as {camel};",
|
979
|
-
self.path_to_root()
|
980
|
-
);
|
981
|
-
}
|
982
|
-
None => {
|
983
|
-
uwriteln!(self.src, "pub enum {camel} {{}}");
|
984
|
-
}
|
985
|
-
}
|
986
|
-
|
987
|
-
if self.gen.opts.async_.maybe_async() {
|
988
|
-
uwriteln!(self.src, "#[wasmtime::component::__internal::async_trait]")
|
989
|
-
}
|
990
|
-
|
991
|
-
uwriteln!(self.src, "pub trait Host{camel} {{");
|
992
|
-
|
993
|
-
let functions = match resource.owner {
|
994
|
-
TypeOwner::World(id) => self.resolve.worlds[id]
|
995
|
-
.imports
|
996
|
-
.values()
|
997
|
-
.filter_map(|item| match item {
|
998
|
-
WorldItem::Function(f) => Some(f),
|
999
|
-
_ => None,
|
1000
|
-
})
|
1001
|
-
.collect(),
|
1002
|
-
TypeOwner::Interface(id) => self.resolve.interfaces[id]
|
1003
|
-
.functions
|
1004
|
-
.values()
|
1005
|
-
.collect::<Vec<_>>(),
|
1006
|
-
TypeOwner::None => {
|
1007
|
-
panic!("A resource must be owned by a world or interface");
|
1008
|
-
}
|
1009
|
-
};
|
1010
|
-
|
1011
|
-
for func in functions {
|
1012
|
-
match func.kind {
|
1013
|
-
FunctionKind::Method(resource)
|
1014
|
-
| FunctionKind::Static(resource)
|
1015
|
-
| FunctionKind::Constructor(resource)
|
1016
|
-
if id == resource => {}
|
1017
|
-
_ => continue,
|
1018
|
-
}
|
1019
|
-
|
1020
|
-
self.generate_function_trait_sig(func);
|
1021
|
-
}
|
1022
|
-
|
1023
|
-
uwrite!(
|
1024
|
-
self.src,
|
1025
|
-
"fn drop(&mut self, rep: wasmtime::component::Resource<{camel}>) -> wasmtime::Result<()>;");
|
1026
|
-
|
1027
|
-
uwriteln!(self.src, "}}");
|
1028
|
-
} else {
|
1029
|
-
self.rustdoc(docs);
|
1030
|
-
uwriteln!(
|
1031
|
-
self.src,
|
1032
|
-
"
|
1033
|
-
pub type {camel} = wasmtime::component::ResourceAny;
|
1034
|
-
|
1035
|
-
pub struct Guest{camel}<'a> {{
|
1036
|
-
funcs: &'a Guest,
|
1037
|
-
}}
|
1038
|
-
"
|
1039
|
-
);
|
1040
|
-
}
|
1041
|
-
}
|
1042
|
-
|
1043
|
-
fn type_record(&mut self, id: TypeId, _name: &str, record: &Record, docs: &Docs) {
|
1044
|
-
let info = self.info(id);
|
1045
|
-
for (name, mode) in self.modes_of(id) {
|
1046
|
-
let lt = self.lifetime_for(&info, mode);
|
1047
|
-
self.rustdoc(docs);
|
1048
|
-
|
1049
|
-
self.push_str("#[derive(wasmtime::component::ComponentType)]\n");
|
1050
|
-
if lt.is_none() {
|
1051
|
-
self.push_str("#[derive(wasmtime::component::Lift)]\n");
|
1052
|
-
}
|
1053
|
-
self.push_str("#[derive(wasmtime::component::Lower)]\n");
|
1054
|
-
self.push_str("#[component(record)]\n");
|
1055
|
-
|
1056
|
-
if info.is_copy() {
|
1057
|
-
self.push_str("#[derive(Copy, Clone)]\n");
|
1058
|
-
} else if info.is_clone() {
|
1059
|
-
self.push_str("#[derive(Clone)]\n");
|
1060
|
-
}
|
1061
|
-
self.push_str(&format!("pub struct {}", name));
|
1062
|
-
self.print_generics(lt);
|
1063
|
-
self.push_str(" {\n");
|
1064
|
-
for field in record.fields.iter() {
|
1065
|
-
self.rustdoc(&field.docs);
|
1066
|
-
self.push_str(&format!("#[component(name = \"{}\")]\n", field.name));
|
1067
|
-
self.push_str("pub ");
|
1068
|
-
self.push_str(&to_rust_ident(&field.name));
|
1069
|
-
self.push_str(": ");
|
1070
|
-
self.print_ty(&field.ty, mode);
|
1071
|
-
self.push_str(",\n");
|
1072
|
-
}
|
1073
|
-
self.push_str("}\n");
|
1074
|
-
|
1075
|
-
self.push_str("impl");
|
1076
|
-
self.print_generics(lt);
|
1077
|
-
self.push_str(" core::fmt::Debug for ");
|
1078
|
-
self.push_str(&name);
|
1079
|
-
self.print_generics(lt);
|
1080
|
-
self.push_str(" {\n");
|
1081
|
-
self.push_str(
|
1082
|
-
"fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n",
|
1083
|
-
);
|
1084
|
-
self.push_str(&format!("f.debug_struct(\"{}\")", name));
|
1085
|
-
for field in record.fields.iter() {
|
1086
|
-
self.push_str(&format!(
|
1087
|
-
".field(\"{}\", &self.{})",
|
1088
|
-
field.name,
|
1089
|
-
to_rust_ident(&field.name)
|
1090
|
-
));
|
1091
|
-
}
|
1092
|
-
self.push_str(".finish()\n");
|
1093
|
-
self.push_str("}\n");
|
1094
|
-
self.push_str("}\n");
|
1095
|
-
|
1096
|
-
if info.error {
|
1097
|
-
self.push_str("impl");
|
1098
|
-
self.print_generics(lt);
|
1099
|
-
self.push_str(" core::fmt::Display for ");
|
1100
|
-
self.push_str(&name);
|
1101
|
-
self.print_generics(lt);
|
1102
|
-
self.push_str(" {\n");
|
1103
|
-
self.push_str(
|
1104
|
-
"fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n",
|
1105
|
-
);
|
1106
|
-
self.push_str("write!(f, \"{:?}\", self)\n");
|
1107
|
-
self.push_str("}\n");
|
1108
|
-
self.push_str("}\n");
|
1109
|
-
self.push_str("impl std::error::Error for ");
|
1110
|
-
self.push_str(&name);
|
1111
|
-
self.push_str("{}\n");
|
1112
|
-
}
|
1113
|
-
self.assert_type(id, &name);
|
1114
|
-
}
|
1115
|
-
}
|
1116
|
-
|
1117
|
-
fn type_tuple(&mut self, id: TypeId, _name: &str, tuple: &Tuple, docs: &Docs) {
|
1118
|
-
let info = self.info(id);
|
1119
|
-
for (name, mode) in self.modes_of(id) {
|
1120
|
-
let lt = self.lifetime_for(&info, mode);
|
1121
|
-
self.rustdoc(docs);
|
1122
|
-
self.push_str(&format!("pub type {}", name));
|
1123
|
-
self.print_generics(lt);
|
1124
|
-
self.push_str(" = (");
|
1125
|
-
for ty in tuple.types.iter() {
|
1126
|
-
self.print_ty(ty, mode);
|
1127
|
-
self.push_str(",");
|
1128
|
-
}
|
1129
|
-
self.push_str(");\n");
|
1130
|
-
self.assert_type(id, &name);
|
1131
|
-
}
|
1132
|
-
}
|
1133
|
-
|
1134
|
-
fn type_flags(&mut self, id: TypeId, name: &str, flags: &Flags, docs: &Docs) {
|
1135
|
-
self.rustdoc(docs);
|
1136
|
-
let rust_name = to_rust_upper_camel_case(name);
|
1137
|
-
self.src.push_str("wasmtime::component::flags!(\n");
|
1138
|
-
self.src.push_str(&format!("{rust_name} {{\n"));
|
1139
|
-
for flag in flags.flags.iter() {
|
1140
|
-
// TODO wasmtime-component-macro doesnt support docs for flags rn
|
1141
|
-
uwrite!(
|
1142
|
-
self.src,
|
1143
|
-
"#[component(name=\"{}\")] const {};\n",
|
1144
|
-
flag.name,
|
1145
|
-
flag.name.to_shouty_snake_case()
|
1146
|
-
);
|
1147
|
-
}
|
1148
|
-
self.src.push_str("}\n");
|
1149
|
-
self.src.push_str(");\n\n");
|
1150
|
-
self.assert_type(id, &rust_name);
|
1151
|
-
}
|
1152
|
-
|
1153
|
-
fn type_variant(&mut self, id: TypeId, _name: &str, variant: &Variant, docs: &Docs) {
|
1154
|
-
self.print_rust_enum(
|
1155
|
-
id,
|
1156
|
-
variant.cases.iter().map(|c| {
|
1157
|
-
(
|
1158
|
-
c.name.to_upper_camel_case(),
|
1159
|
-
Some(c.name.clone()),
|
1160
|
-
&c.docs,
|
1161
|
-
c.ty.as_ref(),
|
1162
|
-
)
|
1163
|
-
}),
|
1164
|
-
docs,
|
1165
|
-
"variant",
|
1166
|
-
);
|
1167
|
-
}
|
1168
|
-
|
1169
|
-
fn type_option(&mut self, id: TypeId, _name: &str, payload: &Type, docs: &Docs) {
|
1170
|
-
let info = self.info(id);
|
1171
|
-
|
1172
|
-
for (name, mode) in self.modes_of(id) {
|
1173
|
-
self.rustdoc(docs);
|
1174
|
-
let lt = self.lifetime_for(&info, mode);
|
1175
|
-
self.push_str(&format!("pub type {}", name));
|
1176
|
-
self.print_generics(lt);
|
1177
|
-
self.push_str("= Option<");
|
1178
|
-
self.print_ty(payload, mode);
|
1179
|
-
self.push_str(">;\n");
|
1180
|
-
self.assert_type(id, &name);
|
1181
|
-
}
|
1182
|
-
}
|
1183
|
-
|
1184
|
-
// Emit a double-check that the wit-parser-understood size of a type agrees
|
1185
|
-
// with the Wasmtime-understood size of a type.
|
1186
|
-
fn assert_type(&mut self, id: TypeId, name: &str) {
|
1187
|
-
self.push_str("const _: () = {\n");
|
1188
|
-
uwriteln!(
|
1189
|
-
self.src,
|
1190
|
-
"assert!({} == <{name} as wasmtime::component::ComponentType>::SIZE32);",
|
1191
|
-
self.gen.sizes.size(&Type::Id(id)),
|
1192
|
-
);
|
1193
|
-
uwriteln!(
|
1194
|
-
self.src,
|
1195
|
-
"assert!({} == <{name} as wasmtime::component::ComponentType>::ALIGN32);",
|
1196
|
-
self.gen.sizes.align(&Type::Id(id)),
|
1197
|
-
);
|
1198
|
-
self.push_str("};\n");
|
1199
|
-
}
|
1200
|
-
|
1201
|
-
fn print_rust_enum<'b>(
|
1202
|
-
&mut self,
|
1203
|
-
id: TypeId,
|
1204
|
-
cases: impl IntoIterator<Item = (String, Option<String>, &'b Docs, Option<&'b Type>)> + Clone,
|
1205
|
-
docs: &Docs,
|
1206
|
-
derive_component: &str,
|
1207
|
-
) where
|
1208
|
-
Self: Sized,
|
1209
|
-
{
|
1210
|
-
let info = self.info(id);
|
1211
|
-
|
1212
|
-
for (name, mode) in self.modes_of(id) {
|
1213
|
-
let name = to_rust_upper_camel_case(&name);
|
1214
|
-
|
1215
|
-
self.rustdoc(docs);
|
1216
|
-
let lt = self.lifetime_for(&info, mode);
|
1217
|
-
self.push_str("#[derive(wasmtime::component::ComponentType)]\n");
|
1218
|
-
if lt.is_none() {
|
1219
|
-
self.push_str("#[derive(wasmtime::component::Lift)]\n");
|
1220
|
-
}
|
1221
|
-
self.push_str("#[derive(wasmtime::component::Lower)]\n");
|
1222
|
-
self.push_str(&format!("#[component({})]\n", derive_component));
|
1223
|
-
if info.is_copy() {
|
1224
|
-
self.push_str("#[derive(Copy, Clone)]\n");
|
1225
|
-
} else if info.is_clone() {
|
1226
|
-
self.push_str("#[derive(Clone)]\n");
|
1227
|
-
}
|
1228
|
-
self.push_str(&format!("pub enum {name}"));
|
1229
|
-
self.print_generics(lt);
|
1230
|
-
self.push_str("{\n");
|
1231
|
-
for (case_name, component_name, docs, payload) in cases.clone() {
|
1232
|
-
self.rustdoc(docs);
|
1233
|
-
if let Some(n) = component_name {
|
1234
|
-
self.push_str(&format!("#[component(name = \"{}\")] ", n));
|
1235
|
-
}
|
1236
|
-
self.push_str(&case_name);
|
1237
|
-
if let Some(ty) = payload {
|
1238
|
-
self.push_str("(");
|
1239
|
-
self.print_ty(ty, mode);
|
1240
|
-
self.push_str(")")
|
1241
|
-
}
|
1242
|
-
self.push_str(",\n");
|
1243
|
-
}
|
1244
|
-
self.push_str("}\n");
|
1245
|
-
|
1246
|
-
self.print_rust_enum_debug(
|
1247
|
-
id,
|
1248
|
-
mode,
|
1249
|
-
&name,
|
1250
|
-
cases
|
1251
|
-
.clone()
|
1252
|
-
.into_iter()
|
1253
|
-
.map(|(name, _attr, _docs, ty)| (name, ty)),
|
1254
|
-
);
|
1255
|
-
|
1256
|
-
if info.error {
|
1257
|
-
self.push_str("impl");
|
1258
|
-
self.print_generics(lt);
|
1259
|
-
self.push_str(" core::fmt::Display for ");
|
1260
|
-
self.push_str(&name);
|
1261
|
-
self.print_generics(lt);
|
1262
|
-
self.push_str(" {\n");
|
1263
|
-
self.push_str(
|
1264
|
-
"fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n",
|
1265
|
-
);
|
1266
|
-
self.push_str("write!(f, \"{:?}\", self)");
|
1267
|
-
self.push_str("}\n");
|
1268
|
-
self.push_str("}\n");
|
1269
|
-
self.push_str("\n");
|
1270
|
-
|
1271
|
-
self.push_str("impl");
|
1272
|
-
self.print_generics(lt);
|
1273
|
-
self.push_str(" std::error::Error for ");
|
1274
|
-
self.push_str(&name);
|
1275
|
-
self.print_generics(lt);
|
1276
|
-
self.push_str(" {}\n");
|
1277
|
-
}
|
1278
|
-
|
1279
|
-
self.assert_type(id, &name);
|
1280
|
-
}
|
1281
|
-
}
|
1282
|
-
|
1283
|
-
fn print_rust_enum_debug<'b>(
|
1284
|
-
&mut self,
|
1285
|
-
id: TypeId,
|
1286
|
-
mode: TypeMode,
|
1287
|
-
name: &str,
|
1288
|
-
cases: impl IntoIterator<Item = (String, Option<&'b Type>)>,
|
1289
|
-
) where
|
1290
|
-
Self: Sized,
|
1291
|
-
{
|
1292
|
-
let info = self.info(id);
|
1293
|
-
let lt = self.lifetime_for(&info, mode);
|
1294
|
-
self.push_str("impl");
|
1295
|
-
self.print_generics(lt);
|
1296
|
-
self.push_str(" core::fmt::Debug for ");
|
1297
|
-
self.push_str(name);
|
1298
|
-
self.print_generics(lt);
|
1299
|
-
self.push_str(" {\n");
|
1300
|
-
self.push_str("fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n");
|
1301
|
-
self.push_str("match self {\n");
|
1302
|
-
for (case_name, payload) in cases {
|
1303
|
-
self.push_str(name);
|
1304
|
-
self.push_str("::");
|
1305
|
-
self.push_str(&case_name);
|
1306
|
-
if payload.is_some() {
|
1307
|
-
self.push_str("(e)");
|
1308
|
-
}
|
1309
|
-
self.push_str(" => {\n");
|
1310
|
-
self.push_str(&format!("f.debug_tuple(\"{}::{}\")", name, case_name));
|
1311
|
-
if payload.is_some() {
|
1312
|
-
self.push_str(".field(e)");
|
1313
|
-
}
|
1314
|
-
self.push_str(".finish()\n");
|
1315
|
-
self.push_str("}\n");
|
1316
|
-
}
|
1317
|
-
self.push_str("}\n");
|
1318
|
-
self.push_str("}\n");
|
1319
|
-
self.push_str("}\n");
|
1320
|
-
}
|
1321
|
-
|
1322
|
-
fn type_result(&mut self, id: TypeId, _name: &str, result: &Result_, docs: &Docs) {
|
1323
|
-
let info = self.info(id);
|
1324
|
-
|
1325
|
-
for (name, mode) in self.modes_of(id) {
|
1326
|
-
self.rustdoc(docs);
|
1327
|
-
let lt = self.lifetime_for(&info, mode);
|
1328
|
-
self.push_str(&format!("pub type {}", name));
|
1329
|
-
self.print_generics(lt);
|
1330
|
-
self.push_str("= Result<");
|
1331
|
-
self.print_optional_ty(result.ok.as_ref(), mode);
|
1332
|
-
self.push_str(",");
|
1333
|
-
self.print_optional_ty(result.err.as_ref(), mode);
|
1334
|
-
self.push_str(">;\n");
|
1335
|
-
self.assert_type(id, &name);
|
1336
|
-
}
|
1337
|
-
}
|
1338
|
-
|
1339
|
-
fn type_enum(&mut self, id: TypeId, name: &str, enum_: &Enum, docs: &Docs) {
|
1340
|
-
let info = self.info(id);
|
1341
|
-
|
1342
|
-
let name = to_rust_upper_camel_case(name);
|
1343
|
-
self.rustdoc(docs);
|
1344
|
-
self.push_str("#[derive(wasmtime::component::ComponentType)]\n");
|
1345
|
-
self.push_str("#[derive(wasmtime::component::Lift)]\n");
|
1346
|
-
self.push_str("#[derive(wasmtime::component::Lower)]\n");
|
1347
|
-
self.push_str("#[component(enum)]\n");
|
1348
|
-
self.push_str("#[derive(Clone, Copy, PartialEq, Eq)]\n");
|
1349
|
-
self.push_str(&format!("pub enum {} {{\n", name));
|
1350
|
-
for case in enum_.cases.iter() {
|
1351
|
-
self.rustdoc(&case.docs);
|
1352
|
-
self.push_str(&format!("#[component(name = \"{}\")]", case.name));
|
1353
|
-
self.push_str(&case.name.to_upper_camel_case());
|
1354
|
-
self.push_str(",\n");
|
1355
|
-
}
|
1356
|
-
self.push_str("}\n");
|
1357
|
-
|
1358
|
-
// Auto-synthesize an implementation of the standard `Error` trait for
|
1359
|
-
// error-looking types based on their name.
|
1360
|
-
if info.error {
|
1361
|
-
self.push_str("impl ");
|
1362
|
-
self.push_str(&name);
|
1363
|
-
self.push_str("{\n");
|
1364
|
-
|
1365
|
-
self.push_str("pub fn name(&self) -> &'static str {\n");
|
1366
|
-
self.push_str("match self {\n");
|
1367
|
-
for case in enum_.cases.iter() {
|
1368
|
-
self.push_str(&name);
|
1369
|
-
self.push_str("::");
|
1370
|
-
self.push_str(&case.name.to_upper_camel_case());
|
1371
|
-
self.push_str(" => \"");
|
1372
|
-
self.push_str(case.name.as_str());
|
1373
|
-
self.push_str("\",\n");
|
1374
|
-
}
|
1375
|
-
self.push_str("}\n");
|
1376
|
-
self.push_str("}\n");
|
1377
|
-
|
1378
|
-
self.push_str("pub fn message(&self) -> &'static str {\n");
|
1379
|
-
self.push_str("match self {\n");
|
1380
|
-
for case in enum_.cases.iter() {
|
1381
|
-
self.push_str(&name);
|
1382
|
-
self.push_str("::");
|
1383
|
-
self.push_str(&case.name.to_upper_camel_case());
|
1384
|
-
self.push_str(" => \"");
|
1385
|
-
if let Some(contents) = &case.docs.contents {
|
1386
|
-
self.push_str(contents.trim());
|
1387
|
-
}
|
1388
|
-
self.push_str("\",\n");
|
1389
|
-
}
|
1390
|
-
self.push_str("}\n");
|
1391
|
-
self.push_str("}\n");
|
1392
|
-
|
1393
|
-
self.push_str("}\n");
|
1394
|
-
|
1395
|
-
self.push_str("impl core::fmt::Debug for ");
|
1396
|
-
self.push_str(&name);
|
1397
|
-
self.push_str(
|
1398
|
-
"{\nfn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n",
|
1399
|
-
);
|
1400
|
-
self.push_str("f.debug_struct(\"");
|
1401
|
-
self.push_str(&name);
|
1402
|
-
self.push_str("\")\n");
|
1403
|
-
self.push_str(".field(\"code\", &(*self as i32))\n");
|
1404
|
-
self.push_str(".field(\"name\", &self.name())\n");
|
1405
|
-
self.push_str(".field(\"message\", &self.message())\n");
|
1406
|
-
self.push_str(".finish()\n");
|
1407
|
-
self.push_str("}\n");
|
1408
|
-
self.push_str("}\n");
|
1409
|
-
|
1410
|
-
self.push_str("impl core::fmt::Display for ");
|
1411
|
-
self.push_str(&name);
|
1412
|
-
self.push_str(
|
1413
|
-
"{\nfn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {\n",
|
1414
|
-
);
|
1415
|
-
self.push_str("write!(f, \"{} (error {})\", self.name(), *self as i32)");
|
1416
|
-
self.push_str("}\n");
|
1417
|
-
self.push_str("}\n");
|
1418
|
-
self.push_str("\n");
|
1419
|
-
self.push_str("impl std::error::Error for ");
|
1420
|
-
self.push_str(&name);
|
1421
|
-
self.push_str("{}\n");
|
1422
|
-
} else {
|
1423
|
-
self.print_rust_enum_debug(
|
1424
|
-
id,
|
1425
|
-
TypeMode::Owned,
|
1426
|
-
&name,
|
1427
|
-
enum_
|
1428
|
-
.cases
|
1429
|
-
.iter()
|
1430
|
-
.map(|c| (c.name.to_upper_camel_case(), None)),
|
1431
|
-
)
|
1432
|
-
}
|
1433
|
-
self.assert_type(id, &name);
|
1434
|
-
}
|
1435
|
-
|
1436
|
-
fn type_alias(&mut self, id: TypeId, _name: &str, ty: &Type, docs: &Docs) {
|
1437
|
-
let info = self.info(id);
|
1438
|
-
for (name, mode) in self.modes_of(id) {
|
1439
|
-
self.rustdoc(docs);
|
1440
|
-
self.push_str(&format!("pub type {}", name));
|
1441
|
-
let lt = self.lifetime_for(&info, mode);
|
1442
|
-
self.print_generics(lt);
|
1443
|
-
self.push_str(" = ");
|
1444
|
-
self.print_ty(ty, mode);
|
1445
|
-
self.push_str(";\n");
|
1446
|
-
let def_id = resolve_type_definition_id(self.resolve, id);
|
1447
|
-
if !matches!(self.resolve().types[def_id].kind, TypeDefKind::Resource) {
|
1448
|
-
self.assert_type(id, &name);
|
1449
|
-
}
|
1450
|
-
}
|
1451
|
-
}
|
1452
|
-
|
1453
|
-
fn type_list(&mut self, id: TypeId, _name: &str, ty: &Type, docs: &Docs) {
|
1454
|
-
let info = self.info(id);
|
1455
|
-
for (name, mode) in self.modes_of(id) {
|
1456
|
-
let lt = self.lifetime_for(&info, mode);
|
1457
|
-
self.rustdoc(docs);
|
1458
|
-
self.push_str(&format!("pub type {}", name));
|
1459
|
-
self.print_generics(lt);
|
1460
|
-
self.push_str(" = ");
|
1461
|
-
self.print_list(ty, mode);
|
1462
|
-
self.push_str(";\n");
|
1463
|
-
self.assert_type(id, &name);
|
1464
|
-
}
|
1465
|
-
}
|
1466
|
-
|
1467
|
-
fn print_result_ty(&mut self, results: &Results, mode: TypeMode) {
|
1468
|
-
match results {
|
1469
|
-
Results::Named(rs) => match rs.len() {
|
1470
|
-
0 => self.push_str("()"),
|
1471
|
-
1 => self.print_ty(&rs[0].1, mode),
|
1472
|
-
_ => {
|
1473
|
-
self.push_str("(");
|
1474
|
-
for (i, (_, ty)) in rs.iter().enumerate() {
|
1475
|
-
if i > 0 {
|
1476
|
-
self.push_str(", ")
|
1477
|
-
}
|
1478
|
-
self.print_ty(ty, mode)
|
1479
|
-
}
|
1480
|
-
self.push_str(")");
|
1481
|
-
}
|
1482
|
-
},
|
1483
|
-
Results::Anon(ty) => self.print_ty(ty, mode),
|
1484
|
-
}
|
1485
|
-
}
|
1486
|
-
|
1487
|
-
fn special_case_trappable_error(
|
1488
|
-
&self,
|
1489
|
-
results: &Results,
|
1490
|
-
) -> Option<(&'a Result_, TypeId, String)> {
|
1491
|
-
// We fillin a special trappable error type in the case when a function has just one
|
1492
|
-
// result, which is itself a `result<a, e>`, and the `e` is *not* a primitive
|
1493
|
-
// (i.e. defined in std) type, and matches the typename given by the user.
|
1494
|
-
let mut i = results.iter_types();
|
1495
|
-
let id = match i.next()? {
|
1496
|
-
Type::Id(id) => id,
|
1497
|
-
_ => return None,
|
1498
|
-
};
|
1499
|
-
if i.next().is_some() {
|
1500
|
-
return None;
|
1501
|
-
}
|
1502
|
-
let result = match &self.resolve.types[*id].kind {
|
1503
|
-
TypeDefKind::Result(r) => r,
|
1504
|
-
_ => return None,
|
1505
|
-
};
|
1506
|
-
let error_typeid = match result.err? {
|
1507
|
-
Type::Id(id) => resolve_type_definition_id(&self.resolve, id),
|
1508
|
-
_ => return None,
|
1509
|
-
};
|
1510
|
-
|
1511
|
-
let name = self.gen.trappable_errors.get(&error_typeid)?;
|
1512
|
-
|
1513
|
-
let mut path = self.path_to_root();
|
1514
|
-
uwrite!(path, "{name}");
|
1515
|
-
Some((result, error_typeid, path))
|
1516
|
-
}
|
1517
|
-
|
1518
|
-
fn generate_add_to_linker(&mut self, id: InterfaceId, name: &str) {
|
1519
|
-
let iface = &self.resolve.interfaces[id];
|
1520
|
-
let owner = TypeOwner::Interface(id);
|
1521
|
-
|
1522
|
-
if self.gen.opts.async_.maybe_async() {
|
1523
|
-
uwriteln!(self.src, "#[wasmtime::component::__internal::async_trait]")
|
1524
|
-
}
|
1525
|
-
// Generate the `pub trait` which represents the host functionality for
|
1526
|
-
// this import which additionally inherits from all resource traits
|
1527
|
-
// for this interface defined by `type_resource`.
|
1528
|
-
uwrite!(self.src, "pub trait Host");
|
1529
|
-
for (i, resource) in get_resources(self.resolve, id).enumerate() {
|
1530
|
-
if i == 0 {
|
1531
|
-
uwrite!(self.src, ": ");
|
1532
|
-
} else {
|
1533
|
-
uwrite!(self.src, " + ");
|
1534
|
-
}
|
1535
|
-
uwrite!(self.src, "Host{}", resource.to_upper_camel_case());
|
1536
|
-
}
|
1537
|
-
uwriteln!(self.src, " {{");
|
1538
|
-
for (_, func) in iface.functions.iter() {
|
1539
|
-
match func.kind {
|
1540
|
-
FunctionKind::Freestanding => {}
|
1541
|
-
_ => continue,
|
1542
|
-
}
|
1543
|
-
self.generate_function_trait_sig(func);
|
1544
|
-
}
|
1545
|
-
|
1546
|
-
// Generate `convert_*` functions to convert custom trappable errors
|
1547
|
-
// into the representation required by Wasmtime's component API.
|
1548
|
-
let mut required_conversion_traits = IndexSet::new();
|
1549
|
-
let mut errors_converted = IndexSet::new();
|
1550
|
-
let my_error_types = iface
|
1551
|
-
.types
|
1552
|
-
.iter()
|
1553
|
-
.filter(|(_, id)| self.gen.trappable_errors.contains_key(*id))
|
1554
|
-
.map(|(_, id)| *id);
|
1555
|
-
let used_error_types = iface
|
1556
|
-
.functions
|
1557
|
-
.iter()
|
1558
|
-
.filter_map(|(_, func)| self.special_case_trappable_error(&func.results))
|
1559
|
-
.map(|(_, id, _)| id);
|
1560
|
-
for err in my_error_types.chain(used_error_types).collect::<Vec<_>>() {
|
1561
|
-
let custom_name = &self.gen.trappable_errors[&err];
|
1562
|
-
let err = &self.resolve.types[resolve_type_definition_id(self.resolve, err)];
|
1563
|
-
let err_name = err.name.as_ref().unwrap();
|
1564
|
-
let err_snake = err_name.to_snake_case();
|
1565
|
-
let err_camel = err_name.to_upper_camel_case();
|
1566
|
-
let owner = match err.owner {
|
1567
|
-
TypeOwner::Interface(i) => i,
|
1568
|
-
_ => unimplemented!(),
|
1569
|
-
};
|
1570
|
-
match self.path_to_interface(owner) {
|
1571
|
-
Some(path) => {
|
1572
|
-
required_conversion_traits.insert(format!("{path}::Host"));
|
1573
|
-
}
|
1574
|
-
None => {
|
1575
|
-
if errors_converted.insert(err_name) {
|
1576
|
-
let root = self.path_to_root();
|
1577
|
-
uwriteln!(
|
1578
|
-
self.src,
|
1579
|
-
"fn convert_{err_snake}(&mut self, err: {root}{custom_name}) -> wasmtime::Result<{err_camel}>;"
|
1580
|
-
);
|
1581
|
-
}
|
1582
|
-
}
|
1583
|
-
}
|
1584
|
-
}
|
1585
|
-
uwriteln!(self.src, "}}");
|
1586
|
-
|
1587
|
-
let mut where_clause = if self.gen.opts.async_.maybe_async() {
|
1588
|
-
"T: Send, U: Host + Send".to_string()
|
1589
|
-
} else {
|
1590
|
-
"U: Host".to_string()
|
1591
|
-
};
|
1592
|
-
|
1593
|
-
for t in required_conversion_traits {
|
1594
|
-
where_clause.push_str(" + ");
|
1595
|
-
where_clause.push_str(&t);
|
1596
|
-
}
|
1597
|
-
|
1598
|
-
uwriteln!(
|
1599
|
-
self.src,
|
1600
|
-
"
|
1601
|
-
pub fn add_to_linker<T, U>(
|
1602
|
-
linker: &mut wasmtime::component::Linker<T>,
|
1603
|
-
get: impl Fn(&mut T) -> &mut U + Send + Sync + Copy + 'static,
|
1604
|
-
) -> wasmtime::Result<()>
|
1605
|
-
where {where_clause}
|
1606
|
-
{{
|
1607
|
-
"
|
1608
|
-
);
|
1609
|
-
uwriteln!(self.src, "let mut inst = linker.instance(\"{name}\")?;");
|
1610
|
-
|
1611
|
-
for name in get_resources(self.resolve, id) {
|
1612
|
-
let camel = name.to_upper_camel_case();
|
1613
|
-
uwriteln!(
|
1614
|
-
self.src,
|
1615
|
-
"inst.resource(
|
1616
|
-
\"{name}\",
|
1617
|
-
wasmtime::component::ResourceType::host::<{camel}>(),
|
1618
|
-
move |mut store, rep| -> wasmtime::Result<()> {{
|
1619
|
-
Host{camel}::drop(get(store.data_mut()), wasmtime::component::Resource::new_own(rep))
|
1620
|
-
}},
|
1621
|
-
)?;"
|
1622
|
-
)
|
1623
|
-
}
|
1624
|
-
|
1625
|
-
for (_, func) in iface.functions.iter() {
|
1626
|
-
self.generate_add_function_to_linker(owner, func, "inst");
|
1627
|
-
}
|
1628
|
-
uwriteln!(self.src, "Ok(())");
|
1629
|
-
uwriteln!(self.src, "}}");
|
1630
|
-
}
|
1631
|
-
|
1632
|
-
fn generate_add_function_to_linker(&mut self, owner: TypeOwner, func: &Function, linker: &str) {
|
1633
|
-
uwrite!(
|
1634
|
-
self.src,
|
1635
|
-
"{linker}.{}(\"{}\", ",
|
1636
|
-
if self.gen.opts.async_.is_import_async(&func.name) {
|
1637
|
-
"func_wrap_async"
|
1638
|
-
} else {
|
1639
|
-
"func_wrap"
|
1640
|
-
},
|
1641
|
-
func.name
|
1642
|
-
);
|
1643
|
-
self.generate_guest_import_closure(owner, func);
|
1644
|
-
uwriteln!(self.src, ")?;")
|
1645
|
-
}
|
1646
|
-
|
1647
|
-
fn generate_guest_import_closure(&mut self, owner: TypeOwner, func: &Function) {
|
1648
|
-
// Generate the closure that's passed to a `Linker`, the final piece of
|
1649
|
-
// codegen here.
|
1650
|
-
|
1651
|
-
self.src
|
1652
|
-
.push_str("move |mut caller: wasmtime::StoreContextMut<'_, T>, (");
|
1653
|
-
for (i, _param) in func.params.iter().enumerate() {
|
1654
|
-
uwrite!(self.src, "arg{},", i);
|
1655
|
-
}
|
1656
|
-
self.src.push_str(") : (");
|
1657
|
-
|
1658
|
-
for (_, ty) in func.params.iter() {
|
1659
|
-
// Lift is required to be impled for this type, so we can't use
|
1660
|
-
// a borrowed type:
|
1661
|
-
self.print_ty(ty, TypeMode::Owned);
|
1662
|
-
self.src.push_str(", ");
|
1663
|
-
}
|
1664
|
-
self.src.push_str(") |");
|
1665
|
-
if self.gen.opts.async_.is_import_async(&func.name) {
|
1666
|
-
self.src.push_str(" Box::new(async move { \n");
|
1667
|
-
} else {
|
1668
|
-
self.src.push_str(" { \n");
|
1669
|
-
}
|
1670
|
-
|
1671
|
-
if self.gen.opts.tracing {
|
1672
|
-
uwrite!(
|
1673
|
-
self.src,
|
1674
|
-
"
|
1675
|
-
let span = tracing::span!(
|
1676
|
-
tracing::Level::TRACE,
|
1677
|
-
\"wit-bindgen import\",
|
1678
|
-
module = \"{}\",
|
1679
|
-
function = \"{}\",
|
1680
|
-
);
|
1681
|
-
let _enter = span.enter();
|
1682
|
-
",
|
1683
|
-
match owner {
|
1684
|
-
TypeOwner::Interface(id) => self.resolve.interfaces[id]
|
1685
|
-
.name
|
1686
|
-
.as_deref()
|
1687
|
-
.unwrap_or("<no module>"),
|
1688
|
-
TypeOwner::World(id) => &self.resolve.worlds[id].name,
|
1689
|
-
TypeOwner::None => "<no owner>",
|
1690
|
-
},
|
1691
|
-
func.name,
|
1692
|
-
);
|
1693
|
-
let mut event_fields = func
|
1694
|
-
.params
|
1695
|
-
.iter()
|
1696
|
-
.enumerate()
|
1697
|
-
.map(|(i, (name, _ty))| {
|
1698
|
-
let name = to_rust_ident(&name);
|
1699
|
-
format!("{name} = tracing::field::debug(&arg{i})")
|
1700
|
-
})
|
1701
|
-
.collect::<Vec<String>>();
|
1702
|
-
event_fields.push(format!("\"call\""));
|
1703
|
-
uwrite!(
|
1704
|
-
self.src,
|
1705
|
-
"tracing::event!(tracing::Level::TRACE, {});\n",
|
1706
|
-
event_fields.join(", ")
|
1707
|
-
);
|
1708
|
-
}
|
1709
|
-
|
1710
|
-
self.src.push_str("let host = get(caller.data_mut());\n");
|
1711
|
-
let func_name = rust_function_name(func);
|
1712
|
-
let host_trait = match func.kind {
|
1713
|
-
FunctionKind::Freestanding => match owner {
|
1714
|
-
TypeOwner::World(id) => format!(
|
1715
|
-
"{}Imports",
|
1716
|
-
self.resolve.worlds[id].name.to_upper_camel_case()
|
1717
|
-
),
|
1718
|
-
_ => "Host".to_string(),
|
1719
|
-
},
|
1720
|
-
FunctionKind::Method(id) | FunctionKind::Static(id) | FunctionKind::Constructor(id) => {
|
1721
|
-
let resource = self.resolve.types[id]
|
1722
|
-
.name
|
1723
|
-
.as_ref()
|
1724
|
-
.unwrap()
|
1725
|
-
.to_upper_camel_case();
|
1726
|
-
format!("Host{resource}")
|
1727
|
-
}
|
1728
|
-
};
|
1729
|
-
uwrite!(self.src, "let r = {host_trait}::{func_name}(host, ");
|
1730
|
-
|
1731
|
-
for (i, _) in func.params.iter().enumerate() {
|
1732
|
-
uwrite!(self.src, "arg{},", i);
|
1733
|
-
}
|
1734
|
-
if self.gen.opts.async_.is_import_async(&func.name) {
|
1735
|
-
uwrite!(self.src, ").await;\n");
|
1736
|
-
} else {
|
1737
|
-
uwrite!(self.src, ");\n");
|
1738
|
-
}
|
1739
|
-
|
1740
|
-
if self.gen.opts.tracing {
|
1741
|
-
uwrite!(
|
1742
|
-
self.src,
|
1743
|
-
"tracing::event!(tracing::Level::TRACE, result = tracing::field::debug(&r), \"return\");"
|
1744
|
-
);
|
1745
|
-
}
|
1746
|
-
|
1747
|
-
if let Some((_, err, _)) = self.special_case_trappable_error(&func.results) {
|
1748
|
-
let err = &self.resolve.types[resolve_type_definition_id(self.resolve, err)];
|
1749
|
-
let err_name = err.name.as_ref().unwrap();
|
1750
|
-
let owner = match err.owner {
|
1751
|
-
TypeOwner::Interface(i) => i,
|
1752
|
-
_ => unimplemented!(),
|
1753
|
-
};
|
1754
|
-
let convert_trait = match self.path_to_interface(owner) {
|
1755
|
-
Some(path) => format!("{path}::Host"),
|
1756
|
-
None => format!("Host"),
|
1757
|
-
};
|
1758
|
-
let convert = format!("{}::convert_{}", convert_trait, err_name.to_snake_case());
|
1759
|
-
uwrite!(
|
1760
|
-
self.src,
|
1761
|
-
"Ok((match r {{
|
1762
|
-
Ok(a) => Ok(a),
|
1763
|
-
Err(e) => Err({convert}(host, e)?),
|
1764
|
-
}},))"
|
1765
|
-
);
|
1766
|
-
} else if func.results.iter_types().len() == 1 {
|
1767
|
-
uwrite!(self.src, "Ok((r?,))\n");
|
1768
|
-
} else {
|
1769
|
-
uwrite!(self.src, "r\n");
|
1770
|
-
}
|
1771
|
-
|
1772
|
-
if self.gen.opts.async_.is_import_async(&func.name) {
|
1773
|
-
// Need to close Box::new and async block
|
1774
|
-
self.src.push_str("})");
|
1775
|
-
} else {
|
1776
|
-
self.src.push_str("}");
|
1777
|
-
}
|
1778
|
-
}
|
1779
|
-
|
1780
|
-
fn generate_function_trait_sig(&mut self, func: &Function) {
|
1781
|
-
self.rustdoc(&func.docs);
|
1782
|
-
|
1783
|
-
if self.gen.opts.async_.is_import_async(&func.name) {
|
1784
|
-
self.push_str("async ");
|
1785
|
-
}
|
1786
|
-
self.push_str("fn ");
|
1787
|
-
self.push_str(&rust_function_name(func));
|
1788
|
-
self.push_str("(&mut self, ");
|
1789
|
-
for (name, param) in func.params.iter() {
|
1790
|
-
let name = to_rust_ident(name);
|
1791
|
-
self.push_str(&name);
|
1792
|
-
self.push_str(": ");
|
1793
|
-
self.print_ty(param, TypeMode::Owned);
|
1794
|
-
self.push_str(",");
|
1795
|
-
}
|
1796
|
-
self.push_str(")");
|
1797
|
-
self.push_str(" -> ");
|
1798
|
-
|
1799
|
-
if let Some((r, _id, error_typename)) = self.special_case_trappable_error(&func.results) {
|
1800
|
-
// Functions which have a single result `result<ok,err>` get special
|
1801
|
-
// cased to use the host_wasmtime_rust::Error<err>, making it possible
|
1802
|
-
// for them to trap or use `?` to propogate their errors
|
1803
|
-
self.push_str("Result<");
|
1804
|
-
if let Some(ok) = r.ok {
|
1805
|
-
self.print_ty(&ok, TypeMode::Owned);
|
1806
|
-
} else {
|
1807
|
-
self.push_str("()");
|
1808
|
-
}
|
1809
|
-
self.push_str(",");
|
1810
|
-
self.push_str(&error_typename);
|
1811
|
-
self.push_str(">");
|
1812
|
-
} else {
|
1813
|
-
// All other functions get their return values wrapped in an wasmtime::Result.
|
1814
|
-
// Returning the anyhow::Error case can be used to trap.
|
1815
|
-
self.push_str("wasmtime::Result<");
|
1816
|
-
self.print_result_ty(&func.results, TypeMode::Owned);
|
1817
|
-
self.push_str(">");
|
1818
|
-
}
|
1819
|
-
|
1820
|
-
self.push_str(";\n");
|
1821
|
-
}
|
1822
|
-
|
1823
|
-
fn extract_typed_function(&mut self, func: &Function) -> (String, String) {
|
1824
|
-
let prev = mem::take(&mut self.src);
|
1825
|
-
let snake = func_field_name(self.resolve, func);
|
1826
|
-
uwrite!(self.src, "*__exports.typed_func::<(");
|
1827
|
-
for (_, ty) in func.params.iter() {
|
1828
|
-
self.print_ty(ty, TypeMode::AllBorrowed("'_"));
|
1829
|
-
self.push_str(", ");
|
1830
|
-
}
|
1831
|
-
self.src.push_str("), (");
|
1832
|
-
for ty in func.results.iter_types() {
|
1833
|
-
self.print_ty(ty, TypeMode::Owned);
|
1834
|
-
self.push_str(", ");
|
1835
|
-
}
|
1836
|
-
self.src.push_str(")>(\"");
|
1837
|
-
self.src.push_str(&func.name);
|
1838
|
-
self.src.push_str("\")?.func()");
|
1839
|
-
|
1840
|
-
let ret = (snake, mem::take(&mut self.src).to_string());
|
1841
|
-
self.src = prev;
|
1842
|
-
ret
|
1843
|
-
}
|
1844
|
-
|
1845
|
-
fn define_rust_guest_export(
|
1846
|
-
&mut self,
|
1847
|
-
resolve: &Resolve,
|
1848
|
-
ns: Option<&WorldKey>,
|
1849
|
-
func: &Function,
|
1850
|
-
) {
|
1851
|
-
// Exports must be async if anything could be async, it's just imports
|
1852
|
-
// that get to be optionally async/sync.
|
1853
|
-
let is_async = self.gen.opts.async_.maybe_async();
|
1854
|
-
|
1855
|
-
let (async_, async__, await_) = if is_async {
|
1856
|
-
("async", "_async", ".await")
|
1857
|
-
} else {
|
1858
|
-
("", "", "")
|
1859
|
-
};
|
1860
|
-
|
1861
|
-
self.rustdoc(&func.docs);
|
1862
|
-
|
1863
|
-
uwrite!(
|
1864
|
-
self.src,
|
1865
|
-
"pub {async_} fn call_{}<S: wasmtime::AsContextMut>(&self, mut store: S, ",
|
1866
|
-
func.item_name().to_snake_case(),
|
1867
|
-
);
|
1868
|
-
|
1869
|
-
for (i, param) in func.params.iter().enumerate() {
|
1870
|
-
uwrite!(self.src, "arg{}: ", i);
|
1871
|
-
self.print_ty(¶m.1, TypeMode::AllBorrowed("'_"));
|
1872
|
-
self.push_str(",");
|
1873
|
-
}
|
1874
|
-
|
1875
|
-
self.src.push_str(") -> wasmtime::Result<");
|
1876
|
-
self.print_result_ty(&func.results, TypeMode::Owned);
|
1877
|
-
|
1878
|
-
if is_async {
|
1879
|
-
self.src
|
1880
|
-
.push_str("> where <S as wasmtime::AsContext>::Data: Send {\n");
|
1881
|
-
} else {
|
1882
|
-
self.src.push_str("> {\n");
|
1883
|
-
}
|
1884
|
-
|
1885
|
-
if self.gen.opts.tracing {
|
1886
|
-
let ns = match ns {
|
1887
|
-
Some(key) => resolve.name_world_key(key),
|
1888
|
-
None => "default".to_string(),
|
1889
|
-
};
|
1890
|
-
self.src.push_str(&format!(
|
1891
|
-
"
|
1892
|
-
let span = tracing::span!(
|
1893
|
-
tracing::Level::TRACE,
|
1894
|
-
\"wit-bindgen export\",
|
1895
|
-
module = \"{ns}\",
|
1896
|
-
function = \"{}\",
|
1897
|
-
);
|
1898
|
-
let _enter = span.enter();
|
1899
|
-
",
|
1900
|
-
func.name,
|
1901
|
-
));
|
1902
|
-
}
|
1903
|
-
|
1904
|
-
self.src.push_str("let callee = unsafe {\n");
|
1905
|
-
self.src.push_str("wasmtime::component::TypedFunc::<(");
|
1906
|
-
for (_, ty) in func.params.iter() {
|
1907
|
-
self.print_ty(ty, TypeMode::AllBorrowed("'_"));
|
1908
|
-
self.push_str(", ");
|
1909
|
-
}
|
1910
|
-
self.src.push_str("), (");
|
1911
|
-
for ty in func.results.iter_types() {
|
1912
|
-
self.print_ty(ty, TypeMode::Owned);
|
1913
|
-
self.push_str(", ");
|
1914
|
-
}
|
1915
|
-
let projection_to_func = match &func.kind {
|
1916
|
-
FunctionKind::Freestanding => "",
|
1917
|
-
_ => ".funcs",
|
1918
|
-
};
|
1919
|
-
uwriteln!(
|
1920
|
-
self.src,
|
1921
|
-
")>::new_unchecked(self{projection_to_func}.{})",
|
1922
|
-
func_field_name(self.resolve, func),
|
1923
|
-
);
|
1924
|
-
self.src.push_str("};\n");
|
1925
|
-
self.src.push_str("let (");
|
1926
|
-
for (i, _) in func.results.iter_types().enumerate() {
|
1927
|
-
uwrite!(self.src, "ret{},", i);
|
1928
|
-
}
|
1929
|
-
uwrite!(
|
1930
|
-
self.src,
|
1931
|
-
") = callee.call{async__}(store.as_context_mut(), ("
|
1932
|
-
);
|
1933
|
-
for (i, _) in func.params.iter().enumerate() {
|
1934
|
-
uwrite!(self.src, "arg{}, ", i);
|
1935
|
-
}
|
1936
|
-
uwriteln!(self.src, ")){await_}?;");
|
1937
|
-
|
1938
|
-
uwriteln!(
|
1939
|
-
self.src,
|
1940
|
-
"callee.post_return{async__}(store.as_context_mut()){await_}?;"
|
1941
|
-
);
|
1942
|
-
|
1943
|
-
self.src.push_str("Ok(");
|
1944
|
-
if func.results.iter_types().len() == 1 {
|
1945
|
-
self.src.push_str("ret0");
|
1946
|
-
} else {
|
1947
|
-
self.src.push_str("(");
|
1948
|
-
for (i, _) in func.results.iter_types().enumerate() {
|
1949
|
-
uwrite!(self.src, "ret{},", i);
|
1950
|
-
}
|
1951
|
-
self.src.push_str(")");
|
1952
|
-
}
|
1953
|
-
self.src.push_str(")\n");
|
1954
|
-
|
1955
|
-
// End function body
|
1956
|
-
self.src.push_str("}\n");
|
1957
|
-
}
|
1958
|
-
|
1959
|
-
fn rustdoc(&mut self, docs: &Docs) {
|
1960
|
-
let docs = match &docs.contents {
|
1961
|
-
Some(docs) => docs,
|
1962
|
-
None => return,
|
1963
|
-
};
|
1964
|
-
for line in docs.trim().lines() {
|
1965
|
-
self.push_str("/// ");
|
1966
|
-
self.push_str(line);
|
1967
|
-
self.push_str("\n");
|
1968
|
-
}
|
1969
|
-
}
|
1970
|
-
|
1971
|
-
fn path_to_root(&self) -> String {
|
1972
|
-
let mut path_to_root = String::new();
|
1973
|
-
if let Some((_, key, is_export)) = self.current_interface {
|
1974
|
-
match key {
|
1975
|
-
WorldKey::Name(_) => {
|
1976
|
-
path_to_root.push_str("super::");
|
1977
|
-
}
|
1978
|
-
WorldKey::Interface(_) => {
|
1979
|
-
path_to_root.push_str("super::super::super::");
|
1980
|
-
}
|
1981
|
-
}
|
1982
|
-
if is_export {
|
1983
|
-
path_to_root.push_str("super::");
|
1984
|
-
}
|
1985
|
-
}
|
1986
|
-
path_to_root
|
1987
|
-
}
|
1988
|
-
}
|
1989
|
-
|
1990
|
-
impl<'a> RustGenerator<'a> for InterfaceGenerator<'a> {
|
1991
|
-
fn resolve(&self) -> &'a Resolve {
|
1992
|
-
self.resolve
|
1993
|
-
}
|
1994
|
-
|
1995
|
-
fn ownership(&self) -> Ownership {
|
1996
|
-
self.gen.opts.ownership
|
1997
|
-
}
|
1998
|
-
|
1999
|
-
fn path_to_interface(&self, interface: InterfaceId) -> Option<String> {
|
2000
|
-
if let Some((cur, _, _)) = self.current_interface {
|
2001
|
-
if cur == interface {
|
2002
|
-
return None;
|
2003
|
-
}
|
2004
|
-
}
|
2005
|
-
let mut path_to_root = self.path_to_root();
|
2006
|
-
match &self.gen.interface_names[&interface] {
|
2007
|
-
InterfaceName::Remapped { name_at_root, .. } => path_to_root.push_str(name_at_root),
|
2008
|
-
InterfaceName::Path(path) => {
|
2009
|
-
for (i, name) in path.iter().enumerate() {
|
2010
|
-
if i > 0 {
|
2011
|
-
path_to_root.push_str("::");
|
2012
|
-
}
|
2013
|
-
path_to_root.push_str(name);
|
2014
|
-
}
|
2015
|
-
}
|
2016
|
-
}
|
2017
|
-
Some(path_to_root)
|
2018
|
-
}
|
2019
|
-
|
2020
|
-
fn push_str(&mut self, s: &str) {
|
2021
|
-
self.src.push_str(s);
|
2022
|
-
}
|
2023
|
-
|
2024
|
-
fn info(&self, ty: TypeId) -> TypeInfo {
|
2025
|
-
self.gen.types.get(ty)
|
2026
|
-
}
|
2027
|
-
|
2028
|
-
fn is_imported_interface(&self, interface: InterfaceId) -> bool {
|
2029
|
-
self.gen.interface_last_seen_as_import[&interface]
|
2030
|
-
}
|
2031
|
-
}
|
2032
|
-
|
2033
|
-
/// When an interface `use`s a type from another interface, it creates a new TypeId
|
2034
|
-
/// referring to the definition TypeId. Chase this chain of references down to
|
2035
|
-
/// a TypeId for type's definition.
|
2036
|
-
fn resolve_type_definition_id(resolve: &Resolve, mut id: TypeId) -> TypeId {
|
2037
|
-
loop {
|
2038
|
-
match resolve.types[id].kind {
|
2039
|
-
TypeDefKind::Type(Type::Id(def_id)) => id = def_id,
|
2040
|
-
_ => return id,
|
2041
|
-
}
|
2042
|
-
}
|
2043
|
-
}
|
2044
|
-
|
2045
|
-
fn rust_function_name(func: &Function) -> String {
|
2046
|
-
match func.kind {
|
2047
|
-
FunctionKind::Method(_) | FunctionKind::Static(_) => to_rust_ident(func.item_name()),
|
2048
|
-
FunctionKind::Constructor(_) => "new".to_string(),
|
2049
|
-
FunctionKind::Freestanding => to_rust_ident(&func.name),
|
2050
|
-
}
|
2051
|
-
}
|
2052
|
-
|
2053
|
-
fn func_field_name(resolve: &Resolve, func: &Function) -> String {
|
2054
|
-
let mut name = String::new();
|
2055
|
-
match func.kind {
|
2056
|
-
FunctionKind::Method(id) => {
|
2057
|
-
name.push_str("method-");
|
2058
|
-
name.push_str(resolve.types[id].name.as_ref().unwrap());
|
2059
|
-
name.push_str("-");
|
2060
|
-
}
|
2061
|
-
FunctionKind::Static(id) => {
|
2062
|
-
name.push_str("static-");
|
2063
|
-
name.push_str(resolve.types[id].name.as_ref().unwrap());
|
2064
|
-
name.push_str("-");
|
2065
|
-
}
|
2066
|
-
FunctionKind::Constructor(id) => {
|
2067
|
-
name.push_str("constructor-");
|
2068
|
-
name.push_str(resolve.types[id].name.as_ref().unwrap());
|
2069
|
-
name.push_str("-");
|
2070
|
-
}
|
2071
|
-
FunctionKind::Freestanding => {}
|
2072
|
-
}
|
2073
|
-
name.push_str(func.item_name());
|
2074
|
-
name.to_snake_case()
|
2075
|
-
}
|
2076
|
-
|
2077
|
-
fn get_resources<'a>(resolve: &'a Resolve, id: InterfaceId) -> impl Iterator<Item = &'a str> + 'a {
|
2078
|
-
resolve.interfaces[id]
|
2079
|
-
.types
|
2080
|
-
.iter()
|
2081
|
-
.filter_map(move |(name, ty)| match resolve.types[*ty].kind {
|
2082
|
-
TypeDefKind::Resource => Some(name.as_str()),
|
2083
|
-
_ => None,
|
2084
|
-
})
|
2085
|
-
}
|
2086
|
-
|
2087
|
-
fn get_world_resources<'a>(
|
2088
|
-
resolve: &'a Resolve,
|
2089
|
-
id: WorldId,
|
2090
|
-
) -> impl Iterator<Item = &'a str> + 'a {
|
2091
|
-
resolve.worlds[id]
|
2092
|
-
.imports
|
2093
|
-
.iter()
|
2094
|
-
.filter_map(move |(name, item)| match item {
|
2095
|
-
WorldItem::Type(id) => match resolve.types[*id].kind {
|
2096
|
-
TypeDefKind::Resource => Some(match name {
|
2097
|
-
WorldKey::Name(s) => s.as_str(),
|
2098
|
-
WorldKey::Interface(_) => unreachable!(),
|
2099
|
-
}),
|
2100
|
-
_ => None,
|
2101
|
-
},
|
2102
|
-
_ => None,
|
2103
|
-
})
|
2104
|
-
}
|