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
@@ -0,0 +1,2309 @@
|
|
1
|
+
//! Helper for writing ELF files.
|
2
|
+
use alloc::string::String;
|
3
|
+
use alloc::vec::Vec;
|
4
|
+
use core::mem;
|
5
|
+
|
6
|
+
use crate::elf;
|
7
|
+
use crate::endian::*;
|
8
|
+
use crate::pod;
|
9
|
+
use crate::write::string::{StringId, StringTable};
|
10
|
+
use crate::write::util;
|
11
|
+
use crate::write::{Error, Result, WritableBuffer};
|
12
|
+
|
13
|
+
/// The index of an ELF section.
|
14
|
+
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
15
|
+
pub struct SectionIndex(pub u32);
|
16
|
+
|
17
|
+
/// The index of an ELF symbol.
|
18
|
+
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
19
|
+
pub struct SymbolIndex(pub u32);
|
20
|
+
|
21
|
+
/// A helper for writing ELF files.
|
22
|
+
///
|
23
|
+
/// Writing uses a two phase approach. The first phase builds up all of the information
|
24
|
+
/// that may need to be known ahead of time:
|
25
|
+
/// - build string tables
|
26
|
+
/// - reserve section indices
|
27
|
+
/// - reserve symbol indices
|
28
|
+
/// - reserve file ranges for headers and sections
|
29
|
+
///
|
30
|
+
/// Some of the information has ordering requirements. For example, strings must be added
|
31
|
+
/// to string tables before reserving the file range for the string table. Symbol indices
|
32
|
+
/// must be reserved after reserving the section indices they reference. There are debug
|
33
|
+
/// asserts to check some of these requirements.
|
34
|
+
///
|
35
|
+
/// The second phase writes everything out in order. Thus the caller must ensure writing
|
36
|
+
/// is in the same order that file ranges were reserved. There are debug asserts to assist
|
37
|
+
/// with checking this.
|
38
|
+
#[allow(missing_debug_implementations)]
|
39
|
+
pub struct Writer<'a> {
|
40
|
+
endian: Endianness,
|
41
|
+
is_64: bool,
|
42
|
+
is_mips64el: bool,
|
43
|
+
elf_align: usize,
|
44
|
+
|
45
|
+
buffer: &'a mut dyn WritableBuffer,
|
46
|
+
len: usize,
|
47
|
+
|
48
|
+
segment_offset: usize,
|
49
|
+
segment_num: u32,
|
50
|
+
|
51
|
+
section_offset: usize,
|
52
|
+
section_num: u32,
|
53
|
+
|
54
|
+
shstrtab: StringTable<'a>,
|
55
|
+
shstrtab_str_id: Option<StringId>,
|
56
|
+
shstrtab_index: SectionIndex,
|
57
|
+
shstrtab_offset: usize,
|
58
|
+
shstrtab_data: Vec<u8>,
|
59
|
+
|
60
|
+
need_strtab: bool,
|
61
|
+
strtab: StringTable<'a>,
|
62
|
+
strtab_str_id: Option<StringId>,
|
63
|
+
strtab_index: SectionIndex,
|
64
|
+
strtab_offset: usize,
|
65
|
+
strtab_data: Vec<u8>,
|
66
|
+
|
67
|
+
symtab_str_id: Option<StringId>,
|
68
|
+
symtab_index: SectionIndex,
|
69
|
+
symtab_offset: usize,
|
70
|
+
symtab_num: u32,
|
71
|
+
|
72
|
+
need_symtab_shndx: bool,
|
73
|
+
symtab_shndx_str_id: Option<StringId>,
|
74
|
+
symtab_shndx_offset: usize,
|
75
|
+
symtab_shndx_data: Vec<u8>,
|
76
|
+
|
77
|
+
need_dynstr: bool,
|
78
|
+
dynstr: StringTable<'a>,
|
79
|
+
dynstr_str_id: Option<StringId>,
|
80
|
+
dynstr_index: SectionIndex,
|
81
|
+
dynstr_offset: usize,
|
82
|
+
dynstr_data: Vec<u8>,
|
83
|
+
|
84
|
+
dynsym_str_id: Option<StringId>,
|
85
|
+
dynsym_index: SectionIndex,
|
86
|
+
dynsym_offset: usize,
|
87
|
+
dynsym_num: u32,
|
88
|
+
|
89
|
+
dynamic_str_id: Option<StringId>,
|
90
|
+
dynamic_offset: usize,
|
91
|
+
dynamic_num: usize,
|
92
|
+
|
93
|
+
hash_str_id: Option<StringId>,
|
94
|
+
hash_offset: usize,
|
95
|
+
hash_size: usize,
|
96
|
+
|
97
|
+
gnu_hash_str_id: Option<StringId>,
|
98
|
+
gnu_hash_offset: usize,
|
99
|
+
gnu_hash_size: usize,
|
100
|
+
|
101
|
+
gnu_versym_str_id: Option<StringId>,
|
102
|
+
gnu_versym_offset: usize,
|
103
|
+
|
104
|
+
gnu_verdef_str_id: Option<StringId>,
|
105
|
+
gnu_verdef_offset: usize,
|
106
|
+
gnu_verdef_size: usize,
|
107
|
+
gnu_verdef_count: u16,
|
108
|
+
gnu_verdef_remaining: u16,
|
109
|
+
gnu_verdaux_remaining: u16,
|
110
|
+
|
111
|
+
gnu_verneed_str_id: Option<StringId>,
|
112
|
+
gnu_verneed_offset: usize,
|
113
|
+
gnu_verneed_size: usize,
|
114
|
+
gnu_verneed_count: u16,
|
115
|
+
gnu_verneed_remaining: u16,
|
116
|
+
gnu_vernaux_remaining: u16,
|
117
|
+
|
118
|
+
gnu_attributes_str_id: Option<StringId>,
|
119
|
+
gnu_attributes_offset: usize,
|
120
|
+
gnu_attributes_size: usize,
|
121
|
+
}
|
122
|
+
|
123
|
+
impl<'a> Writer<'a> {
|
124
|
+
/// Create a new `Writer` for the given endianness and ELF class.
|
125
|
+
pub fn new(endian: Endianness, is_64: bool, buffer: &'a mut dyn WritableBuffer) -> Self {
|
126
|
+
let elf_align = if is_64 { 8 } else { 4 };
|
127
|
+
Writer {
|
128
|
+
endian,
|
129
|
+
is_64,
|
130
|
+
// Determined later.
|
131
|
+
is_mips64el: false,
|
132
|
+
elf_align,
|
133
|
+
|
134
|
+
buffer,
|
135
|
+
len: 0,
|
136
|
+
|
137
|
+
segment_offset: 0,
|
138
|
+
segment_num: 0,
|
139
|
+
|
140
|
+
section_offset: 0,
|
141
|
+
section_num: 0,
|
142
|
+
|
143
|
+
shstrtab: StringTable::default(),
|
144
|
+
shstrtab_str_id: None,
|
145
|
+
shstrtab_index: SectionIndex(0),
|
146
|
+
shstrtab_offset: 0,
|
147
|
+
shstrtab_data: Vec::new(),
|
148
|
+
|
149
|
+
need_strtab: false,
|
150
|
+
strtab: StringTable::default(),
|
151
|
+
strtab_str_id: None,
|
152
|
+
strtab_index: SectionIndex(0),
|
153
|
+
strtab_offset: 0,
|
154
|
+
strtab_data: Vec::new(),
|
155
|
+
|
156
|
+
symtab_str_id: None,
|
157
|
+
symtab_index: SectionIndex(0),
|
158
|
+
symtab_offset: 0,
|
159
|
+
symtab_num: 0,
|
160
|
+
|
161
|
+
need_symtab_shndx: false,
|
162
|
+
symtab_shndx_str_id: None,
|
163
|
+
symtab_shndx_offset: 0,
|
164
|
+
symtab_shndx_data: Vec::new(),
|
165
|
+
|
166
|
+
need_dynstr: false,
|
167
|
+
dynstr: StringTable::default(),
|
168
|
+
dynstr_str_id: None,
|
169
|
+
dynstr_index: SectionIndex(0),
|
170
|
+
dynstr_offset: 0,
|
171
|
+
dynstr_data: Vec::new(),
|
172
|
+
|
173
|
+
dynsym_str_id: None,
|
174
|
+
dynsym_index: SectionIndex(0),
|
175
|
+
dynsym_offset: 0,
|
176
|
+
dynsym_num: 0,
|
177
|
+
|
178
|
+
dynamic_str_id: None,
|
179
|
+
dynamic_offset: 0,
|
180
|
+
dynamic_num: 0,
|
181
|
+
|
182
|
+
hash_str_id: None,
|
183
|
+
hash_offset: 0,
|
184
|
+
hash_size: 0,
|
185
|
+
|
186
|
+
gnu_hash_str_id: None,
|
187
|
+
gnu_hash_offset: 0,
|
188
|
+
gnu_hash_size: 0,
|
189
|
+
|
190
|
+
gnu_versym_str_id: None,
|
191
|
+
gnu_versym_offset: 0,
|
192
|
+
|
193
|
+
gnu_verdef_str_id: None,
|
194
|
+
gnu_verdef_offset: 0,
|
195
|
+
gnu_verdef_size: 0,
|
196
|
+
gnu_verdef_count: 0,
|
197
|
+
gnu_verdef_remaining: 0,
|
198
|
+
gnu_verdaux_remaining: 0,
|
199
|
+
|
200
|
+
gnu_verneed_str_id: None,
|
201
|
+
gnu_verneed_offset: 0,
|
202
|
+
gnu_verneed_size: 0,
|
203
|
+
gnu_verneed_count: 0,
|
204
|
+
gnu_verneed_remaining: 0,
|
205
|
+
gnu_vernaux_remaining: 0,
|
206
|
+
|
207
|
+
gnu_attributes_str_id: None,
|
208
|
+
gnu_attributes_offset: 0,
|
209
|
+
gnu_attributes_size: 0,
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
/// Get the file class that will be written.
|
214
|
+
fn class(&self) -> Class {
|
215
|
+
Class { is_64: self.is_64 }
|
216
|
+
}
|
217
|
+
|
218
|
+
/// Return the current file length that has been reserved.
|
219
|
+
pub fn reserved_len(&self) -> usize {
|
220
|
+
self.len
|
221
|
+
}
|
222
|
+
|
223
|
+
/// Return the current file length that has been written.
|
224
|
+
#[allow(clippy::len_without_is_empty)]
|
225
|
+
pub fn len(&self) -> usize {
|
226
|
+
self.buffer.len()
|
227
|
+
}
|
228
|
+
|
229
|
+
/// Reserve a file range with the given size and starting alignment.
|
230
|
+
///
|
231
|
+
/// Returns the aligned offset of the start of the range.
|
232
|
+
pub fn reserve(&mut self, len: usize, align_start: usize) -> usize {
|
233
|
+
if align_start > 1 {
|
234
|
+
self.len = util::align(self.len, align_start);
|
235
|
+
}
|
236
|
+
let offset = self.len;
|
237
|
+
self.len += len;
|
238
|
+
offset
|
239
|
+
}
|
240
|
+
|
241
|
+
/// Write alignment padding bytes.
|
242
|
+
pub fn write_align(&mut self, align_start: usize) {
|
243
|
+
if align_start > 1 {
|
244
|
+
util::write_align(self.buffer, align_start);
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
/// Write data.
|
249
|
+
///
|
250
|
+
/// This is typically used to write section data.
|
251
|
+
pub fn write(&mut self, data: &[u8]) {
|
252
|
+
self.buffer.write_bytes(data);
|
253
|
+
}
|
254
|
+
|
255
|
+
/// Reserve the file range up to the given file offset.
|
256
|
+
pub fn reserve_until(&mut self, offset: usize) {
|
257
|
+
debug_assert!(self.len <= offset);
|
258
|
+
self.len = offset;
|
259
|
+
}
|
260
|
+
|
261
|
+
/// Write padding up to the given file offset.
|
262
|
+
pub fn pad_until(&mut self, offset: usize) {
|
263
|
+
debug_assert!(self.buffer.len() <= offset);
|
264
|
+
self.buffer.resize(offset);
|
265
|
+
}
|
266
|
+
|
267
|
+
/// Reserve the range for the file header.
|
268
|
+
///
|
269
|
+
/// This must be at the start of the file.
|
270
|
+
pub fn reserve_file_header(&mut self) {
|
271
|
+
debug_assert_eq!(self.len, 0);
|
272
|
+
self.reserve(self.class().file_header_size(), 1);
|
273
|
+
}
|
274
|
+
|
275
|
+
/// Write the file header.
|
276
|
+
///
|
277
|
+
/// This must be at the start of the file.
|
278
|
+
///
|
279
|
+
/// Fields that can be derived from known information are automatically set by this function.
|
280
|
+
pub fn write_file_header(&mut self, header: &FileHeader) -> Result<()> {
|
281
|
+
debug_assert_eq!(self.buffer.len(), 0);
|
282
|
+
|
283
|
+
self.is_mips64el =
|
284
|
+
self.is_64 && self.endian.is_little_endian() && header.e_machine == elf::EM_MIPS;
|
285
|
+
|
286
|
+
// Start writing.
|
287
|
+
self.buffer
|
288
|
+
.reserve(self.len)
|
289
|
+
.map_err(|_| Error(String::from("Cannot allocate buffer")))?;
|
290
|
+
|
291
|
+
// Write file header.
|
292
|
+
let e_ident = elf::Ident {
|
293
|
+
magic: elf::ELFMAG,
|
294
|
+
class: if self.is_64 {
|
295
|
+
elf::ELFCLASS64
|
296
|
+
} else {
|
297
|
+
elf::ELFCLASS32
|
298
|
+
},
|
299
|
+
data: if self.endian.is_little_endian() {
|
300
|
+
elf::ELFDATA2LSB
|
301
|
+
} else {
|
302
|
+
elf::ELFDATA2MSB
|
303
|
+
},
|
304
|
+
version: elf::EV_CURRENT,
|
305
|
+
os_abi: header.os_abi,
|
306
|
+
abi_version: header.abi_version,
|
307
|
+
padding: [0; 7],
|
308
|
+
};
|
309
|
+
|
310
|
+
let e_ehsize = self.class().file_header_size() as u16;
|
311
|
+
|
312
|
+
let e_phoff = self.segment_offset as u64;
|
313
|
+
let e_phentsize = if self.segment_num == 0 {
|
314
|
+
0
|
315
|
+
} else {
|
316
|
+
self.class().program_header_size() as u16
|
317
|
+
};
|
318
|
+
// TODO: overflow
|
319
|
+
let e_phnum = self.segment_num as u16;
|
320
|
+
|
321
|
+
let e_shoff = self.section_offset as u64;
|
322
|
+
let e_shentsize = if self.section_num == 0 {
|
323
|
+
0
|
324
|
+
} else {
|
325
|
+
self.class().section_header_size() as u16
|
326
|
+
};
|
327
|
+
let e_shnum = if self.section_num >= elf::SHN_LORESERVE.into() {
|
328
|
+
0
|
329
|
+
} else {
|
330
|
+
self.section_num as u16
|
331
|
+
};
|
332
|
+
let e_shstrndx = if self.shstrtab_index.0 >= elf::SHN_LORESERVE.into() {
|
333
|
+
elf::SHN_XINDEX
|
334
|
+
} else {
|
335
|
+
self.shstrtab_index.0 as u16
|
336
|
+
};
|
337
|
+
|
338
|
+
let endian = self.endian;
|
339
|
+
if self.is_64 {
|
340
|
+
let file = elf::FileHeader64 {
|
341
|
+
e_ident,
|
342
|
+
e_type: U16::new(endian, header.e_type),
|
343
|
+
e_machine: U16::new(endian, header.e_machine),
|
344
|
+
e_version: U32::new(endian, elf::EV_CURRENT.into()),
|
345
|
+
e_entry: U64::new(endian, header.e_entry),
|
346
|
+
e_phoff: U64::new(endian, e_phoff),
|
347
|
+
e_shoff: U64::new(endian, e_shoff),
|
348
|
+
e_flags: U32::new(endian, header.e_flags),
|
349
|
+
e_ehsize: U16::new(endian, e_ehsize),
|
350
|
+
e_phentsize: U16::new(endian, e_phentsize),
|
351
|
+
e_phnum: U16::new(endian, e_phnum),
|
352
|
+
e_shentsize: U16::new(endian, e_shentsize),
|
353
|
+
e_shnum: U16::new(endian, e_shnum),
|
354
|
+
e_shstrndx: U16::new(endian, e_shstrndx),
|
355
|
+
};
|
356
|
+
self.buffer.write(&file)
|
357
|
+
} else {
|
358
|
+
let file = elf::FileHeader32 {
|
359
|
+
e_ident,
|
360
|
+
e_type: U16::new(endian, header.e_type),
|
361
|
+
e_machine: U16::new(endian, header.e_machine),
|
362
|
+
e_version: U32::new(endian, elf::EV_CURRENT.into()),
|
363
|
+
e_entry: U32::new(endian, header.e_entry as u32),
|
364
|
+
e_phoff: U32::new(endian, e_phoff as u32),
|
365
|
+
e_shoff: U32::new(endian, e_shoff as u32),
|
366
|
+
e_flags: U32::new(endian, header.e_flags),
|
367
|
+
e_ehsize: U16::new(endian, e_ehsize),
|
368
|
+
e_phentsize: U16::new(endian, e_phentsize),
|
369
|
+
e_phnum: U16::new(endian, e_phnum),
|
370
|
+
e_shentsize: U16::new(endian, e_shentsize),
|
371
|
+
e_shnum: U16::new(endian, e_shnum),
|
372
|
+
e_shstrndx: U16::new(endian, e_shstrndx),
|
373
|
+
};
|
374
|
+
self.buffer.write(&file);
|
375
|
+
}
|
376
|
+
|
377
|
+
Ok(())
|
378
|
+
}
|
379
|
+
|
380
|
+
/// Reserve the range for the program headers.
|
381
|
+
pub fn reserve_program_headers(&mut self, num: u32) {
|
382
|
+
debug_assert_eq!(self.segment_offset, 0);
|
383
|
+
if num == 0 {
|
384
|
+
return;
|
385
|
+
}
|
386
|
+
self.segment_num = num;
|
387
|
+
self.segment_offset = self.reserve(
|
388
|
+
num as usize * self.class().program_header_size(),
|
389
|
+
self.elf_align,
|
390
|
+
);
|
391
|
+
}
|
392
|
+
|
393
|
+
/// Write alignment padding bytes prior to the program headers.
|
394
|
+
pub fn write_align_program_headers(&mut self) {
|
395
|
+
if self.segment_offset == 0 {
|
396
|
+
return;
|
397
|
+
}
|
398
|
+
util::write_align(self.buffer, self.elf_align);
|
399
|
+
debug_assert_eq!(self.segment_offset, self.buffer.len());
|
400
|
+
}
|
401
|
+
|
402
|
+
/// Write a program header.
|
403
|
+
pub fn write_program_header(&mut self, header: &ProgramHeader) {
|
404
|
+
let endian = self.endian;
|
405
|
+
if self.is_64 {
|
406
|
+
let header = elf::ProgramHeader64 {
|
407
|
+
p_type: U32::new(endian, header.p_type),
|
408
|
+
p_flags: U32::new(endian, header.p_flags),
|
409
|
+
p_offset: U64::new(endian, header.p_offset),
|
410
|
+
p_vaddr: U64::new(endian, header.p_vaddr),
|
411
|
+
p_paddr: U64::new(endian, header.p_paddr),
|
412
|
+
p_filesz: U64::new(endian, header.p_filesz),
|
413
|
+
p_memsz: U64::new(endian, header.p_memsz),
|
414
|
+
p_align: U64::new(endian, header.p_align),
|
415
|
+
};
|
416
|
+
self.buffer.write(&header);
|
417
|
+
} else {
|
418
|
+
let header = elf::ProgramHeader32 {
|
419
|
+
p_type: U32::new(endian, header.p_type),
|
420
|
+
p_offset: U32::new(endian, header.p_offset as u32),
|
421
|
+
p_vaddr: U32::new(endian, header.p_vaddr as u32),
|
422
|
+
p_paddr: U32::new(endian, header.p_paddr as u32),
|
423
|
+
p_filesz: U32::new(endian, header.p_filesz as u32),
|
424
|
+
p_memsz: U32::new(endian, header.p_memsz as u32),
|
425
|
+
p_flags: U32::new(endian, header.p_flags),
|
426
|
+
p_align: U32::new(endian, header.p_align as u32),
|
427
|
+
};
|
428
|
+
self.buffer.write(&header);
|
429
|
+
}
|
430
|
+
}
|
431
|
+
|
432
|
+
/// Reserve the section index for the null section header.
|
433
|
+
///
|
434
|
+
/// The null section header is usually automatically reserved,
|
435
|
+
/// but this can be used to force an empty section table.
|
436
|
+
///
|
437
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
438
|
+
pub fn reserve_null_section_index(&mut self) -> SectionIndex {
|
439
|
+
debug_assert_eq!(self.section_num, 0);
|
440
|
+
if self.section_num == 0 {
|
441
|
+
self.section_num = 1;
|
442
|
+
}
|
443
|
+
SectionIndex(0)
|
444
|
+
}
|
445
|
+
|
446
|
+
/// Reserve a section table index.
|
447
|
+
///
|
448
|
+
/// Automatically also reserves the null section header if required.
|
449
|
+
///
|
450
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
451
|
+
pub fn reserve_section_index(&mut self) -> SectionIndex {
|
452
|
+
debug_assert_eq!(self.section_offset, 0);
|
453
|
+
if self.section_num == 0 {
|
454
|
+
self.section_num = 1;
|
455
|
+
}
|
456
|
+
let index = self.section_num;
|
457
|
+
self.section_num += 1;
|
458
|
+
SectionIndex(index)
|
459
|
+
}
|
460
|
+
|
461
|
+
/// Reserve the range for the section headers.
|
462
|
+
///
|
463
|
+
/// This function does nothing if no sections were reserved.
|
464
|
+
/// This must be called after [`Self::reserve_section_index`]
|
465
|
+
/// and other functions that reserve section indices.
|
466
|
+
pub fn reserve_section_headers(&mut self) {
|
467
|
+
debug_assert_eq!(self.section_offset, 0);
|
468
|
+
if self.section_num == 0 {
|
469
|
+
return;
|
470
|
+
}
|
471
|
+
self.section_offset = self.reserve(
|
472
|
+
self.section_num as usize * self.class().section_header_size(),
|
473
|
+
self.elf_align,
|
474
|
+
);
|
475
|
+
}
|
476
|
+
|
477
|
+
/// Write the null section header.
|
478
|
+
///
|
479
|
+
/// This must be the first section header that is written.
|
480
|
+
/// This function does nothing if no sections were reserved.
|
481
|
+
pub fn write_null_section_header(&mut self) {
|
482
|
+
if self.section_num == 0 {
|
483
|
+
return;
|
484
|
+
}
|
485
|
+
util::write_align(self.buffer, self.elf_align);
|
486
|
+
debug_assert_eq!(self.section_offset, self.buffer.len());
|
487
|
+
self.write_section_header(&SectionHeader {
|
488
|
+
name: None,
|
489
|
+
sh_type: 0,
|
490
|
+
sh_flags: 0,
|
491
|
+
sh_addr: 0,
|
492
|
+
sh_offset: 0,
|
493
|
+
sh_size: if self.section_num >= elf::SHN_LORESERVE.into() {
|
494
|
+
self.section_num.into()
|
495
|
+
} else {
|
496
|
+
0
|
497
|
+
},
|
498
|
+
sh_link: if self.shstrtab_index.0 >= elf::SHN_LORESERVE.into() {
|
499
|
+
self.shstrtab_index.0
|
500
|
+
} else {
|
501
|
+
0
|
502
|
+
},
|
503
|
+
// TODO: e_phnum overflow
|
504
|
+
sh_info: 0,
|
505
|
+
sh_addralign: 0,
|
506
|
+
sh_entsize: 0,
|
507
|
+
});
|
508
|
+
}
|
509
|
+
|
510
|
+
/// Write a section header.
|
511
|
+
pub fn write_section_header(&mut self, section: &SectionHeader) {
|
512
|
+
let sh_name = if let Some(name) = section.name {
|
513
|
+
self.shstrtab.get_offset(name) as u32
|
514
|
+
} else {
|
515
|
+
0
|
516
|
+
};
|
517
|
+
let endian = self.endian;
|
518
|
+
if self.is_64 {
|
519
|
+
let section = elf::SectionHeader64 {
|
520
|
+
sh_name: U32::new(endian, sh_name),
|
521
|
+
sh_type: U32::new(endian, section.sh_type),
|
522
|
+
sh_flags: U64::new(endian, section.sh_flags),
|
523
|
+
sh_addr: U64::new(endian, section.sh_addr),
|
524
|
+
sh_offset: U64::new(endian, section.sh_offset),
|
525
|
+
sh_size: U64::new(endian, section.sh_size),
|
526
|
+
sh_link: U32::new(endian, section.sh_link),
|
527
|
+
sh_info: U32::new(endian, section.sh_info),
|
528
|
+
sh_addralign: U64::new(endian, section.sh_addralign),
|
529
|
+
sh_entsize: U64::new(endian, section.sh_entsize),
|
530
|
+
};
|
531
|
+
self.buffer.write(§ion);
|
532
|
+
} else {
|
533
|
+
let section = elf::SectionHeader32 {
|
534
|
+
sh_name: U32::new(endian, sh_name),
|
535
|
+
sh_type: U32::new(endian, section.sh_type),
|
536
|
+
sh_flags: U32::new(endian, section.sh_flags as u32),
|
537
|
+
sh_addr: U32::new(endian, section.sh_addr as u32),
|
538
|
+
sh_offset: U32::new(endian, section.sh_offset as u32),
|
539
|
+
sh_size: U32::new(endian, section.sh_size as u32),
|
540
|
+
sh_link: U32::new(endian, section.sh_link),
|
541
|
+
sh_info: U32::new(endian, section.sh_info),
|
542
|
+
sh_addralign: U32::new(endian, section.sh_addralign as u32),
|
543
|
+
sh_entsize: U32::new(endian, section.sh_entsize as u32),
|
544
|
+
};
|
545
|
+
self.buffer.write(§ion);
|
546
|
+
}
|
547
|
+
}
|
548
|
+
|
549
|
+
/// Add a section name to the section header string table.
|
550
|
+
///
|
551
|
+
/// This will be stored in the `.shstrtab` section.
|
552
|
+
///
|
553
|
+
/// This must be called before [`Self::reserve_shstrtab`].
|
554
|
+
pub fn add_section_name(&mut self, name: &'a [u8]) -> StringId {
|
555
|
+
debug_assert_eq!(self.shstrtab_offset, 0);
|
556
|
+
self.shstrtab.add(name)
|
557
|
+
}
|
558
|
+
|
559
|
+
/// Reserve the range for the section header string table.
|
560
|
+
///
|
561
|
+
/// This range is used for a section named `.shstrtab`.
|
562
|
+
///
|
563
|
+
/// This function does nothing if no sections were reserved.
|
564
|
+
/// This must be called after [`Self::add_section_name`].
|
565
|
+
/// and other functions that reserve section names and indices.
|
566
|
+
pub fn reserve_shstrtab(&mut self) {
|
567
|
+
debug_assert_eq!(self.shstrtab_offset, 0);
|
568
|
+
if self.section_num == 0 {
|
569
|
+
return;
|
570
|
+
}
|
571
|
+
// Start with null section name.
|
572
|
+
self.shstrtab_data = vec![0];
|
573
|
+
self.shstrtab.write(1, &mut self.shstrtab_data);
|
574
|
+
self.shstrtab_offset = self.reserve(self.shstrtab_data.len(), 1);
|
575
|
+
}
|
576
|
+
|
577
|
+
/// Write the section header string table.
|
578
|
+
///
|
579
|
+
/// This function does nothing if the section was not reserved.
|
580
|
+
pub fn write_shstrtab(&mut self) {
|
581
|
+
if self.shstrtab_offset == 0 {
|
582
|
+
return;
|
583
|
+
}
|
584
|
+
debug_assert_eq!(self.shstrtab_offset, self.buffer.len());
|
585
|
+
self.buffer.write_bytes(&self.shstrtab_data);
|
586
|
+
}
|
587
|
+
|
588
|
+
/// Reserve the section index for the section header string table.
|
589
|
+
///
|
590
|
+
/// This must be called before [`Self::reserve_shstrtab`]
|
591
|
+
/// and [`Self::reserve_section_headers`].
|
592
|
+
pub fn reserve_shstrtab_section_index(&mut self) -> SectionIndex {
|
593
|
+
self.reserve_shstrtab_section_index_with_name(&b".shstrtab"[..])
|
594
|
+
}
|
595
|
+
|
596
|
+
/// Reserve the section index for the section header string table.
|
597
|
+
///
|
598
|
+
/// This must be called before [`Self::reserve_shstrtab`]
|
599
|
+
/// and [`Self::reserve_section_headers`].
|
600
|
+
pub fn reserve_shstrtab_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
601
|
+
debug_assert_eq!(self.shstrtab_index, SectionIndex(0));
|
602
|
+
self.shstrtab_str_id = Some(self.add_section_name(name));
|
603
|
+
self.shstrtab_index = self.reserve_section_index();
|
604
|
+
self.shstrtab_index
|
605
|
+
}
|
606
|
+
|
607
|
+
/// Write the section header for the section header string table.
|
608
|
+
///
|
609
|
+
/// This function does nothing if the section index was not reserved.
|
610
|
+
pub fn write_shstrtab_section_header(&mut self) {
|
611
|
+
if self.shstrtab_index == SectionIndex(0) {
|
612
|
+
return;
|
613
|
+
}
|
614
|
+
self.write_section_header(&SectionHeader {
|
615
|
+
name: self.shstrtab_str_id,
|
616
|
+
sh_type: elf::SHT_STRTAB,
|
617
|
+
sh_flags: 0,
|
618
|
+
sh_addr: 0,
|
619
|
+
sh_offset: self.shstrtab_offset as u64,
|
620
|
+
sh_size: self.shstrtab_data.len() as u64,
|
621
|
+
sh_link: 0,
|
622
|
+
sh_info: 0,
|
623
|
+
sh_addralign: 1,
|
624
|
+
sh_entsize: 0,
|
625
|
+
});
|
626
|
+
}
|
627
|
+
|
628
|
+
/// Add a string to the string table.
|
629
|
+
///
|
630
|
+
/// This will be stored in the `.strtab` section.
|
631
|
+
///
|
632
|
+
/// This must be called before [`Self::reserve_strtab`].
|
633
|
+
pub fn add_string(&mut self, name: &'a [u8]) -> StringId {
|
634
|
+
debug_assert_eq!(self.strtab_offset, 0);
|
635
|
+
self.need_strtab = true;
|
636
|
+
self.strtab.add(name)
|
637
|
+
}
|
638
|
+
|
639
|
+
/// Return true if `.strtab` is needed.
|
640
|
+
pub fn strtab_needed(&self) -> bool {
|
641
|
+
self.need_strtab
|
642
|
+
}
|
643
|
+
|
644
|
+
/// Reserve the range for the string table.
|
645
|
+
///
|
646
|
+
/// This range is used for a section named `.strtab`.
|
647
|
+
///
|
648
|
+
/// This function does nothing if no strings or symbols were defined.
|
649
|
+
/// This must be called after [`Self::add_string`].
|
650
|
+
pub fn reserve_strtab(&mut self) {
|
651
|
+
debug_assert_eq!(self.strtab_offset, 0);
|
652
|
+
if !self.need_strtab {
|
653
|
+
return;
|
654
|
+
}
|
655
|
+
// Start with null string.
|
656
|
+
self.strtab_data = vec![0];
|
657
|
+
self.strtab.write(1, &mut self.strtab_data);
|
658
|
+
self.strtab_offset = self.reserve(self.strtab_data.len(), 1);
|
659
|
+
}
|
660
|
+
|
661
|
+
/// Write the string table.
|
662
|
+
///
|
663
|
+
/// This function does nothing if the section was not reserved.
|
664
|
+
pub fn write_strtab(&mut self) {
|
665
|
+
if self.strtab_offset == 0 {
|
666
|
+
return;
|
667
|
+
}
|
668
|
+
debug_assert_eq!(self.strtab_offset, self.buffer.len());
|
669
|
+
self.buffer.write_bytes(&self.strtab_data);
|
670
|
+
}
|
671
|
+
|
672
|
+
/// Reserve the section index for the string table.
|
673
|
+
///
|
674
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
675
|
+
pub fn reserve_strtab_section_index(&mut self) -> SectionIndex {
|
676
|
+
self.reserve_strtab_section_index_with_name(&b".strtab"[..])
|
677
|
+
}
|
678
|
+
|
679
|
+
/// Reserve the section index for the string table.
|
680
|
+
///
|
681
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
682
|
+
pub fn reserve_strtab_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
683
|
+
debug_assert_eq!(self.strtab_index, SectionIndex(0));
|
684
|
+
self.strtab_str_id = Some(self.add_section_name(name));
|
685
|
+
self.strtab_index = self.reserve_section_index();
|
686
|
+
self.strtab_index
|
687
|
+
}
|
688
|
+
|
689
|
+
/// Write the section header for the string table.
|
690
|
+
///
|
691
|
+
/// This function does nothing if the section index was not reserved.
|
692
|
+
pub fn write_strtab_section_header(&mut self) {
|
693
|
+
if self.strtab_index == SectionIndex(0) {
|
694
|
+
return;
|
695
|
+
}
|
696
|
+
self.write_section_header(&SectionHeader {
|
697
|
+
name: self.strtab_str_id,
|
698
|
+
sh_type: elf::SHT_STRTAB,
|
699
|
+
sh_flags: 0,
|
700
|
+
sh_addr: 0,
|
701
|
+
sh_offset: self.strtab_offset as u64,
|
702
|
+
sh_size: self.strtab_data.len() as u64,
|
703
|
+
sh_link: 0,
|
704
|
+
sh_info: 0,
|
705
|
+
sh_addralign: 1,
|
706
|
+
sh_entsize: 0,
|
707
|
+
});
|
708
|
+
}
|
709
|
+
|
710
|
+
/// Reserve the null symbol table entry.
|
711
|
+
///
|
712
|
+
/// This will be stored in the `.symtab` section.
|
713
|
+
///
|
714
|
+
/// The null symbol table entry is usually automatically reserved,
|
715
|
+
/// but this can be used to force an empty symbol table.
|
716
|
+
///
|
717
|
+
/// This must be called before [`Self::reserve_symtab`].
|
718
|
+
pub fn reserve_null_symbol_index(&mut self) -> SymbolIndex {
|
719
|
+
debug_assert_eq!(self.symtab_offset, 0);
|
720
|
+
debug_assert_eq!(self.symtab_num, 0);
|
721
|
+
self.symtab_num = 1;
|
722
|
+
// The symtab must link to a strtab.
|
723
|
+
self.need_strtab = true;
|
724
|
+
SymbolIndex(0)
|
725
|
+
}
|
726
|
+
|
727
|
+
/// Reserve a symbol table entry.
|
728
|
+
///
|
729
|
+
/// This will be stored in the `.symtab` section.
|
730
|
+
///
|
731
|
+
/// `section_index` is used to determine whether `.symtab_shndx` is required.
|
732
|
+
///
|
733
|
+
/// Automatically also reserves the null symbol if required.
|
734
|
+
/// Callers may assume that the returned indices will be sequential
|
735
|
+
/// starting at 1.
|
736
|
+
///
|
737
|
+
/// This must be called before [`Self::reserve_symtab`] and
|
738
|
+
/// [`Self::reserve_symtab_shndx`].
|
739
|
+
pub fn reserve_symbol_index(&mut self, section_index: Option<SectionIndex>) -> SymbolIndex {
|
740
|
+
debug_assert_eq!(self.symtab_offset, 0);
|
741
|
+
debug_assert_eq!(self.symtab_shndx_offset, 0);
|
742
|
+
if self.symtab_num == 0 {
|
743
|
+
self.symtab_num = 1;
|
744
|
+
// The symtab must link to a strtab.
|
745
|
+
self.need_strtab = true;
|
746
|
+
}
|
747
|
+
let index = self.symtab_num;
|
748
|
+
self.symtab_num += 1;
|
749
|
+
if let Some(section_index) = section_index {
|
750
|
+
if section_index.0 >= elf::SHN_LORESERVE.into() {
|
751
|
+
self.need_symtab_shndx = true;
|
752
|
+
}
|
753
|
+
}
|
754
|
+
SymbolIndex(index)
|
755
|
+
}
|
756
|
+
|
757
|
+
/// Return the number of reserved symbol table entries.
|
758
|
+
///
|
759
|
+
/// Includes the null symbol.
|
760
|
+
pub fn symbol_count(&self) -> u32 {
|
761
|
+
self.symtab_num
|
762
|
+
}
|
763
|
+
|
764
|
+
/// Reserve the range for the symbol table.
|
765
|
+
///
|
766
|
+
/// This range is used for a section named `.symtab`.
|
767
|
+
/// This function does nothing if no symbols were reserved.
|
768
|
+
/// This must be called after [`Self::reserve_symbol_index`].
|
769
|
+
pub fn reserve_symtab(&mut self) {
|
770
|
+
debug_assert_eq!(self.symtab_offset, 0);
|
771
|
+
if self.symtab_num == 0 {
|
772
|
+
return;
|
773
|
+
}
|
774
|
+
self.symtab_offset = self.reserve(
|
775
|
+
self.symtab_num as usize * self.class().sym_size(),
|
776
|
+
self.elf_align,
|
777
|
+
);
|
778
|
+
}
|
779
|
+
|
780
|
+
/// Write the null symbol.
|
781
|
+
///
|
782
|
+
/// This must be the first symbol that is written.
|
783
|
+
/// This function does nothing if no symbols were reserved.
|
784
|
+
pub fn write_null_symbol(&mut self) {
|
785
|
+
if self.symtab_num == 0 {
|
786
|
+
return;
|
787
|
+
}
|
788
|
+
util::write_align(self.buffer, self.elf_align);
|
789
|
+
debug_assert_eq!(self.symtab_offset, self.buffer.len());
|
790
|
+
if self.is_64 {
|
791
|
+
self.buffer.write(&elf::Sym64::<Endianness>::default());
|
792
|
+
} else {
|
793
|
+
self.buffer.write(&elf::Sym32::<Endianness>::default());
|
794
|
+
}
|
795
|
+
|
796
|
+
if self.need_symtab_shndx {
|
797
|
+
self.symtab_shndx_data.write_pod(&U32::new(self.endian, 0));
|
798
|
+
}
|
799
|
+
}
|
800
|
+
|
801
|
+
/// Write a symbol.
|
802
|
+
pub fn write_symbol(&mut self, sym: &Sym) {
|
803
|
+
let st_name = if let Some(name) = sym.name {
|
804
|
+
self.strtab.get_offset(name) as u32
|
805
|
+
} else {
|
806
|
+
0
|
807
|
+
};
|
808
|
+
let st_shndx = if let Some(section) = sym.section {
|
809
|
+
if section.0 >= elf::SHN_LORESERVE as u32 {
|
810
|
+
elf::SHN_XINDEX
|
811
|
+
} else {
|
812
|
+
section.0 as u16
|
813
|
+
}
|
814
|
+
} else {
|
815
|
+
sym.st_shndx
|
816
|
+
};
|
817
|
+
|
818
|
+
let endian = self.endian;
|
819
|
+
if self.is_64 {
|
820
|
+
let sym = elf::Sym64 {
|
821
|
+
st_name: U32::new(endian, st_name),
|
822
|
+
st_info: sym.st_info,
|
823
|
+
st_other: sym.st_other,
|
824
|
+
st_shndx: U16::new(endian, st_shndx),
|
825
|
+
st_value: U64::new(endian, sym.st_value),
|
826
|
+
st_size: U64::new(endian, sym.st_size),
|
827
|
+
};
|
828
|
+
self.buffer.write(&sym);
|
829
|
+
} else {
|
830
|
+
let sym = elf::Sym32 {
|
831
|
+
st_name: U32::new(endian, st_name),
|
832
|
+
st_info: sym.st_info,
|
833
|
+
st_other: sym.st_other,
|
834
|
+
st_shndx: U16::new(endian, st_shndx),
|
835
|
+
st_value: U32::new(endian, sym.st_value as u32),
|
836
|
+
st_size: U32::new(endian, sym.st_size as u32),
|
837
|
+
};
|
838
|
+
self.buffer.write(&sym);
|
839
|
+
}
|
840
|
+
|
841
|
+
if self.need_symtab_shndx {
|
842
|
+
let section_index = sym.section.unwrap_or(SectionIndex(0));
|
843
|
+
self.symtab_shndx_data
|
844
|
+
.write_pod(&U32::new(self.endian, section_index.0));
|
845
|
+
}
|
846
|
+
}
|
847
|
+
|
848
|
+
/// Reserve the section index for the symbol table.
|
849
|
+
///
|
850
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
851
|
+
pub fn reserve_symtab_section_index(&mut self) -> SectionIndex {
|
852
|
+
self.reserve_symtab_section_index_with_name(&b".symtab"[..])
|
853
|
+
}
|
854
|
+
|
855
|
+
/// Reserve the section index for the symbol table.
|
856
|
+
///
|
857
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
858
|
+
pub fn reserve_symtab_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
859
|
+
debug_assert_eq!(self.symtab_index, SectionIndex(0));
|
860
|
+
self.symtab_str_id = Some(self.add_section_name(name));
|
861
|
+
self.symtab_index = self.reserve_section_index();
|
862
|
+
self.symtab_index
|
863
|
+
}
|
864
|
+
|
865
|
+
/// Return the section index of the symbol table.
|
866
|
+
pub fn symtab_index(&mut self) -> SectionIndex {
|
867
|
+
self.symtab_index
|
868
|
+
}
|
869
|
+
|
870
|
+
/// Write the section header for the symbol table.
|
871
|
+
///
|
872
|
+
/// This function does nothing if the section index was not reserved.
|
873
|
+
pub fn write_symtab_section_header(&mut self, num_local: u32) {
|
874
|
+
if self.symtab_index == SectionIndex(0) {
|
875
|
+
return;
|
876
|
+
}
|
877
|
+
self.write_section_header(&SectionHeader {
|
878
|
+
name: self.symtab_str_id,
|
879
|
+
sh_type: elf::SHT_SYMTAB,
|
880
|
+
sh_flags: 0,
|
881
|
+
sh_addr: 0,
|
882
|
+
sh_offset: self.symtab_offset as u64,
|
883
|
+
sh_size: self.symtab_num as u64 * self.class().sym_size() as u64,
|
884
|
+
sh_link: self.strtab_index.0,
|
885
|
+
sh_info: num_local,
|
886
|
+
sh_addralign: self.elf_align as u64,
|
887
|
+
sh_entsize: self.class().sym_size() as u64,
|
888
|
+
});
|
889
|
+
}
|
890
|
+
|
891
|
+
/// Return true if `.symtab_shndx` is needed.
|
892
|
+
pub fn symtab_shndx_needed(&self) -> bool {
|
893
|
+
self.need_symtab_shndx
|
894
|
+
}
|
895
|
+
|
896
|
+
/// Reserve the range for the extended section indices for the symbol table.
|
897
|
+
///
|
898
|
+
/// This range is used for a section named `.symtab_shndx`.
|
899
|
+
/// This also reserves a section index.
|
900
|
+
///
|
901
|
+
/// This function does nothing if extended section indices are not needed.
|
902
|
+
/// This must be called after [`Self::reserve_symbol_index`].
|
903
|
+
pub fn reserve_symtab_shndx(&mut self) {
|
904
|
+
debug_assert_eq!(self.symtab_shndx_offset, 0);
|
905
|
+
if !self.need_symtab_shndx {
|
906
|
+
return;
|
907
|
+
}
|
908
|
+
self.symtab_shndx_offset = self.reserve(self.symtab_num as usize * 4, 4);
|
909
|
+
self.symtab_shndx_data.reserve(self.symtab_num as usize * 4);
|
910
|
+
}
|
911
|
+
|
912
|
+
/// Write the extended section indices for the symbol table.
|
913
|
+
///
|
914
|
+
/// This function does nothing if the section was not reserved.
|
915
|
+
pub fn write_symtab_shndx(&mut self) {
|
916
|
+
if self.symtab_shndx_offset == 0 {
|
917
|
+
return;
|
918
|
+
}
|
919
|
+
debug_assert_eq!(self.symtab_shndx_offset, self.buffer.len());
|
920
|
+
debug_assert_eq!(self.symtab_num as usize * 4, self.symtab_shndx_data.len());
|
921
|
+
self.buffer.write_bytes(&self.symtab_shndx_data);
|
922
|
+
}
|
923
|
+
|
924
|
+
/// Reserve the section index for the extended section indices symbol table.
|
925
|
+
///
|
926
|
+
/// You should check [`Self::symtab_shndx_needed`] before calling this
|
927
|
+
/// unless you have other means of knowing if this section is needed.
|
928
|
+
///
|
929
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
930
|
+
pub fn reserve_symtab_shndx_section_index(&mut self) -> SectionIndex {
|
931
|
+
self.reserve_symtab_shndx_section_index_with_name(&b".symtab_shndx"[..])
|
932
|
+
}
|
933
|
+
|
934
|
+
/// Reserve the section index for the extended section indices symbol table.
|
935
|
+
///
|
936
|
+
/// You should check [`Self::symtab_shndx_needed`] before calling this
|
937
|
+
/// unless you have other means of knowing if this section is needed.
|
938
|
+
///
|
939
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
940
|
+
pub fn reserve_symtab_shndx_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
941
|
+
debug_assert!(self.symtab_shndx_str_id.is_none());
|
942
|
+
self.symtab_shndx_str_id = Some(self.add_section_name(name));
|
943
|
+
self.reserve_section_index()
|
944
|
+
}
|
945
|
+
|
946
|
+
/// Write the section header for the extended section indices for the symbol table.
|
947
|
+
///
|
948
|
+
/// This function does nothing if the section index was not reserved.
|
949
|
+
pub fn write_symtab_shndx_section_header(&mut self) {
|
950
|
+
if self.symtab_shndx_str_id.is_none() {
|
951
|
+
return;
|
952
|
+
}
|
953
|
+
let sh_size = if self.symtab_shndx_offset == 0 {
|
954
|
+
0
|
955
|
+
} else {
|
956
|
+
(self.symtab_num * 4) as u64
|
957
|
+
};
|
958
|
+
self.write_section_header(&SectionHeader {
|
959
|
+
name: self.symtab_shndx_str_id,
|
960
|
+
sh_type: elf::SHT_SYMTAB_SHNDX,
|
961
|
+
sh_flags: 0,
|
962
|
+
sh_addr: 0,
|
963
|
+
sh_offset: self.symtab_shndx_offset as u64,
|
964
|
+
sh_size,
|
965
|
+
sh_link: self.symtab_index.0,
|
966
|
+
sh_info: 0,
|
967
|
+
sh_addralign: 4,
|
968
|
+
sh_entsize: 4,
|
969
|
+
});
|
970
|
+
}
|
971
|
+
|
972
|
+
/// Add a string to the dynamic string table.
|
973
|
+
///
|
974
|
+
/// This will be stored in the `.dynstr` section.
|
975
|
+
///
|
976
|
+
/// This must be called before [`Self::reserve_dynstr`].
|
977
|
+
pub fn add_dynamic_string(&mut self, name: &'a [u8]) -> StringId {
|
978
|
+
debug_assert_eq!(self.dynstr_offset, 0);
|
979
|
+
self.need_dynstr = true;
|
980
|
+
self.dynstr.add(name)
|
981
|
+
}
|
982
|
+
|
983
|
+
/// Get a string that was previously added to the dynamic string table.
|
984
|
+
///
|
985
|
+
/// Panics if the string was not added.
|
986
|
+
pub fn get_dynamic_string(&self, name: &'a [u8]) -> StringId {
|
987
|
+
self.dynstr.get_id(name)
|
988
|
+
}
|
989
|
+
|
990
|
+
/// Return true if `.dynstr` is needed.
|
991
|
+
pub fn dynstr_needed(&self) -> bool {
|
992
|
+
self.need_dynstr
|
993
|
+
}
|
994
|
+
|
995
|
+
/// Reserve the range for the dynamic string table.
|
996
|
+
///
|
997
|
+
/// This range is used for a section named `.dynstr`.
|
998
|
+
///
|
999
|
+
/// This function does nothing if no dynamic strings or symbols were defined.
|
1000
|
+
/// This must be called after [`Self::add_dynamic_string`].
|
1001
|
+
pub fn reserve_dynstr(&mut self) -> usize {
|
1002
|
+
debug_assert_eq!(self.dynstr_offset, 0);
|
1003
|
+
if !self.need_dynstr {
|
1004
|
+
return 0;
|
1005
|
+
}
|
1006
|
+
// Start with null string.
|
1007
|
+
self.dynstr_data = vec![0];
|
1008
|
+
self.dynstr.write(1, &mut self.dynstr_data);
|
1009
|
+
self.dynstr_offset = self.reserve(self.dynstr_data.len(), 1);
|
1010
|
+
self.dynstr_offset
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
/// Return the size of the dynamic string table.
|
1014
|
+
///
|
1015
|
+
/// This must be called after [`Self::reserve_dynstr`].
|
1016
|
+
pub fn dynstr_len(&mut self) -> usize {
|
1017
|
+
if !self.need_dynstr {
|
1018
|
+
return 0;
|
1019
|
+
}
|
1020
|
+
debug_assert_ne!(self.dynstr_offset, 0);
|
1021
|
+
self.dynstr_data.len()
|
1022
|
+
}
|
1023
|
+
|
1024
|
+
/// Write the dynamic string table.
|
1025
|
+
///
|
1026
|
+
/// This function does nothing if the section was not reserved.
|
1027
|
+
pub fn write_dynstr(&mut self) {
|
1028
|
+
if self.dynstr_offset == 0 {
|
1029
|
+
return;
|
1030
|
+
}
|
1031
|
+
debug_assert_eq!(self.dynstr_offset, self.buffer.len());
|
1032
|
+
self.buffer.write_bytes(&self.dynstr_data);
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
/// Reserve the section index for the dynamic string table.
|
1036
|
+
///
|
1037
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
1038
|
+
pub fn reserve_dynstr_section_index(&mut self) -> SectionIndex {
|
1039
|
+
self.reserve_dynstr_section_index_with_name(&b".dynstr"[..])
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
/// Reserve the section index for the dynamic string table.
|
1043
|
+
///
|
1044
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
1045
|
+
pub fn reserve_dynstr_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1046
|
+
debug_assert_eq!(self.dynstr_index, SectionIndex(0));
|
1047
|
+
self.dynstr_str_id = Some(self.add_section_name(name));
|
1048
|
+
self.dynstr_index = self.reserve_section_index();
|
1049
|
+
self.dynstr_index
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
/// Return the section index of the dynamic string table.
|
1053
|
+
pub fn dynstr_index(&mut self) -> SectionIndex {
|
1054
|
+
self.dynstr_index
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
/// Write the section header for the dynamic string table.
|
1058
|
+
///
|
1059
|
+
/// This function does nothing if the section index was not reserved.
|
1060
|
+
pub fn write_dynstr_section_header(&mut self, sh_addr: u64) {
|
1061
|
+
if self.dynstr_index == SectionIndex(0) {
|
1062
|
+
return;
|
1063
|
+
}
|
1064
|
+
self.write_section_header(&SectionHeader {
|
1065
|
+
name: self.dynstr_str_id,
|
1066
|
+
sh_type: elf::SHT_STRTAB,
|
1067
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1068
|
+
sh_addr,
|
1069
|
+
sh_offset: self.dynstr_offset as u64,
|
1070
|
+
sh_size: self.dynstr_data.len() as u64,
|
1071
|
+
sh_link: 0,
|
1072
|
+
sh_info: 0,
|
1073
|
+
sh_addralign: 1,
|
1074
|
+
sh_entsize: 0,
|
1075
|
+
});
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
/// Reserve the null dynamic symbol table entry.
|
1079
|
+
///
|
1080
|
+
/// This will be stored in the `.dynsym` section.
|
1081
|
+
///
|
1082
|
+
/// The null dynamic symbol table entry is usually automatically reserved,
|
1083
|
+
/// but this can be used to force an empty dynamic symbol table.
|
1084
|
+
///
|
1085
|
+
/// This must be called before [`Self::reserve_dynsym`].
|
1086
|
+
pub fn reserve_null_dynamic_symbol_index(&mut self) -> SymbolIndex {
|
1087
|
+
debug_assert_eq!(self.dynsym_offset, 0);
|
1088
|
+
debug_assert_eq!(self.dynsym_num, 0);
|
1089
|
+
self.dynsym_num = 1;
|
1090
|
+
// The symtab must link to a strtab.
|
1091
|
+
self.need_dynstr = true;
|
1092
|
+
SymbolIndex(0)
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
/// Reserve a dynamic symbol table entry.
|
1096
|
+
///
|
1097
|
+
/// This will be stored in the `.dynsym` section.
|
1098
|
+
///
|
1099
|
+
/// Automatically also reserves the null symbol if required.
|
1100
|
+
/// Callers may assume that the returned indices will be sequential
|
1101
|
+
/// starting at 1.
|
1102
|
+
///
|
1103
|
+
/// This must be called before [`Self::reserve_dynsym`].
|
1104
|
+
pub fn reserve_dynamic_symbol_index(&mut self) -> SymbolIndex {
|
1105
|
+
debug_assert_eq!(self.dynsym_offset, 0);
|
1106
|
+
if self.dynsym_num == 0 {
|
1107
|
+
self.dynsym_num = 1;
|
1108
|
+
// The symtab must link to a strtab.
|
1109
|
+
self.need_dynstr = true;
|
1110
|
+
}
|
1111
|
+
let index = self.dynsym_num;
|
1112
|
+
self.dynsym_num += 1;
|
1113
|
+
SymbolIndex(index)
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
/// Return the number of reserved dynamic symbols.
|
1117
|
+
///
|
1118
|
+
/// Includes the null symbol.
|
1119
|
+
pub fn dynamic_symbol_count(&mut self) -> u32 {
|
1120
|
+
self.dynsym_num
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
/// Reserve the range for the dynamic symbol table.
|
1124
|
+
///
|
1125
|
+
/// This range is used for a section named `.dynsym`.
|
1126
|
+
///
|
1127
|
+
/// This function does nothing if no dynamic symbols were reserved.
|
1128
|
+
/// This must be called after [`Self::reserve_dynamic_symbol_index`].
|
1129
|
+
pub fn reserve_dynsym(&mut self) -> usize {
|
1130
|
+
debug_assert_eq!(self.dynsym_offset, 0);
|
1131
|
+
if self.dynsym_num == 0 {
|
1132
|
+
return 0;
|
1133
|
+
}
|
1134
|
+
self.dynsym_offset = self.reserve(
|
1135
|
+
self.dynsym_num as usize * self.class().sym_size(),
|
1136
|
+
self.elf_align,
|
1137
|
+
);
|
1138
|
+
self.dynsym_offset
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
/// Write the null dynamic symbol.
|
1142
|
+
///
|
1143
|
+
/// This must be the first dynamic symbol that is written.
|
1144
|
+
/// This function does nothing if no dynamic symbols were reserved.
|
1145
|
+
pub fn write_null_dynamic_symbol(&mut self) {
|
1146
|
+
if self.dynsym_num == 0 {
|
1147
|
+
return;
|
1148
|
+
}
|
1149
|
+
util::write_align(self.buffer, self.elf_align);
|
1150
|
+
debug_assert_eq!(self.dynsym_offset, self.buffer.len());
|
1151
|
+
if self.is_64 {
|
1152
|
+
self.buffer.write(&elf::Sym64::<Endianness>::default());
|
1153
|
+
} else {
|
1154
|
+
self.buffer.write(&elf::Sym32::<Endianness>::default());
|
1155
|
+
}
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
/// Write a dynamic symbol.
|
1159
|
+
pub fn write_dynamic_symbol(&mut self, sym: &Sym) {
|
1160
|
+
let st_name = if let Some(name) = sym.name {
|
1161
|
+
self.dynstr.get_offset(name) as u32
|
1162
|
+
} else {
|
1163
|
+
0
|
1164
|
+
};
|
1165
|
+
|
1166
|
+
let st_shndx = if let Some(section) = sym.section {
|
1167
|
+
if section.0 >= elf::SHN_LORESERVE as u32 {
|
1168
|
+
// TODO: we don't actually write out .dynsym_shndx yet.
|
1169
|
+
// This is unlikely to be needed though.
|
1170
|
+
elf::SHN_XINDEX
|
1171
|
+
} else {
|
1172
|
+
section.0 as u16
|
1173
|
+
}
|
1174
|
+
} else {
|
1175
|
+
sym.st_shndx
|
1176
|
+
};
|
1177
|
+
|
1178
|
+
let endian = self.endian;
|
1179
|
+
if self.is_64 {
|
1180
|
+
let sym = elf::Sym64 {
|
1181
|
+
st_name: U32::new(endian, st_name),
|
1182
|
+
st_info: sym.st_info,
|
1183
|
+
st_other: sym.st_other,
|
1184
|
+
st_shndx: U16::new(endian, st_shndx),
|
1185
|
+
st_value: U64::new(endian, sym.st_value),
|
1186
|
+
st_size: U64::new(endian, sym.st_size),
|
1187
|
+
};
|
1188
|
+
self.buffer.write(&sym);
|
1189
|
+
} else {
|
1190
|
+
let sym = elf::Sym32 {
|
1191
|
+
st_name: U32::new(endian, st_name),
|
1192
|
+
st_info: sym.st_info,
|
1193
|
+
st_other: sym.st_other,
|
1194
|
+
st_shndx: U16::new(endian, st_shndx),
|
1195
|
+
st_value: U32::new(endian, sym.st_value as u32),
|
1196
|
+
st_size: U32::new(endian, sym.st_size as u32),
|
1197
|
+
};
|
1198
|
+
self.buffer.write(&sym);
|
1199
|
+
}
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
/// Reserve the section index for the dynamic symbol table.
|
1203
|
+
///
|
1204
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
1205
|
+
pub fn reserve_dynsym_section_index(&mut self) -> SectionIndex {
|
1206
|
+
self.reserve_dynsym_section_index_with_name(&b".dynsym"[..])
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
/// Reserve the section index for the dynamic symbol table.
|
1210
|
+
///
|
1211
|
+
/// This must be called before [`Self::reserve_section_headers`].
|
1212
|
+
pub fn reserve_dynsym_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1213
|
+
debug_assert_eq!(self.dynsym_index, SectionIndex(0));
|
1214
|
+
self.dynsym_str_id = Some(self.add_section_name(name));
|
1215
|
+
self.dynsym_index = self.reserve_section_index();
|
1216
|
+
self.dynsym_index
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
/// Return the section index of the dynamic symbol table.
|
1220
|
+
pub fn dynsym_index(&mut self) -> SectionIndex {
|
1221
|
+
self.dynsym_index
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
/// Write the section header for the dynamic symbol table.
|
1225
|
+
///
|
1226
|
+
/// This function does nothing if the section index was not reserved.
|
1227
|
+
pub fn write_dynsym_section_header(&mut self, sh_addr: u64, num_local: u32) {
|
1228
|
+
if self.dynsym_index == SectionIndex(0) {
|
1229
|
+
return;
|
1230
|
+
}
|
1231
|
+
self.write_section_header(&SectionHeader {
|
1232
|
+
name: self.dynsym_str_id,
|
1233
|
+
sh_type: elf::SHT_DYNSYM,
|
1234
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1235
|
+
sh_addr,
|
1236
|
+
sh_offset: self.dynsym_offset as u64,
|
1237
|
+
sh_size: self.dynsym_num as u64 * self.class().sym_size() as u64,
|
1238
|
+
sh_link: self.dynstr_index.0,
|
1239
|
+
sh_info: num_local,
|
1240
|
+
sh_addralign: self.elf_align as u64,
|
1241
|
+
sh_entsize: self.class().sym_size() as u64,
|
1242
|
+
});
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
/// Reserve the range for the `.dynamic` section.
|
1246
|
+
///
|
1247
|
+
/// This function does nothing if `dynamic_num` is zero.
|
1248
|
+
pub fn reserve_dynamic(&mut self, dynamic_num: usize) -> usize {
|
1249
|
+
debug_assert_eq!(self.dynamic_offset, 0);
|
1250
|
+
if dynamic_num == 0 {
|
1251
|
+
return 0;
|
1252
|
+
}
|
1253
|
+
self.dynamic_num = dynamic_num;
|
1254
|
+
self.dynamic_offset = self.reserve_dynamics(dynamic_num);
|
1255
|
+
self.dynamic_offset
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
/// Write alignment padding bytes prior to the `.dynamic` section.
|
1259
|
+
///
|
1260
|
+
/// This function does nothing if the section was not reserved.
|
1261
|
+
pub fn write_align_dynamic(&mut self) {
|
1262
|
+
if self.dynamic_offset == 0 {
|
1263
|
+
return;
|
1264
|
+
}
|
1265
|
+
util::write_align(self.buffer, self.elf_align);
|
1266
|
+
debug_assert_eq!(self.dynamic_offset, self.buffer.len());
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
/// Reserve a file range for the given number of dynamic entries.
|
1270
|
+
///
|
1271
|
+
/// Returns the offset of the range.
|
1272
|
+
pub fn reserve_dynamics(&mut self, dynamic_num: usize) -> usize {
|
1273
|
+
self.reserve(dynamic_num * self.class().dyn_size(), self.elf_align)
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
/// Write a dynamic string entry.
|
1277
|
+
pub fn write_dynamic_string(&mut self, tag: u32, id: StringId) {
|
1278
|
+
self.write_dynamic(tag, self.dynstr.get_offset(id) as u64);
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
/// Write a dynamic value entry.
|
1282
|
+
pub fn write_dynamic(&mut self, d_tag: u32, d_val: u64) {
|
1283
|
+
let endian = self.endian;
|
1284
|
+
if self.is_64 {
|
1285
|
+
let d = elf::Dyn64 {
|
1286
|
+
d_tag: U64::new(endian, d_tag.into()),
|
1287
|
+
d_val: U64::new(endian, d_val),
|
1288
|
+
};
|
1289
|
+
self.buffer.write(&d);
|
1290
|
+
} else {
|
1291
|
+
let d = elf::Dyn32 {
|
1292
|
+
d_tag: U32::new(endian, d_tag),
|
1293
|
+
d_val: U32::new(endian, d_val as u32),
|
1294
|
+
};
|
1295
|
+
self.buffer.write(&d);
|
1296
|
+
}
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
/// Reserve the section index for the dynamic table.
|
1300
|
+
pub fn reserve_dynamic_section_index(&mut self) -> SectionIndex {
|
1301
|
+
debug_assert!(self.dynamic_str_id.is_none());
|
1302
|
+
self.dynamic_str_id = Some(self.add_section_name(&b".dynamic"[..]));
|
1303
|
+
self.reserve_section_index()
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
/// Write the section header for the dynamic table.
|
1307
|
+
///
|
1308
|
+
/// This function does nothing if the section index was not reserved.
|
1309
|
+
pub fn write_dynamic_section_header(&mut self, sh_addr: u64) {
|
1310
|
+
if self.dynamic_str_id.is_none() {
|
1311
|
+
return;
|
1312
|
+
}
|
1313
|
+
self.write_section_header(&SectionHeader {
|
1314
|
+
name: self.dynamic_str_id,
|
1315
|
+
sh_type: elf::SHT_DYNAMIC,
|
1316
|
+
sh_flags: (elf::SHF_WRITE | elf::SHF_ALLOC).into(),
|
1317
|
+
sh_addr,
|
1318
|
+
sh_offset: self.dynamic_offset as u64,
|
1319
|
+
sh_size: (self.dynamic_num * self.class().dyn_size()) as u64,
|
1320
|
+
sh_link: self.dynstr_index.0,
|
1321
|
+
sh_info: 0,
|
1322
|
+
sh_addralign: self.elf_align as u64,
|
1323
|
+
sh_entsize: self.class().dyn_size() as u64,
|
1324
|
+
});
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
/// Reserve a file range for a SysV hash section.
|
1328
|
+
///
|
1329
|
+
/// `symbol_count` is the number of symbols in the hash,
|
1330
|
+
/// not the total number of symbols.
|
1331
|
+
pub fn reserve_hash(&mut self, bucket_count: u32, chain_count: u32) -> usize {
|
1332
|
+
self.hash_size = self.class().hash_size(bucket_count, chain_count);
|
1333
|
+
self.hash_offset = self.reserve(self.hash_size, self.elf_align);
|
1334
|
+
self.hash_offset
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
/// Write a SysV hash section.
|
1338
|
+
///
|
1339
|
+
/// `chain_count` is the number of symbols in the hash.
|
1340
|
+
/// The argument to `hash` will be in the range `0..chain_count`.
|
1341
|
+
pub fn write_hash<F>(&mut self, bucket_count: u32, chain_count: u32, hash: F)
|
1342
|
+
where
|
1343
|
+
F: Fn(u32) -> Option<u32>,
|
1344
|
+
{
|
1345
|
+
let mut buckets = vec![U32::new(self.endian, 0); bucket_count as usize];
|
1346
|
+
let mut chains = vec![U32::new(self.endian, 0); chain_count as usize];
|
1347
|
+
for i in 0..chain_count {
|
1348
|
+
if let Some(hash) = hash(i) {
|
1349
|
+
let bucket = hash % bucket_count;
|
1350
|
+
chains[i as usize] = buckets[bucket as usize];
|
1351
|
+
buckets[bucket as usize] = U32::new(self.endian, i);
|
1352
|
+
}
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
util::write_align(self.buffer, self.elf_align);
|
1356
|
+
debug_assert_eq!(self.hash_offset, self.buffer.len());
|
1357
|
+
self.buffer.write(&elf::HashHeader {
|
1358
|
+
bucket_count: U32::new(self.endian, bucket_count),
|
1359
|
+
chain_count: U32::new(self.endian, chain_count),
|
1360
|
+
});
|
1361
|
+
self.buffer.write_slice(&buckets);
|
1362
|
+
self.buffer.write_slice(&chains);
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
/// Reserve the section index for the SysV hash table.
|
1366
|
+
pub fn reserve_hash_section_index(&mut self) -> SectionIndex {
|
1367
|
+
self.reserve_hash_section_index_with_name(&b".hash"[..])
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
/// Reserve the section index for the SysV hash table.
|
1371
|
+
pub fn reserve_hash_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1372
|
+
debug_assert!(self.hash_str_id.is_none());
|
1373
|
+
self.hash_str_id = Some(self.add_section_name(name));
|
1374
|
+
self.reserve_section_index()
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
/// Write the section header for the SysV hash table.
|
1378
|
+
///
|
1379
|
+
/// This function does nothing if the section index was not reserved.
|
1380
|
+
pub fn write_hash_section_header(&mut self, sh_addr: u64) {
|
1381
|
+
if self.hash_str_id.is_none() {
|
1382
|
+
return;
|
1383
|
+
}
|
1384
|
+
self.write_section_header(&SectionHeader {
|
1385
|
+
name: self.hash_str_id,
|
1386
|
+
sh_type: elf::SHT_HASH,
|
1387
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1388
|
+
sh_addr,
|
1389
|
+
sh_offset: self.hash_offset as u64,
|
1390
|
+
sh_size: self.hash_size as u64,
|
1391
|
+
sh_link: self.dynsym_index.0,
|
1392
|
+
sh_info: 0,
|
1393
|
+
sh_addralign: self.elf_align as u64,
|
1394
|
+
sh_entsize: 4,
|
1395
|
+
});
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
/// Reserve a file range for a GNU hash section.
|
1399
|
+
///
|
1400
|
+
/// `symbol_count` is the number of symbols in the hash,
|
1401
|
+
/// not the total number of symbols.
|
1402
|
+
pub fn reserve_gnu_hash(
|
1403
|
+
&mut self,
|
1404
|
+
bloom_count: u32,
|
1405
|
+
bucket_count: u32,
|
1406
|
+
symbol_count: u32,
|
1407
|
+
) -> usize {
|
1408
|
+
self.gnu_hash_size = self
|
1409
|
+
.class()
|
1410
|
+
.gnu_hash_size(bloom_count, bucket_count, symbol_count);
|
1411
|
+
self.gnu_hash_offset = self.reserve(self.gnu_hash_size, self.elf_align);
|
1412
|
+
self.gnu_hash_offset
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
/// Write a GNU hash section.
|
1416
|
+
///
|
1417
|
+
/// `symbol_count` is the number of symbols in the hash.
|
1418
|
+
/// The argument to `hash` will be in the range `0..symbol_count`.
|
1419
|
+
///
|
1420
|
+
/// This requires that symbols are already sorted by bucket.
|
1421
|
+
pub fn write_gnu_hash<F>(
|
1422
|
+
&mut self,
|
1423
|
+
symbol_base: u32,
|
1424
|
+
bloom_shift: u32,
|
1425
|
+
bloom_count: u32,
|
1426
|
+
bucket_count: u32,
|
1427
|
+
symbol_count: u32,
|
1428
|
+
hash: F,
|
1429
|
+
) where
|
1430
|
+
F: Fn(u32) -> u32,
|
1431
|
+
{
|
1432
|
+
util::write_align(self.buffer, self.elf_align);
|
1433
|
+
debug_assert_eq!(self.gnu_hash_offset, self.buffer.len());
|
1434
|
+
self.buffer.write(&elf::GnuHashHeader {
|
1435
|
+
bucket_count: U32::new(self.endian, bucket_count),
|
1436
|
+
symbol_base: U32::new(self.endian, symbol_base),
|
1437
|
+
bloom_count: U32::new(self.endian, bloom_count),
|
1438
|
+
bloom_shift: U32::new(self.endian, bloom_shift),
|
1439
|
+
});
|
1440
|
+
|
1441
|
+
// Calculate and write bloom filter.
|
1442
|
+
if self.is_64 {
|
1443
|
+
let mut bloom_filters = vec![0; bloom_count as usize];
|
1444
|
+
for i in 0..symbol_count {
|
1445
|
+
let h = hash(i);
|
1446
|
+
bloom_filters[((h / 64) & (bloom_count - 1)) as usize] |=
|
1447
|
+
1 << (h % 64) | 1 << ((h >> bloom_shift) % 64);
|
1448
|
+
}
|
1449
|
+
for bloom_filter in bloom_filters {
|
1450
|
+
self.buffer.write(&U64::new(self.endian, bloom_filter));
|
1451
|
+
}
|
1452
|
+
} else {
|
1453
|
+
let mut bloom_filters = vec![0; bloom_count as usize];
|
1454
|
+
for i in 0..symbol_count {
|
1455
|
+
let h = hash(i);
|
1456
|
+
bloom_filters[((h / 32) & (bloom_count - 1)) as usize] |=
|
1457
|
+
1 << (h % 32) | 1 << ((h >> bloom_shift) % 32);
|
1458
|
+
}
|
1459
|
+
for bloom_filter in bloom_filters {
|
1460
|
+
self.buffer.write(&U32::new(self.endian, bloom_filter));
|
1461
|
+
}
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
// Write buckets.
|
1465
|
+
//
|
1466
|
+
// This requires that symbols are already sorted by bucket.
|
1467
|
+
let mut bucket = 0;
|
1468
|
+
for i in 0..symbol_count {
|
1469
|
+
let symbol_bucket = hash(i) % bucket_count;
|
1470
|
+
while bucket < symbol_bucket {
|
1471
|
+
self.buffer.write(&U32::new(self.endian, 0));
|
1472
|
+
bucket += 1;
|
1473
|
+
}
|
1474
|
+
if bucket == symbol_bucket {
|
1475
|
+
self.buffer.write(&U32::new(self.endian, symbol_base + i));
|
1476
|
+
bucket += 1;
|
1477
|
+
}
|
1478
|
+
}
|
1479
|
+
while bucket < bucket_count {
|
1480
|
+
self.buffer.write(&U32::new(self.endian, 0));
|
1481
|
+
bucket += 1;
|
1482
|
+
}
|
1483
|
+
|
1484
|
+
// Write hash values.
|
1485
|
+
for i in 0..symbol_count {
|
1486
|
+
let mut h = hash(i);
|
1487
|
+
if i == symbol_count - 1 || h % bucket_count != hash(i + 1) % bucket_count {
|
1488
|
+
h |= 1;
|
1489
|
+
} else {
|
1490
|
+
h &= !1;
|
1491
|
+
}
|
1492
|
+
self.buffer.write(&U32::new(self.endian, h));
|
1493
|
+
}
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
/// Reserve the section index for the GNU hash table.
|
1497
|
+
pub fn reserve_gnu_hash_section_index(&mut self) -> SectionIndex {
|
1498
|
+
self.reserve_gnu_hash_section_index_with_name(&b".gnu.hash"[..])
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
/// Reserve the section index for the GNU hash table.
|
1502
|
+
pub fn reserve_gnu_hash_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1503
|
+
debug_assert!(self.gnu_hash_str_id.is_none());
|
1504
|
+
self.gnu_hash_str_id = Some(self.add_section_name(name));
|
1505
|
+
self.reserve_section_index()
|
1506
|
+
}
|
1507
|
+
|
1508
|
+
/// Write the section header for the GNU hash table.
|
1509
|
+
///
|
1510
|
+
/// This function does nothing if the section index was not reserved.
|
1511
|
+
pub fn write_gnu_hash_section_header(&mut self, sh_addr: u64) {
|
1512
|
+
if self.gnu_hash_str_id.is_none() {
|
1513
|
+
return;
|
1514
|
+
}
|
1515
|
+
self.write_section_header(&SectionHeader {
|
1516
|
+
name: self.gnu_hash_str_id,
|
1517
|
+
sh_type: elf::SHT_GNU_HASH,
|
1518
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1519
|
+
sh_addr,
|
1520
|
+
sh_offset: self.gnu_hash_offset as u64,
|
1521
|
+
sh_size: self.gnu_hash_size as u64,
|
1522
|
+
sh_link: self.dynsym_index.0,
|
1523
|
+
sh_info: 0,
|
1524
|
+
sh_addralign: self.elf_align as u64,
|
1525
|
+
sh_entsize: 0,
|
1526
|
+
});
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
/// Reserve the range for the `.gnu.version` section.
|
1530
|
+
///
|
1531
|
+
/// This function does nothing if no dynamic symbols were reserved.
|
1532
|
+
pub fn reserve_gnu_versym(&mut self) -> usize {
|
1533
|
+
debug_assert_eq!(self.gnu_versym_offset, 0);
|
1534
|
+
if self.dynsym_num == 0 {
|
1535
|
+
return 0;
|
1536
|
+
}
|
1537
|
+
self.gnu_versym_offset = self.reserve(self.dynsym_num as usize * 2, 2);
|
1538
|
+
self.gnu_versym_offset
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
/// Write the null symbol version entry.
|
1542
|
+
///
|
1543
|
+
/// This must be the first symbol version that is written.
|
1544
|
+
/// This function does nothing if no dynamic symbols were reserved.
|
1545
|
+
pub fn write_null_gnu_versym(&mut self) {
|
1546
|
+
if self.dynsym_num == 0 {
|
1547
|
+
return;
|
1548
|
+
}
|
1549
|
+
util::write_align(self.buffer, 2);
|
1550
|
+
debug_assert_eq!(self.gnu_versym_offset, self.buffer.len());
|
1551
|
+
self.write_gnu_versym(0);
|
1552
|
+
}
|
1553
|
+
|
1554
|
+
/// Write a symbol version entry.
|
1555
|
+
pub fn write_gnu_versym(&mut self, versym: u16) {
|
1556
|
+
self.buffer.write(&U16::new(self.endian, versym));
|
1557
|
+
}
|
1558
|
+
|
1559
|
+
/// Reserve the section index for the `.gnu.version` section.
|
1560
|
+
pub fn reserve_gnu_versym_section_index(&mut self) -> SectionIndex {
|
1561
|
+
self.reserve_gnu_versym_section_index_with_name(&b".gnu.version"[..])
|
1562
|
+
}
|
1563
|
+
|
1564
|
+
/// Reserve the section index for the `.gnu.version` section.
|
1565
|
+
pub fn reserve_gnu_versym_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1566
|
+
debug_assert!(self.gnu_versym_str_id.is_none());
|
1567
|
+
self.gnu_versym_str_id = Some(self.add_section_name(name));
|
1568
|
+
self.reserve_section_index()
|
1569
|
+
}
|
1570
|
+
|
1571
|
+
/// Write the section header for the `.gnu.version` section.
|
1572
|
+
///
|
1573
|
+
/// This function does nothing if the section index was not reserved.
|
1574
|
+
pub fn write_gnu_versym_section_header(&mut self, sh_addr: u64) {
|
1575
|
+
if self.gnu_versym_str_id.is_none() {
|
1576
|
+
return;
|
1577
|
+
}
|
1578
|
+
self.write_section_header(&SectionHeader {
|
1579
|
+
name: self.gnu_versym_str_id,
|
1580
|
+
sh_type: elf::SHT_GNU_VERSYM,
|
1581
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1582
|
+
sh_addr,
|
1583
|
+
sh_offset: self.gnu_versym_offset as u64,
|
1584
|
+
sh_size: self.class().gnu_versym_size(self.dynsym_num as usize) as u64,
|
1585
|
+
sh_link: self.dynsym_index.0,
|
1586
|
+
sh_info: 0,
|
1587
|
+
sh_addralign: 2,
|
1588
|
+
sh_entsize: 2,
|
1589
|
+
});
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
/// Reserve the range for the `.gnu.version_d` section.
|
1593
|
+
pub fn reserve_gnu_verdef(&mut self, verdef_count: usize, verdaux_count: usize) -> usize {
|
1594
|
+
debug_assert_eq!(self.gnu_verdef_offset, 0);
|
1595
|
+
if verdef_count == 0 {
|
1596
|
+
return 0;
|
1597
|
+
}
|
1598
|
+
self.gnu_verdef_size = self.class().gnu_verdef_size(verdef_count, verdaux_count);
|
1599
|
+
self.gnu_verdef_offset = self.reserve(self.gnu_verdef_size, self.elf_align);
|
1600
|
+
self.gnu_verdef_count = verdef_count as u16;
|
1601
|
+
self.gnu_verdef_remaining = self.gnu_verdef_count;
|
1602
|
+
self.gnu_verdef_offset
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
/// Write alignment padding bytes prior to a `.gnu.version_d` section.
|
1606
|
+
pub fn write_align_gnu_verdef(&mut self) {
|
1607
|
+
if self.gnu_verdef_offset == 0 {
|
1608
|
+
return;
|
1609
|
+
}
|
1610
|
+
util::write_align(self.buffer, self.elf_align);
|
1611
|
+
debug_assert_eq!(self.gnu_verdef_offset, self.buffer.len());
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
/// Write a version definition entry.
|
1615
|
+
pub fn write_gnu_verdef(&mut self, verdef: &Verdef) {
|
1616
|
+
debug_assert_ne!(self.gnu_verdef_remaining, 0);
|
1617
|
+
self.gnu_verdef_remaining -= 1;
|
1618
|
+
let vd_next = if self.gnu_verdef_remaining == 0 {
|
1619
|
+
0
|
1620
|
+
} else {
|
1621
|
+
mem::size_of::<elf::Verdef<Endianness>>() as u32
|
1622
|
+
+ verdef.aux_count as u32 * mem::size_of::<elf::Verdaux<Endianness>>() as u32
|
1623
|
+
};
|
1624
|
+
|
1625
|
+
self.gnu_verdaux_remaining = verdef.aux_count;
|
1626
|
+
let vd_aux = if verdef.aux_count == 0 {
|
1627
|
+
0
|
1628
|
+
} else {
|
1629
|
+
mem::size_of::<elf::Verdef<Endianness>>() as u32
|
1630
|
+
};
|
1631
|
+
|
1632
|
+
self.buffer.write(&elf::Verdef {
|
1633
|
+
vd_version: U16::new(self.endian, verdef.version),
|
1634
|
+
vd_flags: U16::new(self.endian, verdef.flags),
|
1635
|
+
vd_ndx: U16::new(self.endian, verdef.index),
|
1636
|
+
vd_cnt: U16::new(self.endian, verdef.aux_count),
|
1637
|
+
vd_hash: U32::new(self.endian, elf::hash(self.dynstr.get_string(verdef.name))),
|
1638
|
+
vd_aux: U32::new(self.endian, vd_aux),
|
1639
|
+
vd_next: U32::new(self.endian, vd_next),
|
1640
|
+
});
|
1641
|
+
self.write_gnu_verdaux(verdef.name);
|
1642
|
+
}
|
1643
|
+
|
1644
|
+
/// Write a version definition auxiliary entry.
|
1645
|
+
pub fn write_gnu_verdaux(&mut self, name: StringId) {
|
1646
|
+
debug_assert_ne!(self.gnu_verdaux_remaining, 0);
|
1647
|
+
self.gnu_verdaux_remaining -= 1;
|
1648
|
+
let vda_next = if self.gnu_verdaux_remaining == 0 {
|
1649
|
+
0
|
1650
|
+
} else {
|
1651
|
+
mem::size_of::<elf::Verdaux<Endianness>>() as u32
|
1652
|
+
};
|
1653
|
+
self.buffer.write(&elf::Verdaux {
|
1654
|
+
vda_name: U32::new(self.endian, self.dynstr.get_offset(name) as u32),
|
1655
|
+
vda_next: U32::new(self.endian, vda_next),
|
1656
|
+
});
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
/// Reserve the section index for the `.gnu.version_d` section.
|
1660
|
+
pub fn reserve_gnu_verdef_section_index(&mut self) -> SectionIndex {
|
1661
|
+
self.reserve_gnu_verdef_section_index_with_name(&b".gnu.version_d"[..])
|
1662
|
+
}
|
1663
|
+
|
1664
|
+
/// Reserve the section index for the `.gnu.version_d` section.
|
1665
|
+
pub fn reserve_gnu_verdef_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1666
|
+
debug_assert!(self.gnu_verdef_str_id.is_none());
|
1667
|
+
self.gnu_verdef_str_id = Some(self.add_section_name(name));
|
1668
|
+
self.reserve_section_index()
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
/// Write the section header for the `.gnu.version_d` section.
|
1672
|
+
///
|
1673
|
+
/// This function does nothing if the section index was not reserved.
|
1674
|
+
pub fn write_gnu_verdef_section_header(&mut self, sh_addr: u64) {
|
1675
|
+
if self.gnu_verdef_str_id.is_none() {
|
1676
|
+
return;
|
1677
|
+
}
|
1678
|
+
self.write_section_header(&SectionHeader {
|
1679
|
+
name: self.gnu_verdef_str_id,
|
1680
|
+
sh_type: elf::SHT_GNU_VERDEF,
|
1681
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1682
|
+
sh_addr,
|
1683
|
+
sh_offset: self.gnu_verdef_offset as u64,
|
1684
|
+
sh_size: self.gnu_verdef_size as u64,
|
1685
|
+
sh_link: self.dynstr_index.0,
|
1686
|
+
sh_info: self.gnu_verdef_count.into(),
|
1687
|
+
sh_addralign: self.elf_align as u64,
|
1688
|
+
sh_entsize: 0,
|
1689
|
+
});
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
/// Reserve the range for the `.gnu.version_r` section.
|
1693
|
+
pub fn reserve_gnu_verneed(&mut self, verneed_count: usize, vernaux_count: usize) -> usize {
|
1694
|
+
debug_assert_eq!(self.gnu_verneed_offset, 0);
|
1695
|
+
if verneed_count == 0 {
|
1696
|
+
return 0;
|
1697
|
+
}
|
1698
|
+
self.gnu_verneed_size = self.class().gnu_verneed_size(verneed_count, vernaux_count);
|
1699
|
+
self.gnu_verneed_offset = self.reserve(self.gnu_verneed_size, self.elf_align);
|
1700
|
+
self.gnu_verneed_count = verneed_count as u16;
|
1701
|
+
self.gnu_verneed_remaining = self.gnu_verneed_count;
|
1702
|
+
self.gnu_verneed_offset
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
/// Write alignment padding bytes prior to a `.gnu.version_r` section.
|
1706
|
+
pub fn write_align_gnu_verneed(&mut self) {
|
1707
|
+
if self.gnu_verneed_offset == 0 {
|
1708
|
+
return;
|
1709
|
+
}
|
1710
|
+
util::write_align(self.buffer, self.elf_align);
|
1711
|
+
debug_assert_eq!(self.gnu_verneed_offset, self.buffer.len());
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
/// Write a version need entry.
|
1715
|
+
pub fn write_gnu_verneed(&mut self, verneed: &Verneed) {
|
1716
|
+
debug_assert_ne!(self.gnu_verneed_remaining, 0);
|
1717
|
+
self.gnu_verneed_remaining -= 1;
|
1718
|
+
let vn_next = if self.gnu_verneed_remaining == 0 {
|
1719
|
+
0
|
1720
|
+
} else {
|
1721
|
+
mem::size_of::<elf::Verneed<Endianness>>() as u32
|
1722
|
+
+ verneed.aux_count as u32 * mem::size_of::<elf::Vernaux<Endianness>>() as u32
|
1723
|
+
};
|
1724
|
+
|
1725
|
+
self.gnu_vernaux_remaining = verneed.aux_count;
|
1726
|
+
let vn_aux = if verneed.aux_count == 0 {
|
1727
|
+
0
|
1728
|
+
} else {
|
1729
|
+
mem::size_of::<elf::Verneed<Endianness>>() as u32
|
1730
|
+
};
|
1731
|
+
|
1732
|
+
self.buffer.write(&elf::Verneed {
|
1733
|
+
vn_version: U16::new(self.endian, verneed.version),
|
1734
|
+
vn_cnt: U16::new(self.endian, verneed.aux_count),
|
1735
|
+
vn_file: U32::new(self.endian, self.dynstr.get_offset(verneed.file) as u32),
|
1736
|
+
vn_aux: U32::new(self.endian, vn_aux),
|
1737
|
+
vn_next: U32::new(self.endian, vn_next),
|
1738
|
+
});
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
/// Write a version need auxiliary entry.
|
1742
|
+
pub fn write_gnu_vernaux(&mut self, vernaux: &Vernaux) {
|
1743
|
+
debug_assert_ne!(self.gnu_vernaux_remaining, 0);
|
1744
|
+
self.gnu_vernaux_remaining -= 1;
|
1745
|
+
let vna_next = if self.gnu_vernaux_remaining == 0 {
|
1746
|
+
0
|
1747
|
+
} else {
|
1748
|
+
mem::size_of::<elf::Vernaux<Endianness>>() as u32
|
1749
|
+
};
|
1750
|
+
self.buffer.write(&elf::Vernaux {
|
1751
|
+
vna_hash: U32::new(self.endian, elf::hash(self.dynstr.get_string(vernaux.name))),
|
1752
|
+
vna_flags: U16::new(self.endian, vernaux.flags),
|
1753
|
+
vna_other: U16::new(self.endian, vernaux.index),
|
1754
|
+
vna_name: U32::new(self.endian, self.dynstr.get_offset(vernaux.name) as u32),
|
1755
|
+
vna_next: U32::new(self.endian, vna_next),
|
1756
|
+
});
|
1757
|
+
}
|
1758
|
+
|
1759
|
+
/// Reserve the section index for the `.gnu.version_r` section.
|
1760
|
+
pub fn reserve_gnu_verneed_section_index(&mut self) -> SectionIndex {
|
1761
|
+
self.reserve_gnu_verneed_section_index_with_name(&b".gnu.version_r"[..])
|
1762
|
+
}
|
1763
|
+
|
1764
|
+
/// Reserve the section index for the `.gnu.version_r` section.
|
1765
|
+
pub fn reserve_gnu_verneed_section_index_with_name(&mut self, name: &'a [u8]) -> SectionIndex {
|
1766
|
+
debug_assert!(self.gnu_verneed_str_id.is_none());
|
1767
|
+
self.gnu_verneed_str_id = Some(self.add_section_name(name));
|
1768
|
+
self.reserve_section_index()
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
/// Write the section header for the `.gnu.version_r` section.
|
1772
|
+
///
|
1773
|
+
/// This function does nothing if the section index was not reserved.
|
1774
|
+
pub fn write_gnu_verneed_section_header(&mut self, sh_addr: u64) {
|
1775
|
+
if self.gnu_verneed_str_id.is_none() {
|
1776
|
+
return;
|
1777
|
+
}
|
1778
|
+
self.write_section_header(&SectionHeader {
|
1779
|
+
name: self.gnu_verneed_str_id,
|
1780
|
+
sh_type: elf::SHT_GNU_VERNEED,
|
1781
|
+
sh_flags: elf::SHF_ALLOC.into(),
|
1782
|
+
sh_addr,
|
1783
|
+
sh_offset: self.gnu_verneed_offset as u64,
|
1784
|
+
sh_size: self.gnu_verneed_size as u64,
|
1785
|
+
sh_link: self.dynstr_index.0,
|
1786
|
+
sh_info: self.gnu_verneed_count.into(),
|
1787
|
+
sh_addralign: self.elf_align as u64,
|
1788
|
+
sh_entsize: 0,
|
1789
|
+
});
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
/// Reserve the section index for the `.gnu.attributes` section.
|
1793
|
+
pub fn reserve_gnu_attributes_section_index(&mut self) -> SectionIndex {
|
1794
|
+
self.reserve_gnu_attributes_section_index_with_name(&b".gnu.attributes"[..])
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
/// Reserve the section index for the `.gnu.attributes` section.
|
1798
|
+
pub fn reserve_gnu_attributes_section_index_with_name(
|
1799
|
+
&mut self,
|
1800
|
+
name: &'a [u8],
|
1801
|
+
) -> SectionIndex {
|
1802
|
+
debug_assert!(self.gnu_attributes_str_id.is_none());
|
1803
|
+
self.gnu_attributes_str_id = Some(self.add_section_name(name));
|
1804
|
+
self.reserve_section_index()
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
/// Reserve the range for the `.gnu.attributes` section.
|
1808
|
+
pub fn reserve_gnu_attributes(&mut self, gnu_attributes_size: usize) -> usize {
|
1809
|
+
debug_assert_eq!(self.gnu_attributes_offset, 0);
|
1810
|
+
if gnu_attributes_size == 0 {
|
1811
|
+
return 0;
|
1812
|
+
}
|
1813
|
+
self.gnu_attributes_size = gnu_attributes_size;
|
1814
|
+
self.gnu_attributes_offset = self.reserve(self.gnu_attributes_size, self.elf_align);
|
1815
|
+
self.gnu_attributes_offset
|
1816
|
+
}
|
1817
|
+
|
1818
|
+
/// Write the section header for the `.gnu.attributes` section.
|
1819
|
+
///
|
1820
|
+
/// This function does nothing if the section index was not reserved.
|
1821
|
+
pub fn write_gnu_attributes_section_header(&mut self) {
|
1822
|
+
if self.gnu_attributes_str_id.is_none() {
|
1823
|
+
return;
|
1824
|
+
}
|
1825
|
+
self.write_section_header(&SectionHeader {
|
1826
|
+
name: self.gnu_attributes_str_id,
|
1827
|
+
sh_type: elf::SHT_GNU_ATTRIBUTES,
|
1828
|
+
sh_flags: 0,
|
1829
|
+
sh_addr: 0,
|
1830
|
+
sh_offset: self.gnu_attributes_offset as u64,
|
1831
|
+
sh_size: self.gnu_attributes_size as u64,
|
1832
|
+
sh_link: self.dynstr_index.0,
|
1833
|
+
sh_info: 0, // TODO
|
1834
|
+
sh_addralign: self.elf_align as u64,
|
1835
|
+
sh_entsize: 0,
|
1836
|
+
});
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
/// Write the data for the `.gnu.attributes` section.
|
1840
|
+
pub fn write_gnu_attributes(&mut self, data: &[u8]) {
|
1841
|
+
if self.gnu_attributes_offset == 0 {
|
1842
|
+
return;
|
1843
|
+
}
|
1844
|
+
util::write_align(self.buffer, self.elf_align);
|
1845
|
+
debug_assert_eq!(self.gnu_attributes_offset, self.buffer.len());
|
1846
|
+
self.buffer.write_bytes(data);
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
/// Reserve a file range for the given number of relocations.
|
1850
|
+
///
|
1851
|
+
/// Returns the offset of the range.
|
1852
|
+
pub fn reserve_relocations(&mut self, count: usize, is_rela: bool) -> usize {
|
1853
|
+
self.reserve(count * self.class().rel_size(is_rela), self.elf_align)
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
/// Write alignment padding bytes prior to a relocation section.
|
1857
|
+
pub fn write_align_relocation(&mut self) {
|
1858
|
+
util::write_align(self.buffer, self.elf_align);
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
/// Write a relocation.
|
1862
|
+
pub fn write_relocation(&mut self, is_rela: bool, rel: &Rel) {
|
1863
|
+
let endian = self.endian;
|
1864
|
+
if self.is_64 {
|
1865
|
+
if is_rela {
|
1866
|
+
let rel = elf::Rela64 {
|
1867
|
+
r_offset: U64::new(endian, rel.r_offset),
|
1868
|
+
r_info: elf::Rela64::r_info(endian, self.is_mips64el, rel.r_sym, rel.r_type),
|
1869
|
+
r_addend: I64::new(endian, rel.r_addend),
|
1870
|
+
};
|
1871
|
+
self.buffer.write(&rel);
|
1872
|
+
} else {
|
1873
|
+
let rel = elf::Rel64 {
|
1874
|
+
r_offset: U64::new(endian, rel.r_offset),
|
1875
|
+
r_info: elf::Rel64::r_info(endian, rel.r_sym, rel.r_type),
|
1876
|
+
};
|
1877
|
+
self.buffer.write(&rel);
|
1878
|
+
}
|
1879
|
+
} else {
|
1880
|
+
if is_rela {
|
1881
|
+
let rel = elf::Rela32 {
|
1882
|
+
r_offset: U32::new(endian, rel.r_offset as u32),
|
1883
|
+
r_info: elf::Rel32::r_info(endian, rel.r_sym, rel.r_type as u8),
|
1884
|
+
r_addend: I32::new(endian, rel.r_addend as i32),
|
1885
|
+
};
|
1886
|
+
self.buffer.write(&rel);
|
1887
|
+
} else {
|
1888
|
+
let rel = elf::Rel32 {
|
1889
|
+
r_offset: U32::new(endian, rel.r_offset as u32),
|
1890
|
+
r_info: elf::Rel32::r_info(endian, rel.r_sym, rel.r_type as u8),
|
1891
|
+
};
|
1892
|
+
self.buffer.write(&rel);
|
1893
|
+
}
|
1894
|
+
}
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
/// Write the section header for a relocation section.
|
1898
|
+
///
|
1899
|
+
/// `section` is the index of the section the relocations apply to,
|
1900
|
+
/// or 0 if none.
|
1901
|
+
///
|
1902
|
+
/// `symtab` is the index of the symbol table the relocations refer to,
|
1903
|
+
/// or 0 if none.
|
1904
|
+
///
|
1905
|
+
/// `offset` is the file offset of the relocations.
|
1906
|
+
pub fn write_relocation_section_header(
|
1907
|
+
&mut self,
|
1908
|
+
name: StringId,
|
1909
|
+
section: SectionIndex,
|
1910
|
+
symtab: SectionIndex,
|
1911
|
+
offset: usize,
|
1912
|
+
count: usize,
|
1913
|
+
is_rela: bool,
|
1914
|
+
) {
|
1915
|
+
self.write_section_header(&SectionHeader {
|
1916
|
+
name: Some(name),
|
1917
|
+
sh_type: if is_rela { elf::SHT_RELA } else { elf::SHT_REL },
|
1918
|
+
sh_flags: elf::SHF_INFO_LINK.into(),
|
1919
|
+
sh_addr: 0,
|
1920
|
+
sh_offset: offset as u64,
|
1921
|
+
sh_size: (count * self.class().rel_size(is_rela)) as u64,
|
1922
|
+
sh_link: symtab.0,
|
1923
|
+
sh_info: section.0,
|
1924
|
+
sh_addralign: self.elf_align as u64,
|
1925
|
+
sh_entsize: self.class().rel_size(is_rela) as u64,
|
1926
|
+
});
|
1927
|
+
}
|
1928
|
+
|
1929
|
+
/// Reserve a file range for a COMDAT section.
|
1930
|
+
///
|
1931
|
+
/// `count` is the number of sections in the COMDAT group.
|
1932
|
+
///
|
1933
|
+
/// Returns the offset of the range.
|
1934
|
+
pub fn reserve_comdat(&mut self, count: usize) -> usize {
|
1935
|
+
self.reserve((count + 1) * 4, 4)
|
1936
|
+
}
|
1937
|
+
|
1938
|
+
/// Write `GRP_COMDAT` at the start of the COMDAT section.
|
1939
|
+
pub fn write_comdat_header(&mut self) {
|
1940
|
+
util::write_align(self.buffer, 4);
|
1941
|
+
self.buffer.write(&U32::new(self.endian, elf::GRP_COMDAT));
|
1942
|
+
}
|
1943
|
+
|
1944
|
+
/// Write an entry in a COMDAT section.
|
1945
|
+
pub fn write_comdat_entry(&mut self, entry: SectionIndex) {
|
1946
|
+
self.buffer.write(&U32::new(self.endian, entry.0));
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
/// Write the section header for a COMDAT section.
|
1950
|
+
pub fn write_comdat_section_header(
|
1951
|
+
&mut self,
|
1952
|
+
name: StringId,
|
1953
|
+
symtab: SectionIndex,
|
1954
|
+
symbol: SymbolIndex,
|
1955
|
+
offset: usize,
|
1956
|
+
count: usize,
|
1957
|
+
) {
|
1958
|
+
self.write_section_header(&SectionHeader {
|
1959
|
+
name: Some(name),
|
1960
|
+
sh_type: elf::SHT_GROUP,
|
1961
|
+
sh_flags: 0,
|
1962
|
+
sh_addr: 0,
|
1963
|
+
sh_offset: offset as u64,
|
1964
|
+
sh_size: ((count + 1) * 4) as u64,
|
1965
|
+
sh_link: symtab.0,
|
1966
|
+
sh_info: symbol.0,
|
1967
|
+
sh_addralign: 4,
|
1968
|
+
sh_entsize: 4,
|
1969
|
+
});
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
/// Return a helper for writing an attributes section.
|
1973
|
+
pub fn attributes_writer(&self) -> AttributesWriter {
|
1974
|
+
AttributesWriter::new(self.endian)
|
1975
|
+
}
|
1976
|
+
}
|
1977
|
+
|
1978
|
+
/// A helper for writing an attributes section.
|
1979
|
+
///
|
1980
|
+
/// Attributes have a variable length encoding, so it is awkward to write them in a
|
1981
|
+
/// single pass. Instead, we build the entire attributes section data in memory, using
|
1982
|
+
/// placeholders for unknown lengths that are filled in later.
|
1983
|
+
#[allow(missing_debug_implementations)]
|
1984
|
+
pub struct AttributesWriter {
|
1985
|
+
endian: Endianness,
|
1986
|
+
data: Vec<u8>,
|
1987
|
+
subsection_offset: usize,
|
1988
|
+
subsubsection_offset: usize,
|
1989
|
+
}
|
1990
|
+
|
1991
|
+
impl AttributesWriter {
|
1992
|
+
/// Create a new `AttributesWriter` for the given endianness.
|
1993
|
+
pub fn new(endian: Endianness) -> Self {
|
1994
|
+
AttributesWriter {
|
1995
|
+
endian,
|
1996
|
+
data: vec![0x41],
|
1997
|
+
subsection_offset: 0,
|
1998
|
+
subsubsection_offset: 0,
|
1999
|
+
}
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
/// Start a new subsection with the given vendor name.
|
2003
|
+
pub fn start_subsection(&mut self, vendor: &[u8]) {
|
2004
|
+
debug_assert_eq!(self.subsection_offset, 0);
|
2005
|
+
debug_assert_eq!(self.subsubsection_offset, 0);
|
2006
|
+
self.subsection_offset = self.data.len();
|
2007
|
+
self.data.extend_from_slice(&[0; 4]);
|
2008
|
+
self.data.extend_from_slice(vendor);
|
2009
|
+
self.data.push(0);
|
2010
|
+
}
|
2011
|
+
|
2012
|
+
/// End the subsection.
|
2013
|
+
///
|
2014
|
+
/// The subsection length is automatically calculated and written.
|
2015
|
+
pub fn end_subsection(&mut self) {
|
2016
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2017
|
+
debug_assert_eq!(self.subsubsection_offset, 0);
|
2018
|
+
let length = self.data.len() - self.subsection_offset;
|
2019
|
+
self.data[self.subsection_offset..][..4]
|
2020
|
+
.copy_from_slice(pod::bytes_of(&U32::new(self.endian, length as u32)));
|
2021
|
+
self.subsection_offset = 0;
|
2022
|
+
}
|
2023
|
+
|
2024
|
+
/// Start a new sub-subsection with the given tag.
|
2025
|
+
pub fn start_subsubsection(&mut self, tag: u8) {
|
2026
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2027
|
+
debug_assert_eq!(self.subsubsection_offset, 0);
|
2028
|
+
self.subsubsection_offset = self.data.len();
|
2029
|
+
self.data.push(tag);
|
2030
|
+
self.data.extend_from_slice(&[0; 4]);
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
/// Write a section or symbol index to the sub-subsection.
|
2034
|
+
///
|
2035
|
+
/// The user must also call this function to write the terminating 0 index.
|
2036
|
+
pub fn write_subsubsection_index(&mut self, index: u32) {
|
2037
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2038
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2039
|
+
util::write_uleb128(&mut self.data, u64::from(index));
|
2040
|
+
}
|
2041
|
+
|
2042
|
+
/// Write raw index data to the sub-subsection.
|
2043
|
+
///
|
2044
|
+
/// The terminating 0 index is automatically written.
|
2045
|
+
pub fn write_subsubsection_indices(&mut self, indices: &[u8]) {
|
2046
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2047
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2048
|
+
self.data.extend_from_slice(indices);
|
2049
|
+
self.data.push(0);
|
2050
|
+
}
|
2051
|
+
|
2052
|
+
/// Write an attribute tag to the sub-subsection.
|
2053
|
+
pub fn write_attribute_tag(&mut self, tag: u64) {
|
2054
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2055
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2056
|
+
util::write_uleb128(&mut self.data, tag);
|
2057
|
+
}
|
2058
|
+
|
2059
|
+
/// Write an attribute integer value to the sub-subsection.
|
2060
|
+
pub fn write_attribute_integer(&mut self, value: u64) {
|
2061
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2062
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2063
|
+
util::write_uleb128(&mut self.data, value);
|
2064
|
+
}
|
2065
|
+
|
2066
|
+
/// Write an attribute string value to the sub-subsection.
|
2067
|
+
///
|
2068
|
+
/// The value must not include the null terminator.
|
2069
|
+
pub fn write_attribute_string(&mut self, value: &[u8]) {
|
2070
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2071
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2072
|
+
self.data.extend_from_slice(value);
|
2073
|
+
self.data.push(0);
|
2074
|
+
}
|
2075
|
+
|
2076
|
+
/// Write raw attribute data to the sub-subsection.
|
2077
|
+
pub fn write_subsubsection_attributes(&mut self, attributes: &[u8]) {
|
2078
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2079
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2080
|
+
self.data.extend_from_slice(attributes);
|
2081
|
+
}
|
2082
|
+
|
2083
|
+
/// End the sub-subsection.
|
2084
|
+
///
|
2085
|
+
/// The sub-subsection length is automatically calculated and written.
|
2086
|
+
pub fn end_subsubsection(&mut self) {
|
2087
|
+
debug_assert_ne!(self.subsection_offset, 0);
|
2088
|
+
debug_assert_ne!(self.subsubsection_offset, 0);
|
2089
|
+
let length = self.data.len() - self.subsubsection_offset;
|
2090
|
+
self.data[self.subsubsection_offset + 1..][..4]
|
2091
|
+
.copy_from_slice(pod::bytes_of(&U32::new(self.endian, length as u32)));
|
2092
|
+
self.subsubsection_offset = 0;
|
2093
|
+
}
|
2094
|
+
|
2095
|
+
/// Return the completed section data.
|
2096
|
+
pub fn data(self) -> Vec<u8> {
|
2097
|
+
debug_assert_eq!(self.subsection_offset, 0);
|
2098
|
+
debug_assert_eq!(self.subsubsection_offset, 0);
|
2099
|
+
self.data
|
2100
|
+
}
|
2101
|
+
}
|
2102
|
+
|
2103
|
+
/// An ELF file class.
|
2104
|
+
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
|
2105
|
+
pub struct Class {
|
2106
|
+
/// Whether the file is 64-bit.
|
2107
|
+
pub is_64: bool,
|
2108
|
+
}
|
2109
|
+
|
2110
|
+
impl Class {
|
2111
|
+
/// Return the alignment size.
|
2112
|
+
pub fn align(self) -> usize {
|
2113
|
+
if self.is_64 {
|
2114
|
+
8
|
2115
|
+
} else {
|
2116
|
+
4
|
2117
|
+
}
|
2118
|
+
}
|
2119
|
+
|
2120
|
+
/// Return the size of the file header.
|
2121
|
+
pub fn file_header_size(self) -> usize {
|
2122
|
+
if self.is_64 {
|
2123
|
+
mem::size_of::<elf::FileHeader64<Endianness>>()
|
2124
|
+
} else {
|
2125
|
+
mem::size_of::<elf::FileHeader32<Endianness>>()
|
2126
|
+
}
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
/// Return the size of a program header.
|
2130
|
+
pub fn program_header_size(self) -> usize {
|
2131
|
+
if self.is_64 {
|
2132
|
+
mem::size_of::<elf::ProgramHeader64<Endianness>>()
|
2133
|
+
} else {
|
2134
|
+
mem::size_of::<elf::ProgramHeader32<Endianness>>()
|
2135
|
+
}
|
2136
|
+
}
|
2137
|
+
|
2138
|
+
/// Return the size of a section header.
|
2139
|
+
pub fn section_header_size(self) -> usize {
|
2140
|
+
if self.is_64 {
|
2141
|
+
mem::size_of::<elf::SectionHeader64<Endianness>>()
|
2142
|
+
} else {
|
2143
|
+
mem::size_of::<elf::SectionHeader32<Endianness>>()
|
2144
|
+
}
|
2145
|
+
}
|
2146
|
+
|
2147
|
+
/// Return the size of a symbol.
|
2148
|
+
pub fn sym_size(self) -> usize {
|
2149
|
+
if self.is_64 {
|
2150
|
+
mem::size_of::<elf::Sym64<Endianness>>()
|
2151
|
+
} else {
|
2152
|
+
mem::size_of::<elf::Sym32<Endianness>>()
|
2153
|
+
}
|
2154
|
+
}
|
2155
|
+
|
2156
|
+
/// Return the size of a relocation entry.
|
2157
|
+
pub fn rel_size(self, is_rela: bool) -> usize {
|
2158
|
+
if self.is_64 {
|
2159
|
+
if is_rela {
|
2160
|
+
mem::size_of::<elf::Rela64<Endianness>>()
|
2161
|
+
} else {
|
2162
|
+
mem::size_of::<elf::Rel64<Endianness>>()
|
2163
|
+
}
|
2164
|
+
} else {
|
2165
|
+
if is_rela {
|
2166
|
+
mem::size_of::<elf::Rela32<Endianness>>()
|
2167
|
+
} else {
|
2168
|
+
mem::size_of::<elf::Rel32<Endianness>>()
|
2169
|
+
}
|
2170
|
+
}
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
/// Return the size of a dynamic entry.
|
2174
|
+
pub fn dyn_size(self) -> usize {
|
2175
|
+
if self.is_64 {
|
2176
|
+
mem::size_of::<elf::Dyn64<Endianness>>()
|
2177
|
+
} else {
|
2178
|
+
mem::size_of::<elf::Dyn32<Endianness>>()
|
2179
|
+
}
|
2180
|
+
}
|
2181
|
+
|
2182
|
+
/// Return the size of a hash table.
|
2183
|
+
pub fn hash_size(self, bucket_count: u32, chain_count: u32) -> usize {
|
2184
|
+
mem::size_of::<elf::HashHeader<Endianness>>()
|
2185
|
+
+ bucket_count as usize * 4
|
2186
|
+
+ chain_count as usize * 4
|
2187
|
+
}
|
2188
|
+
|
2189
|
+
/// Return the size of a GNU hash table.
|
2190
|
+
pub fn gnu_hash_size(self, bloom_count: u32, bucket_count: u32, symbol_count: u32) -> usize {
|
2191
|
+
let bloom_size = if self.is_64 { 8 } else { 4 };
|
2192
|
+
mem::size_of::<elf::GnuHashHeader<Endianness>>()
|
2193
|
+
+ bloom_count as usize * bloom_size
|
2194
|
+
+ bucket_count as usize * 4
|
2195
|
+
+ symbol_count as usize * 4
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
/// Return the size of a GNU symbol version section.
|
2199
|
+
pub fn gnu_versym_size(self, symbol_count: usize) -> usize {
|
2200
|
+
symbol_count * 2
|
2201
|
+
}
|
2202
|
+
|
2203
|
+
/// Return the size of a GNU version definition section.
|
2204
|
+
pub fn gnu_verdef_size(self, verdef_count: usize, verdaux_count: usize) -> usize {
|
2205
|
+
verdef_count * mem::size_of::<elf::Verdef<Endianness>>()
|
2206
|
+
+ verdaux_count * mem::size_of::<elf::Verdaux<Endianness>>()
|
2207
|
+
}
|
2208
|
+
|
2209
|
+
/// Return the size of a GNU version dependency section.
|
2210
|
+
pub fn gnu_verneed_size(self, verneed_count: usize, vernaux_count: usize) -> usize {
|
2211
|
+
verneed_count * mem::size_of::<elf::Verneed<Endianness>>()
|
2212
|
+
+ vernaux_count * mem::size_of::<elf::Vernaux<Endianness>>()
|
2213
|
+
}
|
2214
|
+
}
|
2215
|
+
|
2216
|
+
/// Native endian version of [`elf::FileHeader64`].
|
2217
|
+
#[allow(missing_docs)]
|
2218
|
+
#[derive(Debug, Clone)]
|
2219
|
+
pub struct FileHeader {
|
2220
|
+
pub os_abi: u8,
|
2221
|
+
pub abi_version: u8,
|
2222
|
+
pub e_type: u16,
|
2223
|
+
pub e_machine: u16,
|
2224
|
+
pub e_entry: u64,
|
2225
|
+
pub e_flags: u32,
|
2226
|
+
}
|
2227
|
+
|
2228
|
+
/// Native endian version of [`elf::ProgramHeader64`].
|
2229
|
+
#[allow(missing_docs)]
|
2230
|
+
#[derive(Debug, Clone)]
|
2231
|
+
pub struct ProgramHeader {
|
2232
|
+
pub p_type: u32,
|
2233
|
+
pub p_flags: u32,
|
2234
|
+
pub p_offset: u64,
|
2235
|
+
pub p_vaddr: u64,
|
2236
|
+
pub p_paddr: u64,
|
2237
|
+
pub p_filesz: u64,
|
2238
|
+
pub p_memsz: u64,
|
2239
|
+
pub p_align: u64,
|
2240
|
+
}
|
2241
|
+
|
2242
|
+
/// Native endian version of [`elf::SectionHeader64`].
|
2243
|
+
#[allow(missing_docs)]
|
2244
|
+
#[derive(Debug, Clone)]
|
2245
|
+
pub struct SectionHeader {
|
2246
|
+
pub name: Option<StringId>,
|
2247
|
+
pub sh_type: u32,
|
2248
|
+
pub sh_flags: u64,
|
2249
|
+
pub sh_addr: u64,
|
2250
|
+
pub sh_offset: u64,
|
2251
|
+
pub sh_size: u64,
|
2252
|
+
pub sh_link: u32,
|
2253
|
+
pub sh_info: u32,
|
2254
|
+
pub sh_addralign: u64,
|
2255
|
+
pub sh_entsize: u64,
|
2256
|
+
}
|
2257
|
+
|
2258
|
+
/// Native endian version of [`elf::Sym64`].
|
2259
|
+
#[allow(missing_docs)]
|
2260
|
+
#[derive(Debug, Clone)]
|
2261
|
+
pub struct Sym {
|
2262
|
+
pub name: Option<StringId>,
|
2263
|
+
pub section: Option<SectionIndex>,
|
2264
|
+
pub st_info: u8,
|
2265
|
+
pub st_other: u8,
|
2266
|
+
pub st_shndx: u16,
|
2267
|
+
pub st_value: u64,
|
2268
|
+
pub st_size: u64,
|
2269
|
+
}
|
2270
|
+
|
2271
|
+
/// Unified native endian version of [`elf::Rel64`] and [`elf::Rela64`].
|
2272
|
+
#[allow(missing_docs)]
|
2273
|
+
#[derive(Debug, Clone)]
|
2274
|
+
pub struct Rel {
|
2275
|
+
pub r_offset: u64,
|
2276
|
+
pub r_sym: u32,
|
2277
|
+
pub r_type: u32,
|
2278
|
+
pub r_addend: i64,
|
2279
|
+
}
|
2280
|
+
|
2281
|
+
/// Information required for writing [`elf::Verdef`].
|
2282
|
+
#[allow(missing_docs)]
|
2283
|
+
#[derive(Debug, Clone)]
|
2284
|
+
pub struct Verdef {
|
2285
|
+
pub version: u16,
|
2286
|
+
pub flags: u16,
|
2287
|
+
pub index: u16,
|
2288
|
+
pub aux_count: u16,
|
2289
|
+
/// The name for the first [`elf::Verdaux`] entry.
|
2290
|
+
pub name: StringId,
|
2291
|
+
}
|
2292
|
+
|
2293
|
+
/// Information required for writing [`elf::Verneed`].
|
2294
|
+
#[allow(missing_docs)]
|
2295
|
+
#[derive(Debug, Clone)]
|
2296
|
+
pub struct Verneed {
|
2297
|
+
pub version: u16,
|
2298
|
+
pub aux_count: u16,
|
2299
|
+
pub file: StringId,
|
2300
|
+
}
|
2301
|
+
|
2302
|
+
/// Information required for writing [`elf::Vernaux`].
|
2303
|
+
#[allow(missing_docs)]
|
2304
|
+
#[derive(Debug, Clone)]
|
2305
|
+
pub struct Vernaux {
|
2306
|
+
pub flags: u16,
|
2307
|
+
pub index: u16,
|
2308
|
+
pub name: StringId,
|
2309
|
+
}
|