wasmtime 24.0.0 → 25.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +112 -111
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/Cargo.toml +59 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/node.rs +806 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/path.rs +830 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/pool.rs +219 -0
- data/ext/cargo-vendor/cranelift-bitset-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.112.0/Cargo.toml +74 -0
- data/ext/cargo-vendor/cranelift-bitset-0.112.0/src/scalar.rs +626 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/Cargo.toml +222 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/build.rs +267 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/binemit/mod.rs +168 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/cfg_printer.rs +83 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/data_value.rs +402 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/dbg.rs +28 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/egraph.rs +835 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/incremental_cache.rs +256 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/inst_predicates.rs +207 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/constant.rs +485 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/dfg.rs +1802 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/entities.rs +564 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/extfunc.rs +408 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/extname.rs +333 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/function.rs +500 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/globalvalue.rs +147 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/immediates.rs +1941 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/instructions.rs +1021 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/memtype.rs +190 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/progpoint.rs +75 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/trapcode.rs +148 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/types.rs +624 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/user_stack_maps.rs +199 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/abi.rs +1520 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/emit.rs +3567 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/imms.rs +1244 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/mod.rs +3051 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/regs.rs +269 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/unwind/systemv.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst.isle +4267 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/lower/isle.rs +811 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/lower.isle +2968 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/pcc.rs +570 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/settings.rs +9 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/mod.rs +471 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley32.rs +13 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley64.rs +13 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/abi.rs +798 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/args.rs +192 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/emit.rs +482 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/mod.rs +905 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/regs.rs +164 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst.isle +543 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower/isle/generated_code.rs +17 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower/isle.rs +195 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower.isle +178 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower.rs +36 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/mod.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/settings.rs +16 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/abi.rs +993 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/args.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/emit.rs +2685 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/encode.rs +721 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/mod.rs +1865 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/unwind/systemv.rs +170 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/vector.rs +1150 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst.isle +3128 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst_vector.isle +1907 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/lower/isle.rs +721 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/lower.isle +2940 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/abi.rs +1348 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/emit.rs +3470 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/emit_tests.rs +13370 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/mod.rs +3461 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/regs.rs +169 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/unwind/systemv.rs +212 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst.isle +5071 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/lower/isle.rs +1109 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/lower.isle +3981 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/unwind/systemv.rs +276 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/abi.rs +1390 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/encoding/evex.rs +747 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/args.rs +2318 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit.rs +4400 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit_state.rs +55 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit_tests.rs +5146 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/mod.rs +2811 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/regs.rs +275 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/stack_switch.rs +52 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/unwind/systemv.rs +198 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst.isle +5382 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower/isle.rs +1047 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower.isle +4919 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower.rs +338 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/mod.rs +239 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/pcc.rs +1022 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isle_prelude.rs +1144 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/abi.rs +2417 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/buffer.rs +2492 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/isle.rs +890 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/lower.rs +1590 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/mod.rs +560 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/reg.rs +484 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/vcode.rs +1762 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/extends.isle +95 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/icmp.isle +258 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/selects.isle +88 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/prelude.isle +751 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/prelude_lower.isle +1081 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/print_errors.rs +223 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/remove_constant_phis.rs +419 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/result.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/settings.rs +591 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/timing.rs +296 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/verifier/mod.rs +1941 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/write.rs +694 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/settings.rs +429 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/types.rs +420 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/typevar.rs +946 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/error.rs +48 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_inst.rs +1274 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_isle.rs +519 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_settings.rs +505 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_types.rs +70 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/arm64.rs +59 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/mod.rs +81 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/pulley.rs +14 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/riscv64.rs +181 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/x86.rs +414 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isle.rs +142 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/lib.rs +98 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/instructions.rs +3801 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/mod.rs +87 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/settings.rs +361 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/types.rs +103 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/srcgen.rs +464 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/Cargo.toml +32 -0
- data/ext/cargo-vendor/cranelift-control-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.112.0/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.0/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.0/src/lib.rs +381 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.0/src/packed_option.rs +173 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.0/src/sparse.rs +367 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/Cargo.toml +97 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/frontend.rs +1963 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/ssa.rs +1325 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/switch.rs +676 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/Cargo.toml +69 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/build.rs +35 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/ast.rs +412 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/codegen.rs +922 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/compile.rs +65 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/error.rs +318 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/files.rs +133 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/lexer.rs +343 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/lib.rs +34 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/overlap.rs +130 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/parser.rs +551 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/sema.rs +2482 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/src/trie_again.rs +696 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.0/tests/run_tests.rs +77 -0
- data/ext/cargo-vendor/cranelift-native-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.112.0/Cargo.toml +52 -0
- data/ext/cargo-vendor/cranelift-native-0.112.0/src/lib.rs +192 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/Cargo.toml +128 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/code_translator.rs +3723 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/environ/dummy.rs +897 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/environ/spec.rs +922 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/func_translator.rs +283 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/module_translator.rs +120 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/sections_translator.rs +332 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/translation_utils.rs +95 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.25/Cargo.toml +69 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/README.md +109 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/decode.rs +657 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/disas.rs +256 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/encode.rs +198 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/imms.rs +31 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/interp.rs +1113 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/lib.rs +215 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/op.rs +256 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/opcode.rs +126 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/regs.rs +329 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/disas.rs +87 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/interp.rs +1216 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/main.rs +5 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/Cargo.toml +83 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/doc/DESIGN.md +1411 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/cfg.rs +135 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/checker.rs +993 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/fuzzing/func.rs +651 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/fuzzing/mod.rs +31 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/index.rs +209 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/data_structures.rs +838 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/liveranges.rs +882 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/merge.rs +366 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/mod.rs +143 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/moves.rs +1006 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/process.rs +1319 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/requirement.rs +167 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/lib.rs +1518 -0
- data/ext/cargo-vendor/regalloc2-0.10.2/src/serialize.rs +293 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/CHANGELOG.md +19 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/CODE_OF_CONDUCT.md +3 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/Cargo.toml +39 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/LICENSE-MIT +23 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/README.md +42 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/src/lib.rs +459 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/src/random_state.rs +92 -0
- data/ext/cargo-vendor/rustc-hash-2.0.0/src/seeded_state.rs +53 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/Cargo.toml +242 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/src/ctx.rs +128 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/src/lib.rs +193 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/src/snapshots/mod.rs +24 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/src/sync/dir.rs +461 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/src/tokio/dir.rs +220 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/async_.rs +294 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/main.rs +21 -0
- data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/sync.rs +283 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/Cargo.toml +65 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/builder.rs +469 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/exports.rs +129 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/imports.rs +169 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/instances.rs +199 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/types.rs +800 -0
- data/ext/cargo-vendor/wasm-encoder-0.217.0/src/core/code.rs +3947 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/Cargo.lock +679 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/benches/benchmark.rs +350 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/binary_reader.rs +2115 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/features.rs +281 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/limits.rs +80 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/parser.rs +1691 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/aliases.rs +119 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/canonicals.rs +121 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/exports.rs +135 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/imports.rs +145 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/instances.rs +166 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/types.rs +553 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/code.rs +142 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/coredumps.rs +278 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/data.rs +94 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/exports.rs +65 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/globals.rs +61 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/imports.rs +76 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/init.rs +65 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/operators.rs +479 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/producers.rs +84 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/types.rs +1987 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/readers.rs +315 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/resources.rs +245 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/component.rs +3297 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/core/canonical.rs +409 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/core.rs +1374 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/func.rs +340 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/names.rs +1012 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/operators.rs +4845 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/types.rs +4612 -0
- data/ext/cargo-vendor/wasmparser-0.217.0/src/validator.rs +1658 -0
- data/ext/cargo-vendor/wasmprinter-0.217.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.217.0/Cargo.toml +74 -0
- data/ext/cargo-vendor/wasmprinter-0.217.0/src/lib.rs +3250 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/Cargo.toml +407 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/build.rs +38 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/compile/code_builder.rs +317 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/compile/runtime.rs +167 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/compile.rs +881 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/config.rs +3021 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/engine/serialization.rs +906 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/engine.rs +778 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/lib.rs +406 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/profiling_agent/jitdump.rs +64 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/component.rs +810 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/func/host.rs +458 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/func/typed.rs +2497 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/linker.rs +704 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/mod.rs +673 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/resources.rs +1132 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/types.rs +897 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/coredump.rs +339 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/externals/global.rs +312 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/externals/table.rs +480 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/func.rs +2607 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/anyref.rs +126 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/arrayref.rs +56 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/rooting.rs +229 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled.rs +23 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/anyref.rs +662 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/arrayref.rs +879 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/i31.rs +291 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/rooting.rs +1755 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled.rs +16 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/instance.rs +989 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/linker.rs +1498 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/memory.rs +1101 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/module.rs +1178 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/store.rs +2877 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/trampoline/global.rs +70 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/trap.rs +641 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/types.rs +2932 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/values.rs +1050 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/const_expr.rs +132 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/cow.rs +992 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/disabled.rs +41 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/arrayref.rs +342 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/data.rs +149 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/drc.rs +1163 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/structref.rs +336 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled.rs +29 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/gc_ref.rs +479 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/gc_runtime.rs +718 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc.rs +339 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/helpers.c +118 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +95 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +702 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/libcalls.rs +850 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/custom/traphandlers.rs +57 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/machports.rs +440 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/mmap.rs +159 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/signals.rs +465 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/windows/traphandlers.rs +135 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/threads/parking_spot.rs +623 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/traphandlers.rs +787 -0
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/vmcontext.rs +1246 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/Cargo.toml +33 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/Cargo.toml +112 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/build.rs +10 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/config.rs +584 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/lib.rs +235 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/worker/tests.rs +758 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/worker.rs +890 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/Cargo.toml +115 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/src/bindgen.rs +507 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/src/component.rs +1540 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/codegen.rs +699 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char.rs +387 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char_async.rs +414 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char_tracing_async.rs +461 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions.rs +824 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions_async.rs +899 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions_tracing_async.rs +1190 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code_async.rs +300 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code_tracing_async.rs +313 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import.rs +205 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import_async.rs +219 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import_tracing_async.rs +232 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty.rs +159 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty_async.rs +165 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty_tracing_async.rs +165 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags.rs +859 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags_async.rs +921 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags_tracing_async.rs +1096 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats.rs +459 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats_async.rs +500 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats_tracing_async.rs +594 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new.rs +182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new_async.rs +191 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new_tracing_async.rs +199 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers.rs +989 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers_async.rs +1128 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers_tracing_async.rs +1555 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists.rs +2040 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists_async.rs +2288 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists_tracing_async.rs +2980 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments.rs +730 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments_async.rs +758 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments_tracing_async.rs +819 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return_async.rs +519 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return_tracing_async.rs +633 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion.rs +508 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion_async.rs +537 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion_tracing_async.rs +585 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records.rs +1056 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records_async.rs +1146 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records_tracing_async.rs +1406 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename_async.rs +289 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename_tracing_async.rs +302 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export.rs +879 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export_async.rs +937 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export_tracing_async.rs +1011 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import.rs +1217 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import_async.rs +1361 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import_tracing_async.rs +1774 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types.rs +429 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types_async.rs +453 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types_tracing_async.rs +477 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions.rs +522 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions_async.rs +574 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions_tracing_async.rs +718 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists.rs +545 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists_async.rs +590 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists_tracing_async.rs +687 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi.rs +331 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi_async.rs +354 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi_tracing_async.rs +380 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous.rs +454 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous_async.rs +474 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous_tracing_async.rs +496 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default.rs +182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default_async.rs +191 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default_tracing_async.rs +199 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke_async.rs +233 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke_tracing_async.rs +246 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings.rs +432 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings_async.rs +466 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings_tracing_async.rs +538 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo.rs +250 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo_async.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo_tracing_async.rs +278 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths.rs +402 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths_async.rs +442 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths_tracing_async.rs +494 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants.rs +2016 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants_async.rs +2183 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants_tracing_async.rs +2705 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat_tracing_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types_async.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types_tracing_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded.rs +72 -0
- data/ext/cargo-vendor/wasmtime-component-util-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-25.0.0/Cargo.toml +36 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/Cargo.toml +137 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/compiler.rs +1035 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/attr.rs +308 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/line_program.rs +264 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/mod.rs +256 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/range_info_builder.rs +215 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/simulate.rs +423 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/unit.rs +512 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/func_environ.rs +2757 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/gc/enabled.rs +631 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/gc.rs +189 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/lib.rs +399 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.lock +792 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.toml +195 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/builtin.rs +184 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/mod.rs +379 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/module_environ.rs +1264 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/component/types.rs +1059 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/demangling.rs +28 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/fact/trampoline.rs +3234 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/fact/traps.rs +116 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/stack_map.rs +60 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/trap_encoding.rs +189 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/Cargo.toml +84 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/build.rs +39 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/src/lib.rs +343 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/Cargo.toml +86 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/Cargo.toml +71 -0
- data/ext/cargo-vendor/wasmtime-slab-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-25.0.0/Cargo.toml +50 -0
- data/ext/cargo-vendor/wasmtime-types-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-25.0.0/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-types-25.0.0/src/lib.rs +1846 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/Cargo.toml +41 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/Cargo.toml +224 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/bindings.rs +563 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/filesystem.rs +607 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/host/filesystem.rs +1091 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/host/io.rs +372 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/pipe.rs +833 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/preview1.rs +2764 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/runtime.rs +188 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/stdio.rs +616 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/stream.rs +265 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/tcp.rs +877 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/write_stream.rs +211 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/tests/all/main.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/tests/process_stdin.rs +165 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/command.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/environment.wit +22 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/exit.wit +17 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/imports.wit +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/run.wit +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/stdio.wit +26 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/terminal.wit +62 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/timezone.wit +55 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/wall-clock.wit +46 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/world.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/preopens.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/types.wit +678 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/world.wit +9 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/error.wit +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/poll.wit +47 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/streams.wit +286 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/world.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/insecure-seed.wit +27 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/insecure.wit +25 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/random.wit +29 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/world.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/instance-network.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/network.wit +153 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/tcp-create-socket.wit +30 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/tcp.wit +387 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/udp-create-socket.wit +30 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/udp.wit +288 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/world.wit +19 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/test.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/world.wit +6 -0
- data/ext/cargo-vendor/wasmtime-winch-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-25.0.0/Cargo.toml +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/Cargo.toml +66 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/src/lib.rs +3117 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/src/rust.rs +427 -0
- data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +1014 -0
- data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +324 -0
- data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +879 -0
- data/ext/cargo-vendor/wast-217.0.0/src/component/import.rs +216 -0
- data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +994 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/binary/dwarf.rs +613 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +1556 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +2110 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/module.rs +218 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/mod.rs +111 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +808 -0
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +273 -0
- data/ext/cargo-vendor/wast-217.0.0/src/lexer.rs +1573 -0
- data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +557 -0
- data/ext/cargo-vendor/wast-217.0.0/src/parser.rs +1447 -0
- data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +552 -0
- data/ext/cargo-vendor/wast-217.0.0/src/wat.rs +66 -0
- data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +56 -0
- data/ext/cargo-vendor/wiggle-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-25.0.0/Cargo.toml +119 -0
- data/ext/cargo-vendor/wiggle-25.0.0/src/lib.rs +605 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/src/funcs.rs +434 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/src/lib.rs +100 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/src/names.rs +299 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.0/src/wasmtime.rs +172 -0
- data/ext/cargo-vendor/wiggle-macro-25.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-25.0.0/Cargo.toml +78 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/abi/local.rs +82 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/abi/mod.rs +666 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/bounds.rs +220 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/context.rs +593 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/mod.rs +905 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/abi.rs +288 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/address.rs +143 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/asm.rs +840 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/masm.rs +680 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/mod.rs +320 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/abi.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/asm.rs +1422 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/masm.rs +1113 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/masm.rs +986 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/regalloc.rs +65 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/stack.rs +447 -0
- data/ext/cargo-vendor/winch-codegen-0.23.0/src/visitor.rs +2169 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/Cargo.toml +129 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/src/ast/resolve.rs +1575 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/src/ast.rs +1886 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/src/decoding.rs +1794 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/src/lib.rs +910 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/src/sizealign.rs +584 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/all.rs +154 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg6.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-resource15.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/conflicting-package.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/duplicate-interface2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/include-foreign.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multi-package-deps-share-nest.wit.result +3 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multiple-package-docs.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/non-existance-world-include.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/pkg-cycle.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/pkg-cycle2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/resources-return-borrow.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow6.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow7.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow8.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/type-and-resource-same-name.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/unresolved-use10.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/use-and-include-world.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/use-world.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/very-nested-packages.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/since-and-unstable.wit +107 -0
- data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/since-and-unstable.wit.json +621 -0
- data/ext/src/ruby_api/config.rs +3 -0
- data/ext/src/ruby_api/engine.rs +1 -0
- data/ext/src/ruby_api/pooling_allocation_config.rs +7 -7
- data/ext/src/ruby_api/store.rs +58 -4
- data/ext/src/ruby_api/wasi_ctx.rs +6 -6
- data/lib/wasmtime/version.rb +1 -1
- metadata +1808 -1804
- data/ext/cargo-vendor/cranelift-bforest-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.111.0/Cargo.toml +0 -57
- data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/node.rs +0 -806
- data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/path.rs +0 -835
- data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/pool.rs +0 -219
- data/ext/cargo-vendor/cranelift-bitset-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.111.0/Cargo.toml +0 -67
- data/ext/cargo-vendor/cranelift-bitset-0.111.0/src/scalar.rs +0 -575
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/Cargo.toml +0 -213
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/build.rs +0 -266
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/binemit/mod.rs +0 -171
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/binemit/stack_map.rs +0 -141
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/cfg_printer.rs +0 -83
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/data_value.rs +0 -410
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/dbg.rs +0 -28
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/egraph.rs +0 -835
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/incremental_cache.rs +0 -256
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/inst_predicates.rs +0 -231
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/constant.rs +0 -489
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/dfg.rs +0 -1806
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/entities.rs +0 -564
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/extfunc.rs +0 -408
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/extname.rs +0 -333
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/function.rs +0 -500
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/globalvalue.rs +0 -147
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/immediates.rs +0 -1941
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/instructions.rs +0 -1026
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/memtype.rs +0 -190
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/progpoint.rs +0 -75
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/trapcode.rs +0 -148
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/types.rs +0 -643
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/user_stack_maps.rs +0 -101
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/abi.rs +0 -1548
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/emit.rs +0 -3599
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/emit_tests.rs +0 -7925
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/imms.rs +0 -1213
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/mod.rs +0 -3052
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/regs.rs +0 -269
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/unwind/systemv.rs +0 -174
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst.isle +0 -4221
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/lower/isle.rs +0 -807
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/lower.isle +0 -2969
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/pcc.rs +0 -568
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/settings.rs +0 -9
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/mod.rs +0 -462
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/abi.rs +0 -1021
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/args.rs +0 -2054
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/emit.rs +0 -2736
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/emit_tests.rs +0 -2219
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/encode.rs +0 -675
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/mod.rs +0 -1932
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/unwind/systemv.rs +0 -170
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/vector.rs +0 -1150
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst.isle +0 -3153
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst_vector.isle +0 -1907
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/lower/isle.rs +0 -651
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/lower.isle +0 -2953
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/abi.rs +0 -1357
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/emit.rs +0 -3481
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/emit_tests.rs +0 -13388
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/mod.rs +0 -3481
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/regs.rs +0 -169
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/unwind/systemv.rs +0 -212
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst.isle +0 -5070
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/lower/isle.rs +0 -1156
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/lower.isle +0 -4022
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/unwind/systemv.rs +0 -276
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/abi.rs +0 -1410
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/encoding/evex.rs +0 -748
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/args.rs +0 -2318
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit.rs +0 -4309
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit_state.rs +0 -65
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit_tests.rs +0 -5137
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/mod.rs +0 -2819
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/regs.rs +0 -275
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/unwind/systemv.rs +0 -198
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst.isle +0 -5381
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower/isle.rs +0 -1048
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower.isle +0 -4892
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower.rs +0 -339
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/mod.rs +0 -239
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/pcc.rs +0 -1014
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isle_prelude.rs +0 -1097
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/abi.rs +0 -2411
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/buffer.rs +0 -2537
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/isle.rs +0 -881
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/lower.rs +0 -1462
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/mod.rs +0 -564
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/reg.rs +0 -479
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/vcode.rs +0 -1840
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/extends.isle +0 -91
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/icmp.isle +0 -215
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/selects.isle +0 -77
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/prelude.isle +0 -725
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/prelude_lower.isle +0 -1074
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/print_errors.rs +0 -223
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/remove_constant_phis.rs +0 -419
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/result.rs +0 -111
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/settings.rs +0 -590
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/timing.rs +0 -296
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/verifier/mod.rs +0 -1963
- data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/write.rs +0 -694
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/Cargo.toml +0 -52
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/settings.rs +0 -429
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/types.rs +0 -512
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/typevar.rs +0 -980
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/error.rs +0 -48
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_inst.rs +0 -1278
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_isle.rs +0 -519
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_settings.rs +0 -508
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_types.rs +0 -75
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/arm64.rs +0 -53
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/mod.rs +0 -66
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/riscv64.rs +0 -174
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/x86.rs +0 -414
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isle.rs +0 -126
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/lib.rs +0 -98
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/instructions.rs +0 -3794
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/mod.rs +0 -87
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/settings.rs +0 -348
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/types.rs +0 -143
- data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/srcgen.rs +0 -464
- data/ext/cargo-vendor/cranelift-codegen-shared-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.111.0/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-control-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.111.0/Cargo.toml +0 -42
- data/ext/cargo-vendor/cranelift-entity-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.111.0/Cargo.toml +0 -73
- data/ext/cargo-vendor/cranelift-entity-0.111.0/src/lib.rs +0 -381
- data/ext/cargo-vendor/cranelift-entity-0.111.0/src/packed_option.rs +0 -171
- data/ext/cargo-vendor/cranelift-entity-0.111.0/src/sparse.rs +0 -367
- data/ext/cargo-vendor/cranelift-frontend-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.111.0/Cargo.toml +0 -97
- data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/frontend.rs +0 -1977
- data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/ssa.rs +0 -1328
- data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/switch.rs +0 -683
- data/ext/cargo-vendor/cranelift-isle-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.111.0/Cargo.toml +0 -67
- data/ext/cargo-vendor/cranelift-isle-0.111.0/build.rs +0 -35
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/ast.rs +0 -421
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/codegen.rs +0 -920
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/compile.rs +0 -24
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/error.rs +0 -317
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/lexer.rs +0 -405
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/lib.rs +0 -33
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/overlap.rs +0 -137
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/parser.rs +0 -562
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/sema.rs +0 -2503
- data/ext/cargo-vendor/cranelift-isle-0.111.0/src/trie_again.rs +0 -695
- data/ext/cargo-vendor/cranelift-isle-0.111.0/tests/run_tests.rs +0 -77
- data/ext/cargo-vendor/cranelift-native-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.111.0/Cargo.toml +0 -52
- data/ext/cargo-vendor/cranelift-native-0.111.0/src/lib.rs +0 -188
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/Cargo.toml +0 -127
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/code_translator.rs +0 -3721
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/environ/dummy.rs +0 -906
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/environ/spec.rs +0 -945
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/func_translator.rs +0 -271
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/module_translator.rs +0 -120
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/sections_translator.rs +0 -333
- data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/translation_utils.rs +0 -91
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.24/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.24/Cargo.toml +0 -48
- data/ext/cargo-vendor/hashbrown-0.13.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/hashbrown-0.13.2/CHANGELOG.md +0 -437
- data/ext/cargo-vendor/hashbrown-0.13.2/Cargo.toml +0 -111
- data/ext/cargo-vendor/hashbrown-0.13.2/LICENSE-APACHE +0 -201
- data/ext/cargo-vendor/hashbrown-0.13.2/LICENSE-MIT +0 -25
- data/ext/cargo-vendor/hashbrown-0.13.2/README.md +0 -124
- data/ext/cargo-vendor/hashbrown-0.13.2/benches/bench.rs +0 -331
- data/ext/cargo-vendor/hashbrown-0.13.2/benches/insert_unique_unchecked.rs +0 -32
- data/ext/cargo-vendor/hashbrown-0.13.2/clippy.toml +0 -1
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/mod.rs +0 -4
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/helpers.rs +0 -27
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/map.rs +0 -734
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/mod.rs +0 -4
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/raw.rs +0 -231
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/set.rs +0 -659
- data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/serde.rs +0 -201
- data/ext/cargo-vendor/hashbrown-0.13.2/src/lib.rs +0 -183
- data/ext/cargo-vendor/hashbrown-0.13.2/src/macros.rs +0 -70
- data/ext/cargo-vendor/hashbrown-0.13.2/src/map.rs +0 -8512
- data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/alloc.rs +0 -73
- data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/bitmask.rs +0 -122
- data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/generic.rs +0 -154
- data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/mod.rs +0 -2518
- data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/sse2.rs +0 -146
- data/ext/cargo-vendor/hashbrown-0.13.2/src/rustc_entry.rs +0 -630
- data/ext/cargo-vendor/hashbrown-0.13.2/src/scopeguard.rs +0 -72
- data/ext/cargo-vendor/hashbrown-0.13.2/src/set.rs +0 -2889
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/equivalent_trait.rs +0 -53
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/hasher.rs +0 -65
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/raw.rs +0 -11
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/rayon.rs +0 -533
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/serde.rs +0 -65
- data/ext/cargo-vendor/hashbrown-0.13.2/tests/set.rs +0 -34
- data/ext/cargo-vendor/regalloc2-0.9.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/regalloc2-0.9.3/Cargo.toml +0 -72
- data/ext/cargo-vendor/regalloc2-0.9.3/doc/DESIGN.md +0 -1420
- data/ext/cargo-vendor/regalloc2-0.9.3/src/cfg.rs +0 -134
- data/ext/cargo-vendor/regalloc2-0.9.3/src/checker.rs +0 -1089
- data/ext/cargo-vendor/regalloc2-0.9.3/src/fuzzing/func.rs +0 -677
- data/ext/cargo-vendor/regalloc2-0.9.3/src/fuzzing/mod.rs +0 -28
- data/ext/cargo-vendor/regalloc2-0.9.3/src/index.rs +0 -268
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/data_structures.rs +0 -857
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/liveranges.rs +0 -961
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/merge.rs +0 -383
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/mod.rs +0 -150
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/moves.rs +0 -1017
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/process.rs +0 -1307
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/requirement.rs +0 -174
- data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/stackmap.rs +0 -79
- data/ext/cargo-vendor/regalloc2-0.9.3/src/lib.rs +0 -1526
- data/ext/cargo-vendor/regalloc2-0.9.3/src/serialize.rs +0 -311
- data/ext/cargo-vendor/wasi-common-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-24.0.0/Cargo.toml +0 -240
- data/ext/cargo-vendor/wasi-common-24.0.0/src/ctx.rs +0 -128
- data/ext/cargo-vendor/wasi-common-24.0.0/src/lib.rs +0 -193
- data/ext/cargo-vendor/wasi-common-24.0.0/src/snapshots/mod.rs +0 -27
- data/ext/cargo-vendor/wasi-common-24.0.0/src/sync/dir.rs +0 -462
- data/ext/cargo-vendor/wasi-common-24.0.0/src/tokio/dir.rs +0 -221
- data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/async_.rs +0 -295
- data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/main.rs +0 -21
- data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/sync.rs +0 -284
- data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/builder.rs +0 -455
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/exports.rs +0 -124
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/imports.rs +0 -175
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/instances.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/names.rs +0 -149
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +0 -802
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +0 -3947
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/names.rs +0 -298
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +0 -678
- data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +0 -2002
- data/ext/cargo-vendor/wasm-encoder-0.216.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.216.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/wasm-encoder-0.216.0/README.md +0 -80
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/aliases.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/builder.rs +0 -455
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/canonicals.rs +0 -159
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/components.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/exports.rs +0 -124
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/imports.rs +0 -175
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/instances.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/modules.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/start.rs +0 -52
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/types.rs +0 -802
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/code.rs +0 -3947
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/custom.rs +0 -73
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/data.rs +0 -186
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/dump.rs +0 -627
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/elements.rs +0 -222
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/exports.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/functions.rs +0 -63
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/globals.rs +0 -100
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/imports.rs +0 -143
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/linking.rs +0 -263
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/memories.rs +0 -115
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/producers.rs +0 -181
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/start.rs +0 -39
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/tables.rs +0 -129
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/tags.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/lib.rs +0 -218
- data/ext/cargo-vendor/wasm-encoder-0.216.0/src/raw.rs +0 -30
- data/ext/cargo-vendor/wasmparser-0.215.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.215.0/Cargo.lock +0 -669
- data/ext/cargo-vendor/wasmparser-0.215.0/Cargo.toml +0 -137
- data/ext/cargo-vendor/wasmparser-0.215.0/benches/benchmark.rs +0 -349
- data/ext/cargo-vendor/wasmparser-0.215.0/src/binary_reader.rs +0 -2064
- data/ext/cargo-vendor/wasmparser-0.215.0/src/features.rs +0 -175
- data/ext/cargo-vendor/wasmparser-0.215.0/src/limits.rs +0 -80
- data/ext/cargo-vendor/wasmparser-0.215.0/src/parser.rs +0 -1682
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/aliases.rs +0 -119
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/canonicals.rs +0 -121
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/exports.rs +0 -135
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/imports.rs +0 -130
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/instances.rs +0 -166
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/types.rs +0 -553
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/code.rs +0 -142
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/coredumps.rs +0 -278
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/data.rs +0 -96
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/exports.rs +0 -65
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/globals.rs +0 -61
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/imports.rs +0 -76
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/init.rs +0 -57
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/operators.rs +0 -479
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/producers.rs +0 -84
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/types.rs +0 -1964
- data/ext/cargo-vendor/wasmparser-0.215.0/src/readers.rs +0 -315
- data/ext/cargo-vendor/wasmparser-0.215.0/src/resources.rs +0 -234
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/component.rs +0 -3277
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/core/canonical.rs +0 -233
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/core.rs +0 -1499
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/func.rs +0 -334
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/names.rs +0 -1016
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/operators.rs +0 -4716
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/types.rs +0 -4592
- data/ext/cargo-vendor/wasmparser-0.215.0/src/validator.rs +0 -1643
- data/ext/cargo-vendor/wasmprinter-0.215.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.215.0/Cargo.toml +0 -74
- data/ext/cargo-vendor/wasmprinter-0.215.0/src/lib.rs +0 -3242
- data/ext/cargo-vendor/wasmtime-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-24.0.0/Cargo.toml +0 -406
- data/ext/cargo-vendor/wasmtime-24.0.0/build.rs +0 -38
- data/ext/cargo-vendor/wasmtime-24.0.0/src/compile/code_builder.rs +0 -274
- data/ext/cargo-vendor/wasmtime-24.0.0/src/compile/runtime.rs +0 -167
- data/ext/cargo-vendor/wasmtime-24.0.0/src/compile.rs +0 -881
- data/ext/cargo-vendor/wasmtime-24.0.0/src/config.rs +0 -2875
- data/ext/cargo-vendor/wasmtime-24.0.0/src/engine/serialization.rs +0 -902
- data/ext/cargo-vendor/wasmtime-24.0.0/src/engine.rs +0 -765
- data/ext/cargo-vendor/wasmtime-24.0.0/src/lib.rs +0 -406
- data/ext/cargo-vendor/wasmtime-24.0.0/src/profiling_agent/jitdump.rs +0 -64
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/component.rs +0 -811
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/func/host.rs +0 -439
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/func/typed.rs +0 -2497
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/linker.rs +0 -673
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/mod.rs +0 -663
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/resources.rs +0 -1132
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/types.rs +0 -897
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/coredump.rs +0 -339
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/externals/global.rs +0 -310
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/externals/table.rs +0 -480
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/func.rs +0 -2598
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled/anyref.rs +0 -77
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled/rooting.rs +0 -229
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled.rs +0 -21
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/anyref.rs +0 -584
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/i31.rs +0 -299
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/rooting.rs +0 -1755
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled.rs +0 -14
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/instance.rs +0 -990
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/linker.rs +0 -1498
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/memory.rs +0 -1101
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/module.rs +0 -1179
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/store.rs +0 -2885
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/trampoline/global.rs +0 -68
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/trap.rs +0 -642
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/types.rs +0 -2868
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/values.rs +0 -1016
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/const_expr.rs +0 -102
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/cow.rs +0 -988
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/disabled.rs +0 -39
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1113
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled/structref.rs +0 -481
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled.rs +0 -20
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/gc_ref.rs +0 -502
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/gc_runtime.rs +0 -651
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc.rs +0 -303
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/helpers.c +0 -113
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -93
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -703
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/libcalls.rs +0 -832
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/custom/traphandlers.rs +0 -60
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/machports.rs +0 -445
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -159
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/signals.rs +0 -464
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -133
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/threads/parking_spot.rs +0 -623
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/traphandlers.rs +0 -783
- data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/vmcontext.rs +0 -1246
- data/ext/cargo-vendor/wasmtime-asm-macros-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-24.0.0/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/build.rs +0 -10
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/config.rs +0 -584
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/lib.rs +0 -235
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/worker/tests.rs +0 -758
- data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/worker.rs +0 -890
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/Cargo.toml +0 -113
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/src/bindgen.rs +0 -500
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/src/component.rs +0 -1330
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/codegen.rs +0 -698
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/char.rs +0 -268
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/char_async.rs +0 -291
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/conventions.rs +0 -706
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/conventions_async.rs +0 -757
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/dead-code.rs +0 -194
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/dead-code_async.rs +0 -213
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/direct-import.rs +0 -120
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/direct-import_async.rs +0 -132
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/empty.rs +0 -74
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/empty_async.rs +0 -80
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/flags.rs +0 -743
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/flags_async.rs +0 -791
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/floats.rs +0 -343
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/floats_async.rs +0 -376
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/function-new.rs +0 -94
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/function-new_async.rs +0 -103
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/integers.rs +0 -873
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/integers_async.rs +0 -976
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/lists.rs +0 -1924
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/lists_async.rs +0 -2114
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/many-arguments.rs +0 -614
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/many-arguments_async.rs +0 -638
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multi-return.rs +0 -357
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multi-return_async.rs +0 -391
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multiversion.rs +0 -354
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multiversion_async.rs +0 -379
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/records.rs +0 -940
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/records_async.rs +0 -1008
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/rename.rs +0 -183
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/rename_async.rs +0 -202
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-export.rs +0 -657
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-export_async.rs +0 -712
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-import.rs +0 -1088
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-import_async.rs +0 -1166
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/share-types.rs +0 -315
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/share-types_async.rs +0 -337
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-functions.rs +0 -399
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-functions_async.rs +0 -439
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-lists.rs +0 -427
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-lists_async.rs +0 -464
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-wasi.rs +0 -245
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-wasi_async.rs +0 -264
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/small-anonymous.rs +0 -338
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/small-anonymous_async.rs +0 -356
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-default.rs +0 -94
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-default_async.rs +0 -103
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-export.rs +0 -149
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-export_async.rs +0 -158
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke.rs +0 -133
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke_async.rs +0 -146
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/strings.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/strings_async.rs +0 -344
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/unversioned-foo.rs +0 -165
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/unversioned-foo_async.rs +0 -178
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/use-paths.rs +0 -317
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/use-paths_async.rs +0 -349
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/variants.rs +0 -1896
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/variants_async.rs +0 -2019
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/wat.rs +0 -145
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/wat_async.rs +0 -151
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/worlds-with-types.rs +0 -175
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/worlds-with-types_async.rs +0 -191
- data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded.rs +0 -65
- data/ext/cargo-vendor/wasmtime-component-util-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-24.0.0/Cargo.toml +0 -35
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/Cargo.toml +0 -132
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/compiler.rs +0 -1029
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/attr.rs +0 -328
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/line_program.rs +0 -287
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/mod.rs +0 -273
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/range_info_builder.rs +0 -234
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/simulate.rs +0 -423
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/unit.rs +0 -520
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/func_environ.rs +0 -2721
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/gc/enabled.rs +0 -648
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/gc.rs +0 -198
- data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/lib.rs +0 -431
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/Cargo.lock +0 -792
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/Cargo.toml +0 -192
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/builtin.rs +0 -184
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/compile/mod.rs +0 -379
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/compile/module_environ.rs +0 -1264
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/component/types.rs +0 -1041
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/fact/trampoline.rs +0 -3234
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/fact/traps.rs +0 -116
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/stack_map.rs +0 -31
- data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/trap_encoding.rs +0 -189
- data/ext/cargo-vendor/wasmtime-fiber-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-24.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-fiber-24.0.0/build.rs +0 -39
- data/ext/cargo-vendor/wasmtime-fiber-24.0.0/src/lib.rs +0 -343
- data/ext/cargo-vendor/wasmtime-jit-debug-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-24.0.0/Cargo.toml +0 -84
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-24.0.0/Cargo.toml +0 -69
- data/ext/cargo-vendor/wasmtime-slab-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-24.0.0/Cargo.toml +0 -48
- data/ext/cargo-vendor/wasmtime-types-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-24.0.0/Cargo.toml +0 -78
- data/ext/cargo-vendor/wasmtime-types-24.0.0/src/lib.rs +0 -1835
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-24.0.0/Cargo.toml +0 -40
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/Cargo.toml +0 -222
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/bindings.rs +0 -561
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/filesystem.rs +0 -448
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/host/io.rs +0 -391
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/pipe.rs +0 -826
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/preview1.rs +0 -2801
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/runtime.rs +0 -176
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/stdio.rs +0 -596
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/stream.rs +0 -181
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/tcp.rs +0 -871
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/write_stream.rs +0 -203
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/tests/all/main.rs +0 -91
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/tests/process_stdin.rs +0 -165
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/command-extended.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/command.wit +0 -7
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/environment.wit +0 -18
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/exit.wit +0 -4
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/imports.wit +0 -20
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/run.wit +0 -4
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/stdio.wit +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/terminal.wit +0 -49
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/monotonic-clock.wit +0 -45
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/wall-clock.wit +0 -42
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/preopens.wit +0 -8
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/types.wit +0 -634
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/handler.wit +0 -43
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/proxy.wit +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/types.wit +0 -570
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/error.wit +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/streams.wit +0 -262
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/insecure-seed.wit +0 -25
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/insecure.wit +0 -22
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/random.wit +0 -26
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/world.wit +0 -7
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/instance-network.wit +0 -9
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -51
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/network.wit +0 -145
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/tcp-create-socket.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/tcp.wit +0 -353
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/udp-create-socket.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/udp.wit +0 -266
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/world.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/test.wit +0 -22
- data/ext/cargo-vendor/wasmtime-winch-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-24.0.0/Cargo.toml +0 -99
- data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/src/lib.rs +0 -2798
- data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/src/rust.rs +0 -427
- data/ext/cargo-vendor/wast-216.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-216.0.0/Cargo.toml +0 -101
- data/ext/cargo-vendor/wast-216.0.0/src/component/binary.rs +0 -1014
- data/ext/cargo-vendor/wast-216.0.0/src/component/component.rs +0 -320
- data/ext/cargo-vendor/wast-216.0.0/src/component/expand.rs +0 -875
- data/ext/cargo-vendor/wast-216.0.0/src/component/import.rs +0 -215
- data/ext/cargo-vendor/wast-216.0.0/src/component/resolve.rs +0 -988
- data/ext/cargo-vendor/wast-216.0.0/src/core/binary/dwarf.rs +0 -610
- data/ext/cargo-vendor/wast-216.0.0/src/core/binary.rs +0 -1539
- data/ext/cargo-vendor/wast-216.0.0/src/core/expr.rs +0 -2110
- data/ext/cargo-vendor/wast-216.0.0/src/core/module.rs +0 -215
- data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/mod.rs +0 -109
- data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/names.rs +0 -791
- data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/types.rs +0 -270
- data/ext/cargo-vendor/wast-216.0.0/src/lexer.rs +0 -1572
- data/ext/cargo-vendor/wast-216.0.0/src/lib.rs +0 -556
- data/ext/cargo-vendor/wast-216.0.0/src/parser.rs +0 -1434
- data/ext/cargo-vendor/wast-216.0.0/src/wast.rs +0 -459
- data/ext/cargo-vendor/wast-216.0.0/src/wat.rs +0 -68
- data/ext/cargo-vendor/wat-1.216.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.216.0/Cargo.toml +0 -56
- data/ext/cargo-vendor/wiggle-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-24.0.0/Cargo.toml +0 -117
- data/ext/cargo-vendor/wiggle-24.0.0/src/lib.rs +0 -605
- data/ext/cargo-vendor/wiggle-generate-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-24.0.0/Cargo.toml +0 -83
- data/ext/cargo-vendor/wiggle-generate-24.0.0/src/funcs.rs +0 -434
- data/ext/cargo-vendor/wiggle-generate-24.0.0/src/lib.rs +0 -100
- data/ext/cargo-vendor/wiggle-generate-24.0.0/src/names.rs +0 -299
- data/ext/cargo-vendor/wiggle-generate-24.0.0/src/wasmtime.rs +0 -172
- data/ext/cargo-vendor/wiggle-macro-24.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-24.0.0/Cargo.toml +0 -76
- data/ext/cargo-vendor/winch-codegen-0.22.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.22.0/Cargo.toml +0 -94
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/abi/local.rs +0 -81
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/abi/mod.rs +0 -666
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/bounds.rs +0 -220
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/context.rs +0 -591
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/mod.rs +0 -880
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/abi.rs +0 -296
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/address.rs +0 -143
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/asm.rs +0 -709
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/masm.rs +0 -665
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/mod.rs +0 -223
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/abi.rs +0 -564
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/asm.rs +0 -1418
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/masm.rs +0 -1115
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/masm.rs +0 -957
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/stack.rs +0 -447
- data/ext/cargo-vendor/winch-codegen-0.22.0/src/visitor.rs +0 -2158
- data/ext/cargo-vendor/wit-parser-0.215.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.215.0/Cargo.toml +0 -129
- data/ext/cargo-vendor/wit-parser-0.215.0/src/ast/resolve.rs +0 -1583
- data/ext/cargo-vendor/wit-parser-0.215.0/src/ast.rs +0 -1904
- data/ext/cargo-vendor/wit-parser-0.215.0/src/decoding.rs +0 -1795
- data/ext/cargo-vendor/wit-parser-0.215.0/src/lib.rs +0 -912
- data/ext/cargo-vendor/wit-parser-0.215.0/src/sizealign.rs +0 -179
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/all.rs +0 -154
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate3.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate4.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate5.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg1.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg2.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg3.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg4.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg5.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg6.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-resource15.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/conflicting-package.wit.result +0 -10
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/include-foreign.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multi-package-deps-share-nest.wit.result +0 -6
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -10
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/pkg-cycle.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow1.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow2.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow6.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow7.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow8.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/unresolved-use10.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/use-and-include-world.wit.result +0 -9
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/use-world.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/very-nested-packages.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/since-and-unstable.wit +0 -107
- data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/since-and-unstable.wit.json +0 -623
- /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/README.md +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/deny.toml +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/doc/TODO +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/domtree.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/indexset.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/dump.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/redundant_moves.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/reg_traversal.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/spill.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/moves.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/postorder.rs +0 -0
- /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/reencode/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/reencode.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/src/operator.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/unsupported.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-24.0.0 → wasmtime-asm-macros-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-24.0.0 → wasmtime-component-util-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/compiler/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/info.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-24.0.0 → wasmtime-slab-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-24.0.0 → wasmtime-versioned-export-macros-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-24.0.0 → wasmtime-wit-bindgen-25.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-24.0.0 → wasmtime-wit-bindgen-25.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.216.0 → wat-1.217.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.216.0 → wat-1.217.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/ast/lex.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/live.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/metadata.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/serde_.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/comments.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/feature-gates.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/feature-gates.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps/deps/dep.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/packages.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/packages.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-multiple-nested.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-multiple-nested.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-colliding-decl-names.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-colliding-decl-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-internal-references.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-internal-references.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-with-semver.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-with-semver.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-single-nested.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-single-nested.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-main.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-main.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-nested.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-nested.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-inline-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-colliding-names.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-colliding-names.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-with-error.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-with-error.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/very-nested-packages.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/same-name-import-export.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/same-name-import-export.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/simple-wasm-text.wat +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/simple-wasm-text.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/version-syntax.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/version-syntax.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/wasi.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,2889 +0,0 @@
|
|
1
|
-
#[cfg(feature = "raw")]
|
2
|
-
use crate::raw::RawTable;
|
3
|
-
use crate::{Equivalent, TryReserveError};
|
4
|
-
use alloc::borrow::ToOwned;
|
5
|
-
use core::fmt;
|
6
|
-
use core::hash::{BuildHasher, Hash};
|
7
|
-
use core::iter::{Chain, FromIterator, FusedIterator};
|
8
|
-
use core::mem;
|
9
|
-
use core::ops::{BitAnd, BitOr, BitXor, Sub};
|
10
|
-
|
11
|
-
use super::map::{self, ConsumeAllOnDrop, DefaultHashBuilder, DrainFilterInner, HashMap, Keys};
|
12
|
-
use crate::raw::{Allocator, Global};
|
13
|
-
|
14
|
-
// Future Optimization (FIXME!)
|
15
|
-
// =============================
|
16
|
-
//
|
17
|
-
// Iteration over zero sized values is a noop. There is no need
|
18
|
-
// for `bucket.val` in the case of HashSet. I suppose we would need HKT
|
19
|
-
// to get rid of it properly.
|
20
|
-
|
21
|
-
/// A hash set implemented as a `HashMap` where the value is `()`.
|
22
|
-
///
|
23
|
-
/// As with the [`HashMap`] type, a `HashSet` requires that the elements
|
24
|
-
/// implement the [`Eq`] and [`Hash`] traits. This can frequently be achieved by
|
25
|
-
/// using `#[derive(PartialEq, Eq, Hash)]`. If you implement these yourself,
|
26
|
-
/// it is important that the following property holds:
|
27
|
-
///
|
28
|
-
/// ```text
|
29
|
-
/// k1 == k2 -> hash(k1) == hash(k2)
|
30
|
-
/// ```
|
31
|
-
///
|
32
|
-
/// In other words, if two keys are equal, their hashes must be equal.
|
33
|
-
///
|
34
|
-
///
|
35
|
-
/// It is a logic error for an item to be modified in such a way that the
|
36
|
-
/// item's hash, as determined by the [`Hash`] trait, or its equality, as
|
37
|
-
/// determined by the [`Eq`] trait, changes while it is in the set. This is
|
38
|
-
/// normally only possible through [`Cell`], [`RefCell`], global state, I/O, or
|
39
|
-
/// unsafe code.
|
40
|
-
///
|
41
|
-
/// It is also a logic error for the [`Hash`] implementation of a key to panic.
|
42
|
-
/// This is generally only possible if the trait is implemented manually. If a
|
43
|
-
/// panic does occur then the contents of the `HashSet` may become corrupted and
|
44
|
-
/// some items may be dropped from the table.
|
45
|
-
///
|
46
|
-
/// # Examples
|
47
|
-
///
|
48
|
-
/// ```
|
49
|
-
/// use hashbrown::HashSet;
|
50
|
-
/// // Type inference lets us omit an explicit type signature (which
|
51
|
-
/// // would be `HashSet<String>` in this example).
|
52
|
-
/// let mut books = HashSet::new();
|
53
|
-
///
|
54
|
-
/// // Add some books.
|
55
|
-
/// books.insert("A Dance With Dragons".to_string());
|
56
|
-
/// books.insert("To Kill a Mockingbird".to_string());
|
57
|
-
/// books.insert("The Odyssey".to_string());
|
58
|
-
/// books.insert("The Great Gatsby".to_string());
|
59
|
-
///
|
60
|
-
/// // Check for a specific one.
|
61
|
-
/// if !books.contains("The Winds of Winter") {
|
62
|
-
/// println!("We have {} books, but The Winds of Winter ain't one.",
|
63
|
-
/// books.len());
|
64
|
-
/// }
|
65
|
-
///
|
66
|
-
/// // Remove a book.
|
67
|
-
/// books.remove("The Odyssey");
|
68
|
-
///
|
69
|
-
/// // Iterate over everything.
|
70
|
-
/// for book in &books {
|
71
|
-
/// println!("{}", book);
|
72
|
-
/// }
|
73
|
-
/// ```
|
74
|
-
///
|
75
|
-
/// The easiest way to use `HashSet` with a custom type is to derive
|
76
|
-
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`]. This will in the
|
77
|
-
/// future be implied by [`Eq`].
|
78
|
-
///
|
79
|
-
/// ```
|
80
|
-
/// use hashbrown::HashSet;
|
81
|
-
/// #[derive(Hash, Eq, PartialEq, Debug)]
|
82
|
-
/// struct Viking {
|
83
|
-
/// name: String,
|
84
|
-
/// power: usize,
|
85
|
-
/// }
|
86
|
-
///
|
87
|
-
/// let mut vikings = HashSet::new();
|
88
|
-
///
|
89
|
-
/// vikings.insert(Viking { name: "Einar".to_string(), power: 9 });
|
90
|
-
/// vikings.insert(Viking { name: "Einar".to_string(), power: 9 });
|
91
|
-
/// vikings.insert(Viking { name: "Olaf".to_string(), power: 4 });
|
92
|
-
/// vikings.insert(Viking { name: "Harald".to_string(), power: 8 });
|
93
|
-
///
|
94
|
-
/// // Use derived implementation to print the vikings.
|
95
|
-
/// for x in &vikings {
|
96
|
-
/// println!("{:?}", x);
|
97
|
-
/// }
|
98
|
-
/// ```
|
99
|
-
///
|
100
|
-
/// A `HashSet` with fixed list of elements can be initialized from an array:
|
101
|
-
///
|
102
|
-
/// ```
|
103
|
-
/// use hashbrown::HashSet;
|
104
|
-
///
|
105
|
-
/// let viking_names: HashSet<&'static str> =
|
106
|
-
/// [ "Einar", "Olaf", "Harald" ].iter().cloned().collect();
|
107
|
-
/// // use the values stored in the set
|
108
|
-
/// ```
|
109
|
-
///
|
110
|
-
/// [`Cell`]: https://doc.rust-lang.org/std/cell/struct.Cell.html
|
111
|
-
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
|
112
|
-
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
|
113
|
-
/// [`HashMap`]: struct.HashMap.html
|
114
|
-
/// [`PartialEq`]: https://doc.rust-lang.org/std/cmp/trait.PartialEq.html
|
115
|
-
/// [`RefCell`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html
|
116
|
-
pub struct HashSet<T, S = DefaultHashBuilder, A: Allocator + Clone = Global> {
|
117
|
-
pub(crate) map: HashMap<T, (), S, A>,
|
118
|
-
}
|
119
|
-
|
120
|
-
impl<T: Clone, S: Clone, A: Allocator + Clone> Clone for HashSet<T, S, A> {
|
121
|
-
fn clone(&self) -> Self {
|
122
|
-
HashSet {
|
123
|
-
map: self.map.clone(),
|
124
|
-
}
|
125
|
-
}
|
126
|
-
|
127
|
-
fn clone_from(&mut self, source: &Self) {
|
128
|
-
self.map.clone_from(&source.map);
|
129
|
-
}
|
130
|
-
}
|
131
|
-
|
132
|
-
#[cfg(feature = "ahash")]
|
133
|
-
impl<T> HashSet<T, DefaultHashBuilder> {
|
134
|
-
/// Creates an empty `HashSet`.
|
135
|
-
///
|
136
|
-
/// The hash set is initially created with a capacity of 0, so it will not allocate until it
|
137
|
-
/// is first inserted into.
|
138
|
-
///
|
139
|
-
/// # HashDoS resistance
|
140
|
-
///
|
141
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
142
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
143
|
-
/// Users who require HashDoS resistance should explicitly use
|
144
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
145
|
-
/// as the hasher when creating a [`HashSet`], for example with
|
146
|
-
/// [`with_hasher`](HashSet::with_hasher) method.
|
147
|
-
///
|
148
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
149
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
150
|
-
///
|
151
|
-
/// # Examples
|
152
|
-
///
|
153
|
-
/// ```
|
154
|
-
/// use hashbrown::HashSet;
|
155
|
-
/// let set: HashSet<i32> = HashSet::new();
|
156
|
-
/// ```
|
157
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
158
|
-
pub fn new() -> Self {
|
159
|
-
Self {
|
160
|
-
map: HashMap::new(),
|
161
|
-
}
|
162
|
-
}
|
163
|
-
|
164
|
-
/// Creates an empty `HashSet` with the specified capacity.
|
165
|
-
///
|
166
|
-
/// The hash set will be able to hold at least `capacity` elements without
|
167
|
-
/// reallocating. If `capacity` is 0, the hash set will not allocate.
|
168
|
-
///
|
169
|
-
/// # HashDoS resistance
|
170
|
-
///
|
171
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
172
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
173
|
-
/// Users who require HashDoS resistance should explicitly use
|
174
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
175
|
-
/// as the hasher when creating a [`HashSet`], for example with
|
176
|
-
/// [`with_capacity_and_hasher`](HashSet::with_capacity_and_hasher) method.
|
177
|
-
///
|
178
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
179
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
180
|
-
///
|
181
|
-
/// # Examples
|
182
|
-
///
|
183
|
-
/// ```
|
184
|
-
/// use hashbrown::HashSet;
|
185
|
-
/// let set: HashSet<i32> = HashSet::with_capacity(10);
|
186
|
-
/// assert!(set.capacity() >= 10);
|
187
|
-
/// ```
|
188
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
189
|
-
pub fn with_capacity(capacity: usize) -> Self {
|
190
|
-
Self {
|
191
|
-
map: HashMap::with_capacity(capacity),
|
192
|
-
}
|
193
|
-
}
|
194
|
-
}
|
195
|
-
|
196
|
-
#[cfg(feature = "ahash")]
|
197
|
-
impl<T: Hash + Eq, A: Allocator + Clone> HashSet<T, DefaultHashBuilder, A> {
|
198
|
-
/// Creates an empty `HashSet`.
|
199
|
-
///
|
200
|
-
/// The hash set is initially created with a capacity of 0, so it will not allocate until it
|
201
|
-
/// is first inserted into.
|
202
|
-
///
|
203
|
-
/// # HashDoS resistance
|
204
|
-
///
|
205
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
206
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
207
|
-
/// Users who require HashDoS resistance should explicitly use
|
208
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
209
|
-
/// as the hasher when creating a [`HashSet`], for example with
|
210
|
-
/// [`with_hasher_in`](HashSet::with_hasher_in) method.
|
211
|
-
///
|
212
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
213
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
214
|
-
///
|
215
|
-
/// # Examples
|
216
|
-
///
|
217
|
-
/// ```
|
218
|
-
/// use hashbrown::HashSet;
|
219
|
-
/// let set: HashSet<i32> = HashSet::new();
|
220
|
-
/// ```
|
221
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
222
|
-
pub fn new_in(alloc: A) -> Self {
|
223
|
-
Self {
|
224
|
-
map: HashMap::new_in(alloc),
|
225
|
-
}
|
226
|
-
}
|
227
|
-
|
228
|
-
/// Creates an empty `HashSet` with the specified capacity.
|
229
|
-
///
|
230
|
-
/// The hash set will be able to hold at least `capacity` elements without
|
231
|
-
/// reallocating. If `capacity` is 0, the hash set will not allocate.
|
232
|
-
///
|
233
|
-
/// # HashDoS resistance
|
234
|
-
///
|
235
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
236
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
237
|
-
/// Users who require HashDoS resistance should explicitly use
|
238
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
239
|
-
/// as the hasher when creating a [`HashSet`], for example with
|
240
|
-
/// [`with_capacity_and_hasher_in`](HashSet::with_capacity_and_hasher_in) method.
|
241
|
-
///
|
242
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
243
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
244
|
-
///
|
245
|
-
/// # Examples
|
246
|
-
///
|
247
|
-
/// ```
|
248
|
-
/// use hashbrown::HashSet;
|
249
|
-
/// let set: HashSet<i32> = HashSet::with_capacity(10);
|
250
|
-
/// assert!(set.capacity() >= 10);
|
251
|
-
/// ```
|
252
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
253
|
-
pub fn with_capacity_in(capacity: usize, alloc: A) -> Self {
|
254
|
-
Self {
|
255
|
-
map: HashMap::with_capacity_in(capacity, alloc),
|
256
|
-
}
|
257
|
-
}
|
258
|
-
}
|
259
|
-
|
260
|
-
impl<T, S, A: Allocator + Clone> HashSet<T, S, A> {
|
261
|
-
/// Returns the number of elements the set can hold without reallocating.
|
262
|
-
///
|
263
|
-
/// # Examples
|
264
|
-
///
|
265
|
-
/// ```
|
266
|
-
/// use hashbrown::HashSet;
|
267
|
-
/// let set: HashSet<i32> = HashSet::with_capacity(100);
|
268
|
-
/// assert!(set.capacity() >= 100);
|
269
|
-
/// ```
|
270
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
271
|
-
pub fn capacity(&self) -> usize {
|
272
|
-
self.map.capacity()
|
273
|
-
}
|
274
|
-
|
275
|
-
/// An iterator visiting all elements in arbitrary order.
|
276
|
-
/// The iterator element type is `&'a T`.
|
277
|
-
///
|
278
|
-
/// # Examples
|
279
|
-
///
|
280
|
-
/// ```
|
281
|
-
/// use hashbrown::HashSet;
|
282
|
-
/// let mut set = HashSet::new();
|
283
|
-
/// set.insert("a");
|
284
|
-
/// set.insert("b");
|
285
|
-
///
|
286
|
-
/// // Will print in an arbitrary order.
|
287
|
-
/// for x in set.iter() {
|
288
|
-
/// println!("{}", x);
|
289
|
-
/// }
|
290
|
-
/// ```
|
291
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
292
|
-
pub fn iter(&self) -> Iter<'_, T> {
|
293
|
-
Iter {
|
294
|
-
iter: self.map.keys(),
|
295
|
-
}
|
296
|
-
}
|
297
|
-
|
298
|
-
/// Returns the number of elements in the set.
|
299
|
-
///
|
300
|
-
/// # Examples
|
301
|
-
///
|
302
|
-
/// ```
|
303
|
-
/// use hashbrown::HashSet;
|
304
|
-
///
|
305
|
-
/// let mut v = HashSet::new();
|
306
|
-
/// assert_eq!(v.len(), 0);
|
307
|
-
/// v.insert(1);
|
308
|
-
/// assert_eq!(v.len(), 1);
|
309
|
-
/// ```
|
310
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
311
|
-
pub fn len(&self) -> usize {
|
312
|
-
self.map.len()
|
313
|
-
}
|
314
|
-
|
315
|
-
/// Returns `true` if the set contains no elements.
|
316
|
-
///
|
317
|
-
/// # Examples
|
318
|
-
///
|
319
|
-
/// ```
|
320
|
-
/// use hashbrown::HashSet;
|
321
|
-
///
|
322
|
-
/// let mut v = HashSet::new();
|
323
|
-
/// assert!(v.is_empty());
|
324
|
-
/// v.insert(1);
|
325
|
-
/// assert!(!v.is_empty());
|
326
|
-
/// ```
|
327
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
328
|
-
pub fn is_empty(&self) -> bool {
|
329
|
-
self.map.is_empty()
|
330
|
-
}
|
331
|
-
|
332
|
-
/// Clears the set, returning all elements in an iterator.
|
333
|
-
///
|
334
|
-
/// # Examples
|
335
|
-
///
|
336
|
-
/// ```
|
337
|
-
/// use hashbrown::HashSet;
|
338
|
-
///
|
339
|
-
/// let mut set: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
340
|
-
/// assert!(!set.is_empty());
|
341
|
-
///
|
342
|
-
/// // print 1, 2, 3 in an arbitrary order
|
343
|
-
/// for i in set.drain() {
|
344
|
-
/// println!("{}", i);
|
345
|
-
/// }
|
346
|
-
///
|
347
|
-
/// assert!(set.is_empty());
|
348
|
-
/// ```
|
349
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
350
|
-
pub fn drain(&mut self) -> Drain<'_, T, A> {
|
351
|
-
Drain {
|
352
|
-
iter: self.map.drain(),
|
353
|
-
}
|
354
|
-
}
|
355
|
-
|
356
|
-
/// Retains only the elements specified by the predicate.
|
357
|
-
///
|
358
|
-
/// In other words, remove all elements `e` such that `f(&e)` returns `false`.
|
359
|
-
///
|
360
|
-
/// # Examples
|
361
|
-
///
|
362
|
-
/// ```
|
363
|
-
/// use hashbrown::HashSet;
|
364
|
-
///
|
365
|
-
/// let xs = [1,2,3,4,5,6];
|
366
|
-
/// let mut set: HashSet<i32> = xs.iter().cloned().collect();
|
367
|
-
/// set.retain(|&k| k % 2 == 0);
|
368
|
-
/// assert_eq!(set.len(), 3);
|
369
|
-
/// ```
|
370
|
-
pub fn retain<F>(&mut self, mut f: F)
|
371
|
-
where
|
372
|
-
F: FnMut(&T) -> bool,
|
373
|
-
{
|
374
|
-
self.map.retain(|k, _| f(k));
|
375
|
-
}
|
376
|
-
|
377
|
-
/// Drains elements which are true under the given predicate,
|
378
|
-
/// and returns an iterator over the removed items.
|
379
|
-
///
|
380
|
-
/// In other words, move all elements `e` such that `f(&e)` returns `true` out
|
381
|
-
/// into another iterator.
|
382
|
-
///
|
383
|
-
/// When the returned DrainedFilter is dropped, any remaining elements that satisfy
|
384
|
-
/// the predicate are dropped from the set.
|
385
|
-
///
|
386
|
-
/// # Examples
|
387
|
-
///
|
388
|
-
/// ```
|
389
|
-
/// use hashbrown::HashSet;
|
390
|
-
///
|
391
|
-
/// let mut set: HashSet<i32> = (0..8).collect();
|
392
|
-
/// let drained: HashSet<i32> = set.drain_filter(|v| v % 2 == 0).collect();
|
393
|
-
///
|
394
|
-
/// let mut evens = drained.into_iter().collect::<Vec<_>>();
|
395
|
-
/// let mut odds = set.into_iter().collect::<Vec<_>>();
|
396
|
-
/// evens.sort();
|
397
|
-
/// odds.sort();
|
398
|
-
///
|
399
|
-
/// assert_eq!(evens, vec![0, 2, 4, 6]);
|
400
|
-
/// assert_eq!(odds, vec![1, 3, 5, 7]);
|
401
|
-
/// ```
|
402
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
403
|
-
pub fn drain_filter<F>(&mut self, f: F) -> DrainFilter<'_, T, F, A>
|
404
|
-
where
|
405
|
-
F: FnMut(&T) -> bool,
|
406
|
-
{
|
407
|
-
DrainFilter {
|
408
|
-
f,
|
409
|
-
inner: DrainFilterInner {
|
410
|
-
iter: unsafe { self.map.table.iter() },
|
411
|
-
table: &mut self.map.table,
|
412
|
-
},
|
413
|
-
}
|
414
|
-
}
|
415
|
-
|
416
|
-
/// Clears the set, removing all values.
|
417
|
-
///
|
418
|
-
/// # Examples
|
419
|
-
///
|
420
|
-
/// ```
|
421
|
-
/// use hashbrown::HashSet;
|
422
|
-
///
|
423
|
-
/// let mut v = HashSet::new();
|
424
|
-
/// v.insert(1);
|
425
|
-
/// v.clear();
|
426
|
-
/// assert!(v.is_empty());
|
427
|
-
/// ```
|
428
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
429
|
-
pub fn clear(&mut self) {
|
430
|
-
self.map.clear();
|
431
|
-
}
|
432
|
-
}
|
433
|
-
|
434
|
-
impl<T, S> HashSet<T, S, Global> {
|
435
|
-
/// Creates a new empty hash set which will use the given hasher to hash
|
436
|
-
/// keys.
|
437
|
-
///
|
438
|
-
/// The hash set is initially created with a capacity of 0, so it will not
|
439
|
-
/// allocate until it is first inserted into.
|
440
|
-
///
|
441
|
-
/// # HashDoS resistance
|
442
|
-
///
|
443
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
444
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
445
|
-
/// Users who require HashDoS resistance should explicitly use
|
446
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
447
|
-
/// as the hasher when creating a [`HashSet`].
|
448
|
-
///
|
449
|
-
/// The `hash_builder` passed should implement the [`BuildHasher`] trait for
|
450
|
-
/// the HashSet to be useful, see its documentation for details.
|
451
|
-
///
|
452
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
453
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
454
|
-
/// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
|
455
|
-
///
|
456
|
-
/// # Examples
|
457
|
-
///
|
458
|
-
/// ```
|
459
|
-
/// use hashbrown::HashSet;
|
460
|
-
/// use hashbrown::hash_map::DefaultHashBuilder;
|
461
|
-
///
|
462
|
-
/// let s = DefaultHashBuilder::default();
|
463
|
-
/// let mut set = HashSet::with_hasher(s);
|
464
|
-
/// set.insert(2);
|
465
|
-
/// ```
|
466
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
467
|
-
pub const fn with_hasher(hasher: S) -> Self {
|
468
|
-
Self {
|
469
|
-
map: HashMap::with_hasher(hasher),
|
470
|
-
}
|
471
|
-
}
|
472
|
-
|
473
|
-
/// Creates an empty `HashSet` with the specified capacity, using
|
474
|
-
/// `hasher` to hash the keys.
|
475
|
-
///
|
476
|
-
/// The hash set will be able to hold at least `capacity` elements without
|
477
|
-
/// reallocating. If `capacity` is 0, the hash set will not allocate.
|
478
|
-
///
|
479
|
-
/// # HashDoS resistance
|
480
|
-
///
|
481
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
482
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
483
|
-
/// Users who require HashDoS resistance should explicitly use
|
484
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
485
|
-
/// as the hasher when creating a [`HashSet`].
|
486
|
-
///
|
487
|
-
/// The `hash_builder` passed should implement the [`BuildHasher`] trait for
|
488
|
-
/// the HashSet to be useful, see its documentation for details.
|
489
|
-
///
|
490
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
491
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
492
|
-
/// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
|
493
|
-
///
|
494
|
-
/// # Examples
|
495
|
-
///
|
496
|
-
/// ```
|
497
|
-
/// use hashbrown::HashSet;
|
498
|
-
/// use hashbrown::hash_map::DefaultHashBuilder;
|
499
|
-
///
|
500
|
-
/// let s = DefaultHashBuilder::default();
|
501
|
-
/// let mut set = HashSet::with_capacity_and_hasher(10, s);
|
502
|
-
/// set.insert(1);
|
503
|
-
/// ```
|
504
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
505
|
-
pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> Self {
|
506
|
-
Self {
|
507
|
-
map: HashMap::with_capacity_and_hasher(capacity, hasher),
|
508
|
-
}
|
509
|
-
}
|
510
|
-
}
|
511
|
-
|
512
|
-
impl<T, S, A> HashSet<T, S, A>
|
513
|
-
where
|
514
|
-
A: Allocator + Clone,
|
515
|
-
{
|
516
|
-
/// Returns a reference to the underlying allocator.
|
517
|
-
#[inline]
|
518
|
-
pub fn allocator(&self) -> &A {
|
519
|
-
self.map.allocator()
|
520
|
-
}
|
521
|
-
|
522
|
-
/// Creates a new empty hash set which will use the given hasher to hash
|
523
|
-
/// keys.
|
524
|
-
///
|
525
|
-
/// The hash set is initially created with a capacity of 0, so it will not
|
526
|
-
/// allocate until it is first inserted into.
|
527
|
-
///
|
528
|
-
/// # HashDoS resistance
|
529
|
-
///
|
530
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
531
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
532
|
-
/// Users who require HashDoS resistance should explicitly use
|
533
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
534
|
-
/// as the hasher when creating a [`HashSet`].
|
535
|
-
///
|
536
|
-
/// The `hash_builder` passed should implement the [`BuildHasher`] trait for
|
537
|
-
/// the HashSet to be useful, see its documentation for details.
|
538
|
-
///
|
539
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
540
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
541
|
-
/// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
|
542
|
-
///
|
543
|
-
/// # Examples
|
544
|
-
///
|
545
|
-
/// ```
|
546
|
-
/// use hashbrown::HashSet;
|
547
|
-
/// use hashbrown::hash_map::DefaultHashBuilder;
|
548
|
-
///
|
549
|
-
/// let s = DefaultHashBuilder::default();
|
550
|
-
/// let mut set = HashSet::with_hasher(s);
|
551
|
-
/// set.insert(2);
|
552
|
-
/// ```
|
553
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
554
|
-
pub const fn with_hasher_in(hasher: S, alloc: A) -> Self {
|
555
|
-
Self {
|
556
|
-
map: HashMap::with_hasher_in(hasher, alloc),
|
557
|
-
}
|
558
|
-
}
|
559
|
-
|
560
|
-
/// Creates an empty `HashSet` with the specified capacity, using
|
561
|
-
/// `hasher` to hash the keys.
|
562
|
-
///
|
563
|
-
/// The hash set will be able to hold at least `capacity` elements without
|
564
|
-
/// reallocating. If `capacity` is 0, the hash set will not allocate.
|
565
|
-
///
|
566
|
-
/// # HashDoS resistance
|
567
|
-
///
|
568
|
-
/// The `hash_builder` normally use a fixed key by default and that does
|
569
|
-
/// not allow the `HashSet` to be protected against attacks such as [`HashDoS`].
|
570
|
-
/// Users who require HashDoS resistance should explicitly use
|
571
|
-
/// [`ahash::RandomState`] or [`std::collections::hash_map::RandomState`]
|
572
|
-
/// as the hasher when creating a [`HashSet`].
|
573
|
-
///
|
574
|
-
/// The `hash_builder` passed should implement the [`BuildHasher`] trait for
|
575
|
-
/// the HashSet to be useful, see its documentation for details.
|
576
|
-
///
|
577
|
-
/// [`HashDoS`]: https://en.wikipedia.org/wiki/Collision_attack
|
578
|
-
/// [`std::collections::hash_map::RandomState`]: https://doc.rust-lang.org/std/collections/hash_map/struct.RandomState.html
|
579
|
-
/// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
|
580
|
-
///
|
581
|
-
/// # Examples
|
582
|
-
///
|
583
|
-
/// ```
|
584
|
-
/// use hashbrown::HashSet;
|
585
|
-
/// use hashbrown::hash_map::DefaultHashBuilder;
|
586
|
-
///
|
587
|
-
/// let s = DefaultHashBuilder::default();
|
588
|
-
/// let mut set = HashSet::with_capacity_and_hasher(10, s);
|
589
|
-
/// set.insert(1);
|
590
|
-
/// ```
|
591
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
592
|
-
pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self {
|
593
|
-
Self {
|
594
|
-
map: HashMap::with_capacity_and_hasher_in(capacity, hasher, alloc),
|
595
|
-
}
|
596
|
-
}
|
597
|
-
|
598
|
-
/// Returns a reference to the set's [`BuildHasher`].
|
599
|
-
///
|
600
|
-
/// [`BuildHasher`]: https://doc.rust-lang.org/std/hash/trait.BuildHasher.html
|
601
|
-
///
|
602
|
-
/// # Examples
|
603
|
-
///
|
604
|
-
/// ```
|
605
|
-
/// use hashbrown::HashSet;
|
606
|
-
/// use hashbrown::hash_map::DefaultHashBuilder;
|
607
|
-
///
|
608
|
-
/// let hasher = DefaultHashBuilder::default();
|
609
|
-
/// let set: HashSet<i32> = HashSet::with_hasher(hasher);
|
610
|
-
/// let hasher: &DefaultHashBuilder = set.hasher();
|
611
|
-
/// ```
|
612
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
613
|
-
pub fn hasher(&self) -> &S {
|
614
|
-
self.map.hasher()
|
615
|
-
}
|
616
|
-
}
|
617
|
-
|
618
|
-
impl<T, S, A> HashSet<T, S, A>
|
619
|
-
where
|
620
|
-
T: Eq + Hash,
|
621
|
-
S: BuildHasher,
|
622
|
-
A: Allocator + Clone,
|
623
|
-
{
|
624
|
-
/// Reserves capacity for at least `additional` more elements to be inserted
|
625
|
-
/// in the `HashSet`. The collection may reserve more space to avoid
|
626
|
-
/// frequent reallocations.
|
627
|
-
///
|
628
|
-
/// # Panics
|
629
|
-
///
|
630
|
-
/// Panics if the new capacity exceeds [`isize::MAX`] bytes and [`abort`] the program
|
631
|
-
/// in case of allocation error. Use [`try_reserve`](HashSet::try_reserve) instead
|
632
|
-
/// if you want to handle memory allocation failure.
|
633
|
-
///
|
634
|
-
/// [`isize::MAX`]: https://doc.rust-lang.org/std/primitive.isize.html
|
635
|
-
/// [`abort`]: https://doc.rust-lang.org/alloc/alloc/fn.handle_alloc_error.html
|
636
|
-
///
|
637
|
-
/// # Examples
|
638
|
-
///
|
639
|
-
/// ```
|
640
|
-
/// use hashbrown::HashSet;
|
641
|
-
/// let mut set: HashSet<i32> = HashSet::new();
|
642
|
-
/// set.reserve(10);
|
643
|
-
/// assert!(set.capacity() >= 10);
|
644
|
-
/// ```
|
645
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
646
|
-
pub fn reserve(&mut self, additional: usize) {
|
647
|
-
self.map.reserve(additional);
|
648
|
-
}
|
649
|
-
|
650
|
-
/// Tries to reserve capacity for at least `additional` more elements to be inserted
|
651
|
-
/// in the given `HashSet<K,V>`. The collection may reserve more space to avoid
|
652
|
-
/// frequent reallocations.
|
653
|
-
///
|
654
|
-
/// # Errors
|
655
|
-
///
|
656
|
-
/// If the capacity overflows, or the allocator reports a failure, then an error
|
657
|
-
/// is returned.
|
658
|
-
///
|
659
|
-
/// # Examples
|
660
|
-
///
|
661
|
-
/// ```
|
662
|
-
/// use hashbrown::HashSet;
|
663
|
-
/// let mut set: HashSet<i32> = HashSet::new();
|
664
|
-
/// set.try_reserve(10).expect("why is the test harness OOMing on 10 bytes?");
|
665
|
-
/// ```
|
666
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
667
|
-
pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> {
|
668
|
-
self.map.try_reserve(additional)
|
669
|
-
}
|
670
|
-
|
671
|
-
/// Shrinks the capacity of the set as much as possible. It will drop
|
672
|
-
/// down as much as possible while maintaining the internal rules
|
673
|
-
/// and possibly leaving some space in accordance with the resize policy.
|
674
|
-
///
|
675
|
-
/// # Examples
|
676
|
-
///
|
677
|
-
/// ```
|
678
|
-
/// use hashbrown::HashSet;
|
679
|
-
///
|
680
|
-
/// let mut set = HashSet::with_capacity(100);
|
681
|
-
/// set.insert(1);
|
682
|
-
/// set.insert(2);
|
683
|
-
/// assert!(set.capacity() >= 100);
|
684
|
-
/// set.shrink_to_fit();
|
685
|
-
/// assert!(set.capacity() >= 2);
|
686
|
-
/// ```
|
687
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
688
|
-
pub fn shrink_to_fit(&mut self) {
|
689
|
-
self.map.shrink_to_fit();
|
690
|
-
}
|
691
|
-
|
692
|
-
/// Shrinks the capacity of the set with a lower limit. It will drop
|
693
|
-
/// down no lower than the supplied limit while maintaining the internal rules
|
694
|
-
/// and possibly leaving some space in accordance with the resize policy.
|
695
|
-
///
|
696
|
-
/// Panics if the current capacity is smaller than the supplied
|
697
|
-
/// minimum capacity.
|
698
|
-
///
|
699
|
-
/// # Examples
|
700
|
-
///
|
701
|
-
/// ```
|
702
|
-
/// use hashbrown::HashSet;
|
703
|
-
///
|
704
|
-
/// let mut set = HashSet::with_capacity(100);
|
705
|
-
/// set.insert(1);
|
706
|
-
/// set.insert(2);
|
707
|
-
/// assert!(set.capacity() >= 100);
|
708
|
-
/// set.shrink_to(10);
|
709
|
-
/// assert!(set.capacity() >= 10);
|
710
|
-
/// set.shrink_to(0);
|
711
|
-
/// assert!(set.capacity() >= 2);
|
712
|
-
/// ```
|
713
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
714
|
-
pub fn shrink_to(&mut self, min_capacity: usize) {
|
715
|
-
self.map.shrink_to(min_capacity);
|
716
|
-
}
|
717
|
-
|
718
|
-
/// Visits the values representing the difference,
|
719
|
-
/// i.e., the values that are in `self` but not in `other`.
|
720
|
-
///
|
721
|
-
/// # Examples
|
722
|
-
///
|
723
|
-
/// ```
|
724
|
-
/// use hashbrown::HashSet;
|
725
|
-
/// let a: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
726
|
-
/// let b: HashSet<_> = [4, 2, 3, 4].iter().cloned().collect();
|
727
|
-
///
|
728
|
-
/// // Can be seen as `a - b`.
|
729
|
-
/// for x in a.difference(&b) {
|
730
|
-
/// println!("{}", x); // Print 1
|
731
|
-
/// }
|
732
|
-
///
|
733
|
-
/// let diff: HashSet<_> = a.difference(&b).collect();
|
734
|
-
/// assert_eq!(diff, [1].iter().collect());
|
735
|
-
///
|
736
|
-
/// // Note that difference is not symmetric,
|
737
|
-
/// // and `b - a` means something else:
|
738
|
-
/// let diff: HashSet<_> = b.difference(&a).collect();
|
739
|
-
/// assert_eq!(diff, [4].iter().collect());
|
740
|
-
/// ```
|
741
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
742
|
-
pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> {
|
743
|
-
Difference {
|
744
|
-
iter: self.iter(),
|
745
|
-
other,
|
746
|
-
}
|
747
|
-
}
|
748
|
-
|
749
|
-
/// Visits the values representing the symmetric difference,
|
750
|
-
/// i.e., the values that are in `self` or in `other` but not in both.
|
751
|
-
///
|
752
|
-
/// # Examples
|
753
|
-
///
|
754
|
-
/// ```
|
755
|
-
/// use hashbrown::HashSet;
|
756
|
-
/// let a: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
757
|
-
/// let b: HashSet<_> = [4, 2, 3, 4].iter().cloned().collect();
|
758
|
-
///
|
759
|
-
/// // Print 1, 4 in arbitrary order.
|
760
|
-
/// for x in a.symmetric_difference(&b) {
|
761
|
-
/// println!("{}", x);
|
762
|
-
/// }
|
763
|
-
///
|
764
|
-
/// let diff1: HashSet<_> = a.symmetric_difference(&b).collect();
|
765
|
-
/// let diff2: HashSet<_> = b.symmetric_difference(&a).collect();
|
766
|
-
///
|
767
|
-
/// assert_eq!(diff1, diff2);
|
768
|
-
/// assert_eq!(diff1, [1, 4].iter().collect());
|
769
|
-
/// ```
|
770
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
771
|
-
pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> {
|
772
|
-
SymmetricDifference {
|
773
|
-
iter: self.difference(other).chain(other.difference(self)),
|
774
|
-
}
|
775
|
-
}
|
776
|
-
|
777
|
-
/// Visits the values representing the intersection,
|
778
|
-
/// i.e., the values that are both in `self` and `other`.
|
779
|
-
///
|
780
|
-
/// # Examples
|
781
|
-
///
|
782
|
-
/// ```
|
783
|
-
/// use hashbrown::HashSet;
|
784
|
-
/// let a: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
785
|
-
/// let b: HashSet<_> = [4, 2, 3, 4].iter().cloned().collect();
|
786
|
-
///
|
787
|
-
/// // Print 2, 3 in arbitrary order.
|
788
|
-
/// for x in a.intersection(&b) {
|
789
|
-
/// println!("{}", x);
|
790
|
-
/// }
|
791
|
-
///
|
792
|
-
/// let intersection: HashSet<_> = a.intersection(&b).collect();
|
793
|
-
/// assert_eq!(intersection, [2, 3].iter().collect());
|
794
|
-
/// ```
|
795
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
796
|
-
pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> {
|
797
|
-
let (smaller, larger) = if self.len() <= other.len() {
|
798
|
-
(self, other)
|
799
|
-
} else {
|
800
|
-
(other, self)
|
801
|
-
};
|
802
|
-
Intersection {
|
803
|
-
iter: smaller.iter(),
|
804
|
-
other: larger,
|
805
|
-
}
|
806
|
-
}
|
807
|
-
|
808
|
-
/// Visits the values representing the union,
|
809
|
-
/// i.e., all the values in `self` or `other`, without duplicates.
|
810
|
-
///
|
811
|
-
/// # Examples
|
812
|
-
///
|
813
|
-
/// ```
|
814
|
-
/// use hashbrown::HashSet;
|
815
|
-
/// let a: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
816
|
-
/// let b: HashSet<_> = [4, 2, 3, 4].iter().cloned().collect();
|
817
|
-
///
|
818
|
-
/// // Print 1, 2, 3, 4 in arbitrary order.
|
819
|
-
/// for x in a.union(&b) {
|
820
|
-
/// println!("{}", x);
|
821
|
-
/// }
|
822
|
-
///
|
823
|
-
/// let union: HashSet<_> = a.union(&b).collect();
|
824
|
-
/// assert_eq!(union, [1, 2, 3, 4].iter().collect());
|
825
|
-
/// ```
|
826
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
827
|
-
pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> {
|
828
|
-
// We'll iterate one set in full, and only the remaining difference from the other.
|
829
|
-
// Use the smaller set for the difference in order to reduce hash lookups.
|
830
|
-
let (smaller, larger) = if self.len() <= other.len() {
|
831
|
-
(self, other)
|
832
|
-
} else {
|
833
|
-
(other, self)
|
834
|
-
};
|
835
|
-
Union {
|
836
|
-
iter: larger.iter().chain(smaller.difference(larger)),
|
837
|
-
}
|
838
|
-
}
|
839
|
-
|
840
|
-
/// Returns `true` if the set contains a value.
|
841
|
-
///
|
842
|
-
/// The value may be any borrowed form of the set's value type, but
|
843
|
-
/// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
|
844
|
-
/// the value type.
|
845
|
-
///
|
846
|
-
/// # Examples
|
847
|
-
///
|
848
|
-
/// ```
|
849
|
-
/// use hashbrown::HashSet;
|
850
|
-
///
|
851
|
-
/// let set: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
852
|
-
/// assert_eq!(set.contains(&1), true);
|
853
|
-
/// assert_eq!(set.contains(&4), false);
|
854
|
-
/// ```
|
855
|
-
///
|
856
|
-
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
|
857
|
-
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
|
858
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
859
|
-
pub fn contains<Q: ?Sized>(&self, value: &Q) -> bool
|
860
|
-
where
|
861
|
-
Q: Hash + Equivalent<T>,
|
862
|
-
{
|
863
|
-
self.map.contains_key(value)
|
864
|
-
}
|
865
|
-
|
866
|
-
/// Returns a reference to the value in the set, if any, that is equal to the given value.
|
867
|
-
///
|
868
|
-
/// The value may be any borrowed form of the set's value type, but
|
869
|
-
/// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
|
870
|
-
/// the value type.
|
871
|
-
///
|
872
|
-
/// # Examples
|
873
|
-
///
|
874
|
-
/// ```
|
875
|
-
/// use hashbrown::HashSet;
|
876
|
-
///
|
877
|
-
/// let set: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
878
|
-
/// assert_eq!(set.get(&2), Some(&2));
|
879
|
-
/// assert_eq!(set.get(&4), None);
|
880
|
-
/// ```
|
881
|
-
///
|
882
|
-
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
|
883
|
-
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
|
884
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
885
|
-
pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T>
|
886
|
-
where
|
887
|
-
Q: Hash + Equivalent<T>,
|
888
|
-
{
|
889
|
-
// Avoid `Option::map` because it bloats LLVM IR.
|
890
|
-
match self.map.get_key_value(value) {
|
891
|
-
Some((k, _)) => Some(k),
|
892
|
-
None => None,
|
893
|
-
}
|
894
|
-
}
|
895
|
-
|
896
|
-
/// Inserts the given `value` into the set if it is not present, then
|
897
|
-
/// returns a reference to the value in the set.
|
898
|
-
///
|
899
|
-
/// # Examples
|
900
|
-
///
|
901
|
-
/// ```
|
902
|
-
/// use hashbrown::HashSet;
|
903
|
-
///
|
904
|
-
/// let mut set: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
905
|
-
/// assert_eq!(set.len(), 3);
|
906
|
-
/// assert_eq!(set.get_or_insert(2), &2);
|
907
|
-
/// assert_eq!(set.get_or_insert(100), &100);
|
908
|
-
/// assert_eq!(set.len(), 4); // 100 was inserted
|
909
|
-
/// ```
|
910
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
911
|
-
pub fn get_or_insert(&mut self, value: T) -> &T {
|
912
|
-
// Although the raw entry gives us `&mut T`, we only return `&T` to be consistent with
|
913
|
-
// `get`. Key mutation is "raw" because you're not supposed to affect `Eq` or `Hash`.
|
914
|
-
self.map
|
915
|
-
.raw_entry_mut()
|
916
|
-
.from_key(&value)
|
917
|
-
.or_insert(value, ())
|
918
|
-
.0
|
919
|
-
}
|
920
|
-
|
921
|
-
/// Inserts an owned copy of the given `value` into the set if it is not
|
922
|
-
/// present, then returns a reference to the value in the set.
|
923
|
-
///
|
924
|
-
/// # Examples
|
925
|
-
///
|
926
|
-
/// ```
|
927
|
-
/// use hashbrown::HashSet;
|
928
|
-
///
|
929
|
-
/// let mut set: HashSet<String> = ["cat", "dog", "horse"]
|
930
|
-
/// .iter().map(|&pet| pet.to_owned()).collect();
|
931
|
-
///
|
932
|
-
/// assert_eq!(set.len(), 3);
|
933
|
-
/// for &pet in &["cat", "dog", "fish"] {
|
934
|
-
/// let value = set.get_or_insert_owned(pet);
|
935
|
-
/// assert_eq!(value, pet);
|
936
|
-
/// }
|
937
|
-
/// assert_eq!(set.len(), 4); // a new "fish" was inserted
|
938
|
-
/// ```
|
939
|
-
#[inline]
|
940
|
-
pub fn get_or_insert_owned<Q: ?Sized>(&mut self, value: &Q) -> &T
|
941
|
-
where
|
942
|
-
Q: Hash + Equivalent<T> + ToOwned<Owned = T>,
|
943
|
-
{
|
944
|
-
// Although the raw entry gives us `&mut T`, we only return `&T` to be consistent with
|
945
|
-
// `get`. Key mutation is "raw" because you're not supposed to affect `Eq` or `Hash`.
|
946
|
-
self.map
|
947
|
-
.raw_entry_mut()
|
948
|
-
.from_key(value)
|
949
|
-
.or_insert_with(|| (value.to_owned(), ()))
|
950
|
-
.0
|
951
|
-
}
|
952
|
-
|
953
|
-
/// Inserts a value computed from `f` into the set if the given `value` is
|
954
|
-
/// not present, then returns a reference to the value in the set.
|
955
|
-
///
|
956
|
-
/// # Examples
|
957
|
-
///
|
958
|
-
/// ```
|
959
|
-
/// use hashbrown::HashSet;
|
960
|
-
///
|
961
|
-
/// let mut set: HashSet<String> = ["cat", "dog", "horse"]
|
962
|
-
/// .iter().map(|&pet| pet.to_owned()).collect();
|
963
|
-
///
|
964
|
-
/// assert_eq!(set.len(), 3);
|
965
|
-
/// for &pet in &["cat", "dog", "fish"] {
|
966
|
-
/// let value = set.get_or_insert_with(pet, str::to_owned);
|
967
|
-
/// assert_eq!(value, pet);
|
968
|
-
/// }
|
969
|
-
/// assert_eq!(set.len(), 4); // a new "fish" was inserted
|
970
|
-
/// ```
|
971
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
972
|
-
pub fn get_or_insert_with<Q: ?Sized, F>(&mut self, value: &Q, f: F) -> &T
|
973
|
-
where
|
974
|
-
Q: Hash + Equivalent<T>,
|
975
|
-
F: FnOnce(&Q) -> T,
|
976
|
-
{
|
977
|
-
// Although the raw entry gives us `&mut T`, we only return `&T` to be consistent with
|
978
|
-
// `get`. Key mutation is "raw" because you're not supposed to affect `Eq` or `Hash`.
|
979
|
-
self.map
|
980
|
-
.raw_entry_mut()
|
981
|
-
.from_key(value)
|
982
|
-
.or_insert_with(|| (f(value), ()))
|
983
|
-
.0
|
984
|
-
}
|
985
|
-
|
986
|
-
/// Gets the given value's corresponding entry in the set for in-place manipulation.
|
987
|
-
///
|
988
|
-
/// # Examples
|
989
|
-
///
|
990
|
-
/// ```
|
991
|
-
/// use hashbrown::HashSet;
|
992
|
-
/// use hashbrown::hash_set::Entry::*;
|
993
|
-
///
|
994
|
-
/// let mut singles = HashSet::new();
|
995
|
-
/// let mut dupes = HashSet::new();
|
996
|
-
///
|
997
|
-
/// for ch in "a short treatise on fungi".chars() {
|
998
|
-
/// if let Vacant(dupe_entry) = dupes.entry(ch) {
|
999
|
-
/// // We haven't already seen a duplicate, so
|
1000
|
-
/// // check if we've at least seen it once.
|
1001
|
-
/// match singles.entry(ch) {
|
1002
|
-
/// Vacant(single_entry) => {
|
1003
|
-
/// // We found a new character for the first time.
|
1004
|
-
/// single_entry.insert()
|
1005
|
-
/// }
|
1006
|
-
/// Occupied(single_entry) => {
|
1007
|
-
/// // We've already seen this once, "move" it to dupes.
|
1008
|
-
/// single_entry.remove();
|
1009
|
-
/// dupe_entry.insert();
|
1010
|
-
/// }
|
1011
|
-
/// }
|
1012
|
-
/// }
|
1013
|
-
/// }
|
1014
|
-
///
|
1015
|
-
/// assert!(!singles.contains(&'t') && dupes.contains(&'t'));
|
1016
|
-
/// assert!(singles.contains(&'u') && !dupes.contains(&'u'));
|
1017
|
-
/// assert!(!singles.contains(&'v') && !dupes.contains(&'v'));
|
1018
|
-
/// ```
|
1019
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1020
|
-
pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> {
|
1021
|
-
match self.map.entry(value) {
|
1022
|
-
map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry { inner: entry }),
|
1023
|
-
map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry { inner: entry }),
|
1024
|
-
}
|
1025
|
-
}
|
1026
|
-
|
1027
|
-
/// Returns `true` if `self` has no elements in common with `other`.
|
1028
|
-
/// This is equivalent to checking for an empty intersection.
|
1029
|
-
///
|
1030
|
-
/// # Examples
|
1031
|
-
///
|
1032
|
-
/// ```
|
1033
|
-
/// use hashbrown::HashSet;
|
1034
|
-
///
|
1035
|
-
/// let a: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
1036
|
-
/// let mut b = HashSet::new();
|
1037
|
-
///
|
1038
|
-
/// assert_eq!(a.is_disjoint(&b), true);
|
1039
|
-
/// b.insert(4);
|
1040
|
-
/// assert_eq!(a.is_disjoint(&b), true);
|
1041
|
-
/// b.insert(1);
|
1042
|
-
/// assert_eq!(a.is_disjoint(&b), false);
|
1043
|
-
/// ```
|
1044
|
-
pub fn is_disjoint(&self, other: &Self) -> bool {
|
1045
|
-
self.iter().all(|v| !other.contains(v))
|
1046
|
-
}
|
1047
|
-
|
1048
|
-
/// Returns `true` if the set is a subset of another,
|
1049
|
-
/// i.e., `other` contains at least all the values in `self`.
|
1050
|
-
///
|
1051
|
-
/// # Examples
|
1052
|
-
///
|
1053
|
-
/// ```
|
1054
|
-
/// use hashbrown::HashSet;
|
1055
|
-
///
|
1056
|
-
/// let sup: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
1057
|
-
/// let mut set = HashSet::new();
|
1058
|
-
///
|
1059
|
-
/// assert_eq!(set.is_subset(&sup), true);
|
1060
|
-
/// set.insert(2);
|
1061
|
-
/// assert_eq!(set.is_subset(&sup), true);
|
1062
|
-
/// set.insert(4);
|
1063
|
-
/// assert_eq!(set.is_subset(&sup), false);
|
1064
|
-
/// ```
|
1065
|
-
pub fn is_subset(&self, other: &Self) -> bool {
|
1066
|
-
self.len() <= other.len() && self.iter().all(|v| other.contains(v))
|
1067
|
-
}
|
1068
|
-
|
1069
|
-
/// Returns `true` if the set is a superset of another,
|
1070
|
-
/// i.e., `self` contains at least all the values in `other`.
|
1071
|
-
///
|
1072
|
-
/// # Examples
|
1073
|
-
///
|
1074
|
-
/// ```
|
1075
|
-
/// use hashbrown::HashSet;
|
1076
|
-
///
|
1077
|
-
/// let sub: HashSet<_> = [1, 2].iter().cloned().collect();
|
1078
|
-
/// let mut set = HashSet::new();
|
1079
|
-
///
|
1080
|
-
/// assert_eq!(set.is_superset(&sub), false);
|
1081
|
-
///
|
1082
|
-
/// set.insert(0);
|
1083
|
-
/// set.insert(1);
|
1084
|
-
/// assert_eq!(set.is_superset(&sub), false);
|
1085
|
-
///
|
1086
|
-
/// set.insert(2);
|
1087
|
-
/// assert_eq!(set.is_superset(&sub), true);
|
1088
|
-
/// ```
|
1089
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1090
|
-
pub fn is_superset(&self, other: &Self) -> bool {
|
1091
|
-
other.is_subset(self)
|
1092
|
-
}
|
1093
|
-
|
1094
|
-
/// Adds a value to the set.
|
1095
|
-
///
|
1096
|
-
/// If the set did not have this value present, `true` is returned.
|
1097
|
-
///
|
1098
|
-
/// If the set did have this value present, `false` is returned.
|
1099
|
-
///
|
1100
|
-
/// # Examples
|
1101
|
-
///
|
1102
|
-
/// ```
|
1103
|
-
/// use hashbrown::HashSet;
|
1104
|
-
///
|
1105
|
-
/// let mut set = HashSet::new();
|
1106
|
-
///
|
1107
|
-
/// assert_eq!(set.insert(2), true);
|
1108
|
-
/// assert_eq!(set.insert(2), false);
|
1109
|
-
/// assert_eq!(set.len(), 1);
|
1110
|
-
/// ```
|
1111
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1112
|
-
pub fn insert(&mut self, value: T) -> bool {
|
1113
|
-
self.map.insert(value, ()).is_none()
|
1114
|
-
}
|
1115
|
-
|
1116
|
-
/// Insert a value the set without checking if the value already exists in the set.
|
1117
|
-
///
|
1118
|
-
/// Returns a reference to the value just inserted.
|
1119
|
-
///
|
1120
|
-
/// This operation is safe if a value does not exist in the set.
|
1121
|
-
///
|
1122
|
-
/// However, if a value exists in the set already, the behavior is unspecified:
|
1123
|
-
/// this operation may panic, loop forever, or any following operation with the set
|
1124
|
-
/// may panic, loop forever or return arbitrary result.
|
1125
|
-
///
|
1126
|
-
/// That said, this operation (and following operations) are guaranteed to
|
1127
|
-
/// not violate memory safety.
|
1128
|
-
///
|
1129
|
-
/// This operation is faster than regular insert, because it does not perform
|
1130
|
-
/// lookup before insertion.
|
1131
|
-
///
|
1132
|
-
/// This operation is useful during initial population of the set.
|
1133
|
-
/// For example, when constructing a set from another set, we know
|
1134
|
-
/// that values are unique.
|
1135
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1136
|
-
pub fn insert_unique_unchecked(&mut self, value: T) -> &T {
|
1137
|
-
self.map.insert_unique_unchecked(value, ()).0
|
1138
|
-
}
|
1139
|
-
|
1140
|
-
/// Adds a value to the set, replacing the existing value, if any, that is equal to the given
|
1141
|
-
/// one. Returns the replaced value.
|
1142
|
-
///
|
1143
|
-
/// # Examples
|
1144
|
-
///
|
1145
|
-
/// ```
|
1146
|
-
/// use hashbrown::HashSet;
|
1147
|
-
///
|
1148
|
-
/// let mut set = HashSet::new();
|
1149
|
-
/// set.insert(Vec::<i32>::new());
|
1150
|
-
///
|
1151
|
-
/// assert_eq!(set.get(&[][..]).unwrap().capacity(), 0);
|
1152
|
-
/// set.replace(Vec::with_capacity(10));
|
1153
|
-
/// assert_eq!(set.get(&[][..]).unwrap().capacity(), 10);
|
1154
|
-
/// ```
|
1155
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1156
|
-
pub fn replace(&mut self, value: T) -> Option<T> {
|
1157
|
-
match self.map.entry(value) {
|
1158
|
-
map::Entry::Occupied(occupied) => Some(occupied.replace_key()),
|
1159
|
-
map::Entry::Vacant(vacant) => {
|
1160
|
-
vacant.insert(());
|
1161
|
-
None
|
1162
|
-
}
|
1163
|
-
}
|
1164
|
-
}
|
1165
|
-
|
1166
|
-
/// Removes a value from the set. Returns whether the value was
|
1167
|
-
/// present in the set.
|
1168
|
-
///
|
1169
|
-
/// The value may be any borrowed form of the set's value type, but
|
1170
|
-
/// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
|
1171
|
-
/// the value type.
|
1172
|
-
///
|
1173
|
-
/// # Examples
|
1174
|
-
///
|
1175
|
-
/// ```
|
1176
|
-
/// use hashbrown::HashSet;
|
1177
|
-
///
|
1178
|
-
/// let mut set = HashSet::new();
|
1179
|
-
///
|
1180
|
-
/// set.insert(2);
|
1181
|
-
/// assert_eq!(set.remove(&2), true);
|
1182
|
-
/// assert_eq!(set.remove(&2), false);
|
1183
|
-
/// ```
|
1184
|
-
///
|
1185
|
-
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
|
1186
|
-
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
|
1187
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1188
|
-
pub fn remove<Q: ?Sized>(&mut self, value: &Q) -> bool
|
1189
|
-
where
|
1190
|
-
Q: Hash + Equivalent<T>,
|
1191
|
-
{
|
1192
|
-
self.map.remove(value).is_some()
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
/// Removes and returns the value in the set, if any, that is equal to the given one.
|
1196
|
-
///
|
1197
|
-
/// The value may be any borrowed form of the set's value type, but
|
1198
|
-
/// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
|
1199
|
-
/// the value type.
|
1200
|
-
///
|
1201
|
-
/// # Examples
|
1202
|
-
///
|
1203
|
-
/// ```
|
1204
|
-
/// use hashbrown::HashSet;
|
1205
|
-
///
|
1206
|
-
/// let mut set: HashSet<_> = [1, 2, 3].iter().cloned().collect();
|
1207
|
-
/// assert_eq!(set.take(&2), Some(2));
|
1208
|
-
/// assert_eq!(set.take(&2), None);
|
1209
|
-
/// ```
|
1210
|
-
///
|
1211
|
-
/// [`Eq`]: https://doc.rust-lang.org/std/cmp/trait.Eq.html
|
1212
|
-
/// [`Hash`]: https://doc.rust-lang.org/std/hash/trait.Hash.html
|
1213
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1214
|
-
pub fn take<Q: ?Sized>(&mut self, value: &Q) -> Option<T>
|
1215
|
-
where
|
1216
|
-
Q: Hash + Equivalent<T>,
|
1217
|
-
{
|
1218
|
-
// Avoid `Option::map` because it bloats LLVM IR.
|
1219
|
-
match self.map.remove_entry(value) {
|
1220
|
-
Some((k, _)) => Some(k),
|
1221
|
-
None => None,
|
1222
|
-
}
|
1223
|
-
}
|
1224
|
-
|
1225
|
-
/// Returns a mutable reference to the [`RawTable`] used underneath [`HashSet`].
|
1226
|
-
/// This function is only available if the `raw` feature of the crate is enabled.
|
1227
|
-
///
|
1228
|
-
/// # Note
|
1229
|
-
///
|
1230
|
-
/// Calling this function is safe, but using the raw hash table API may require
|
1231
|
-
/// unsafe functions or blocks.
|
1232
|
-
///
|
1233
|
-
/// `RawTable` API gives the lowest level of control under the set that can be useful
|
1234
|
-
/// for extending the HashSet's API, but may lead to *[undefined behavior]*.
|
1235
|
-
///
|
1236
|
-
/// [`HashSet`]: struct.HashSet.html
|
1237
|
-
/// [`RawTable`]: crate::raw::RawTable
|
1238
|
-
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
|
1239
|
-
#[cfg(feature = "raw")]
|
1240
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1241
|
-
pub fn raw_table(&mut self) -> &mut RawTable<(T, ()), A> {
|
1242
|
-
self.map.raw_table()
|
1243
|
-
}
|
1244
|
-
}
|
1245
|
-
|
1246
|
-
impl<T, S, A> PartialEq for HashSet<T, S, A>
|
1247
|
-
where
|
1248
|
-
T: Eq + Hash,
|
1249
|
-
S: BuildHasher,
|
1250
|
-
A: Allocator + Clone,
|
1251
|
-
{
|
1252
|
-
fn eq(&self, other: &Self) -> bool {
|
1253
|
-
if self.len() != other.len() {
|
1254
|
-
return false;
|
1255
|
-
}
|
1256
|
-
|
1257
|
-
self.iter().all(|key| other.contains(key))
|
1258
|
-
}
|
1259
|
-
}
|
1260
|
-
|
1261
|
-
impl<T, S, A> Eq for HashSet<T, S, A>
|
1262
|
-
where
|
1263
|
-
T: Eq + Hash,
|
1264
|
-
S: BuildHasher,
|
1265
|
-
A: Allocator + Clone,
|
1266
|
-
{
|
1267
|
-
}
|
1268
|
-
|
1269
|
-
impl<T, S, A> fmt::Debug for HashSet<T, S, A>
|
1270
|
-
where
|
1271
|
-
T: fmt::Debug,
|
1272
|
-
A: Allocator + Clone,
|
1273
|
-
{
|
1274
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1275
|
-
f.debug_set().entries(self.iter()).finish()
|
1276
|
-
}
|
1277
|
-
}
|
1278
|
-
|
1279
|
-
impl<T, S, A> From<HashMap<T, (), S, A>> for HashSet<T, S, A>
|
1280
|
-
where
|
1281
|
-
A: Allocator + Clone,
|
1282
|
-
{
|
1283
|
-
fn from(map: HashMap<T, (), S, A>) -> Self {
|
1284
|
-
Self { map }
|
1285
|
-
}
|
1286
|
-
}
|
1287
|
-
|
1288
|
-
impl<T, S, A> FromIterator<T> for HashSet<T, S, A>
|
1289
|
-
where
|
1290
|
-
T: Eq + Hash,
|
1291
|
-
S: BuildHasher + Default,
|
1292
|
-
A: Default + Allocator + Clone,
|
1293
|
-
{
|
1294
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1295
|
-
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
|
1296
|
-
let mut set = Self::with_hasher_in(Default::default(), Default::default());
|
1297
|
-
set.extend(iter);
|
1298
|
-
set
|
1299
|
-
}
|
1300
|
-
}
|
1301
|
-
|
1302
|
-
// The default hasher is used to match the std implementation signature
|
1303
|
-
#[cfg(feature = "ahash")]
|
1304
|
-
impl<T, A, const N: usize> From<[T; N]> for HashSet<T, DefaultHashBuilder, A>
|
1305
|
-
where
|
1306
|
-
T: Eq + Hash,
|
1307
|
-
A: Default + Allocator + Clone,
|
1308
|
-
{
|
1309
|
-
/// # Examples
|
1310
|
-
///
|
1311
|
-
/// ```
|
1312
|
-
/// use hashbrown::HashSet;
|
1313
|
-
///
|
1314
|
-
/// let set1 = HashSet::from([1, 2, 3, 4]);
|
1315
|
-
/// let set2: HashSet<_> = [1, 2, 3, 4].into();
|
1316
|
-
/// assert_eq!(set1, set2);
|
1317
|
-
/// ```
|
1318
|
-
fn from(arr: [T; N]) -> Self {
|
1319
|
-
arr.into_iter().collect()
|
1320
|
-
}
|
1321
|
-
}
|
1322
|
-
|
1323
|
-
impl<T, S, A> Extend<T> for HashSet<T, S, A>
|
1324
|
-
where
|
1325
|
-
T: Eq + Hash,
|
1326
|
-
S: BuildHasher,
|
1327
|
-
A: Allocator + Clone,
|
1328
|
-
{
|
1329
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1330
|
-
fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
|
1331
|
-
self.map.extend(iter.into_iter().map(|k| (k, ())));
|
1332
|
-
}
|
1333
|
-
|
1334
|
-
#[inline]
|
1335
|
-
#[cfg(feature = "nightly")]
|
1336
|
-
fn extend_one(&mut self, k: T) {
|
1337
|
-
self.map.insert(k, ());
|
1338
|
-
}
|
1339
|
-
|
1340
|
-
#[inline]
|
1341
|
-
#[cfg(feature = "nightly")]
|
1342
|
-
fn extend_reserve(&mut self, additional: usize) {
|
1343
|
-
Extend::<(T, ())>::extend_reserve(&mut self.map, additional);
|
1344
|
-
}
|
1345
|
-
}
|
1346
|
-
|
1347
|
-
impl<'a, T, S, A> Extend<&'a T> for HashSet<T, S, A>
|
1348
|
-
where
|
1349
|
-
T: 'a + Eq + Hash + Copy,
|
1350
|
-
S: BuildHasher,
|
1351
|
-
A: Allocator + Clone,
|
1352
|
-
{
|
1353
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1354
|
-
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
|
1355
|
-
self.extend(iter.into_iter().copied());
|
1356
|
-
}
|
1357
|
-
|
1358
|
-
#[inline]
|
1359
|
-
#[cfg(feature = "nightly")]
|
1360
|
-
fn extend_one(&mut self, k: &'a T) {
|
1361
|
-
self.map.insert(*k, ());
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
#[inline]
|
1365
|
-
#[cfg(feature = "nightly")]
|
1366
|
-
fn extend_reserve(&mut self, additional: usize) {
|
1367
|
-
Extend::<(T, ())>::extend_reserve(&mut self.map, additional);
|
1368
|
-
}
|
1369
|
-
}
|
1370
|
-
|
1371
|
-
impl<T, S, A> Default for HashSet<T, S, A>
|
1372
|
-
where
|
1373
|
-
S: Default,
|
1374
|
-
A: Default + Allocator + Clone,
|
1375
|
-
{
|
1376
|
-
/// Creates an empty `HashSet<T, S>` with the `Default` value for the hasher.
|
1377
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1378
|
-
fn default() -> Self {
|
1379
|
-
Self {
|
1380
|
-
map: HashMap::default(),
|
1381
|
-
}
|
1382
|
-
}
|
1383
|
-
}
|
1384
|
-
|
1385
|
-
impl<T, S, A> BitOr<&HashSet<T, S, A>> for &HashSet<T, S, A>
|
1386
|
-
where
|
1387
|
-
T: Eq + Hash + Clone,
|
1388
|
-
S: BuildHasher + Default,
|
1389
|
-
A: Allocator + Clone,
|
1390
|
-
{
|
1391
|
-
type Output = HashSet<T, S>;
|
1392
|
-
|
1393
|
-
/// Returns the union of `self` and `rhs` as a new `HashSet<T, S>`.
|
1394
|
-
///
|
1395
|
-
/// # Examples
|
1396
|
-
///
|
1397
|
-
/// ```
|
1398
|
-
/// use hashbrown::HashSet;
|
1399
|
-
///
|
1400
|
-
/// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
|
1401
|
-
/// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
|
1402
|
-
///
|
1403
|
-
/// let set = &a | &b;
|
1404
|
-
///
|
1405
|
-
/// let mut i = 0;
|
1406
|
-
/// let expected = [1, 2, 3, 4, 5];
|
1407
|
-
/// for x in &set {
|
1408
|
-
/// assert!(expected.contains(x));
|
1409
|
-
/// i += 1;
|
1410
|
-
/// }
|
1411
|
-
/// assert_eq!(i, expected.len());
|
1412
|
-
/// ```
|
1413
|
-
fn bitor(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S> {
|
1414
|
-
self.union(rhs).cloned().collect()
|
1415
|
-
}
|
1416
|
-
}
|
1417
|
-
|
1418
|
-
impl<T, S, A> BitAnd<&HashSet<T, S, A>> for &HashSet<T, S, A>
|
1419
|
-
where
|
1420
|
-
T: Eq + Hash + Clone,
|
1421
|
-
S: BuildHasher + Default,
|
1422
|
-
A: Allocator + Clone,
|
1423
|
-
{
|
1424
|
-
type Output = HashSet<T, S>;
|
1425
|
-
|
1426
|
-
/// Returns the intersection of `self` and `rhs` as a new `HashSet<T, S>`.
|
1427
|
-
///
|
1428
|
-
/// # Examples
|
1429
|
-
///
|
1430
|
-
/// ```
|
1431
|
-
/// use hashbrown::HashSet;
|
1432
|
-
///
|
1433
|
-
/// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
|
1434
|
-
/// let b: HashSet<_> = vec![2, 3, 4].into_iter().collect();
|
1435
|
-
///
|
1436
|
-
/// let set = &a & &b;
|
1437
|
-
///
|
1438
|
-
/// let mut i = 0;
|
1439
|
-
/// let expected = [2, 3];
|
1440
|
-
/// for x in &set {
|
1441
|
-
/// assert!(expected.contains(x));
|
1442
|
-
/// i += 1;
|
1443
|
-
/// }
|
1444
|
-
/// assert_eq!(i, expected.len());
|
1445
|
-
/// ```
|
1446
|
-
fn bitand(self, rhs: &HashSet<T, S, A>) -> HashSet<T, S> {
|
1447
|
-
self.intersection(rhs).cloned().collect()
|
1448
|
-
}
|
1449
|
-
}
|
1450
|
-
|
1451
|
-
impl<T, S> BitXor<&HashSet<T, S>> for &HashSet<T, S>
|
1452
|
-
where
|
1453
|
-
T: Eq + Hash + Clone,
|
1454
|
-
S: BuildHasher + Default,
|
1455
|
-
{
|
1456
|
-
type Output = HashSet<T, S>;
|
1457
|
-
|
1458
|
-
/// Returns the symmetric difference of `self` and `rhs` as a new `HashSet<T, S>`.
|
1459
|
-
///
|
1460
|
-
/// # Examples
|
1461
|
-
///
|
1462
|
-
/// ```
|
1463
|
-
/// use hashbrown::HashSet;
|
1464
|
-
///
|
1465
|
-
/// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
|
1466
|
-
/// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
|
1467
|
-
///
|
1468
|
-
/// let set = &a ^ &b;
|
1469
|
-
///
|
1470
|
-
/// let mut i = 0;
|
1471
|
-
/// let expected = [1, 2, 4, 5];
|
1472
|
-
/// for x in &set {
|
1473
|
-
/// assert!(expected.contains(x));
|
1474
|
-
/// i += 1;
|
1475
|
-
/// }
|
1476
|
-
/// assert_eq!(i, expected.len());
|
1477
|
-
/// ```
|
1478
|
-
fn bitxor(self, rhs: &HashSet<T, S>) -> HashSet<T, S> {
|
1479
|
-
self.symmetric_difference(rhs).cloned().collect()
|
1480
|
-
}
|
1481
|
-
}
|
1482
|
-
|
1483
|
-
impl<T, S> Sub<&HashSet<T, S>> for &HashSet<T, S>
|
1484
|
-
where
|
1485
|
-
T: Eq + Hash + Clone,
|
1486
|
-
S: BuildHasher + Default,
|
1487
|
-
{
|
1488
|
-
type Output = HashSet<T, S>;
|
1489
|
-
|
1490
|
-
/// Returns the difference of `self` and `rhs` as a new `HashSet<T, S>`.
|
1491
|
-
///
|
1492
|
-
/// # Examples
|
1493
|
-
///
|
1494
|
-
/// ```
|
1495
|
-
/// use hashbrown::HashSet;
|
1496
|
-
///
|
1497
|
-
/// let a: HashSet<_> = vec![1, 2, 3].into_iter().collect();
|
1498
|
-
/// let b: HashSet<_> = vec![3, 4, 5].into_iter().collect();
|
1499
|
-
///
|
1500
|
-
/// let set = &a - &b;
|
1501
|
-
///
|
1502
|
-
/// let mut i = 0;
|
1503
|
-
/// let expected = [1, 2];
|
1504
|
-
/// for x in &set {
|
1505
|
-
/// assert!(expected.contains(x));
|
1506
|
-
/// i += 1;
|
1507
|
-
/// }
|
1508
|
-
/// assert_eq!(i, expected.len());
|
1509
|
-
/// ```
|
1510
|
-
fn sub(self, rhs: &HashSet<T, S>) -> HashSet<T, S> {
|
1511
|
-
self.difference(rhs).cloned().collect()
|
1512
|
-
}
|
1513
|
-
}
|
1514
|
-
|
1515
|
-
/// An iterator over the items of a `HashSet`.
|
1516
|
-
///
|
1517
|
-
/// This `struct` is created by the [`iter`] method on [`HashSet`].
|
1518
|
-
/// See its documentation for more.
|
1519
|
-
///
|
1520
|
-
/// [`HashSet`]: struct.HashSet.html
|
1521
|
-
/// [`iter`]: struct.HashSet.html#method.iter
|
1522
|
-
pub struct Iter<'a, K> {
|
1523
|
-
iter: Keys<'a, K, ()>,
|
1524
|
-
}
|
1525
|
-
|
1526
|
-
/// An owning iterator over the items of a `HashSet`.
|
1527
|
-
///
|
1528
|
-
/// This `struct` is created by the [`into_iter`] method on [`HashSet`]
|
1529
|
-
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
1530
|
-
///
|
1531
|
-
/// [`HashSet`]: struct.HashSet.html
|
1532
|
-
/// [`into_iter`]: struct.HashSet.html#method.into_iter
|
1533
|
-
pub struct IntoIter<K, A: Allocator + Clone = Global> {
|
1534
|
-
iter: map::IntoIter<K, (), A>,
|
1535
|
-
}
|
1536
|
-
|
1537
|
-
/// A draining iterator over the items of a `HashSet`.
|
1538
|
-
///
|
1539
|
-
/// This `struct` is created by the [`drain`] method on [`HashSet`].
|
1540
|
-
/// See its documentation for more.
|
1541
|
-
///
|
1542
|
-
/// [`HashSet`]: struct.HashSet.html
|
1543
|
-
/// [`drain`]: struct.HashSet.html#method.drain
|
1544
|
-
pub struct Drain<'a, K, A: Allocator + Clone = Global> {
|
1545
|
-
iter: map::Drain<'a, K, (), A>,
|
1546
|
-
}
|
1547
|
-
|
1548
|
-
/// A draining iterator over entries of a `HashSet` which don't satisfy the predicate `f`.
|
1549
|
-
///
|
1550
|
-
/// This `struct` is created by the [`drain_filter`] method on [`HashSet`]. See its
|
1551
|
-
/// documentation for more.
|
1552
|
-
///
|
1553
|
-
/// [`drain_filter`]: struct.HashSet.html#method.drain_filter
|
1554
|
-
/// [`HashSet`]: struct.HashSet.html
|
1555
|
-
pub struct DrainFilter<'a, K, F, A: Allocator + Clone = Global>
|
1556
|
-
where
|
1557
|
-
F: FnMut(&K) -> bool,
|
1558
|
-
{
|
1559
|
-
f: F,
|
1560
|
-
inner: DrainFilterInner<'a, K, (), A>,
|
1561
|
-
}
|
1562
|
-
|
1563
|
-
/// A lazy iterator producing elements in the intersection of `HashSet`s.
|
1564
|
-
///
|
1565
|
-
/// This `struct` is created by the [`intersection`] method on [`HashSet`].
|
1566
|
-
/// See its documentation for more.
|
1567
|
-
///
|
1568
|
-
/// [`HashSet`]: struct.HashSet.html
|
1569
|
-
/// [`intersection`]: struct.HashSet.html#method.intersection
|
1570
|
-
pub struct Intersection<'a, T, S, A: Allocator + Clone = Global> {
|
1571
|
-
// iterator of the first set
|
1572
|
-
iter: Iter<'a, T>,
|
1573
|
-
// the second set
|
1574
|
-
other: &'a HashSet<T, S, A>,
|
1575
|
-
}
|
1576
|
-
|
1577
|
-
/// A lazy iterator producing elements in the difference of `HashSet`s.
|
1578
|
-
///
|
1579
|
-
/// This `struct` is created by the [`difference`] method on [`HashSet`].
|
1580
|
-
/// See its documentation for more.
|
1581
|
-
///
|
1582
|
-
/// [`HashSet`]: struct.HashSet.html
|
1583
|
-
/// [`difference`]: struct.HashSet.html#method.difference
|
1584
|
-
pub struct Difference<'a, T, S, A: Allocator + Clone = Global> {
|
1585
|
-
// iterator of the first set
|
1586
|
-
iter: Iter<'a, T>,
|
1587
|
-
// the second set
|
1588
|
-
other: &'a HashSet<T, S, A>,
|
1589
|
-
}
|
1590
|
-
|
1591
|
-
/// A lazy iterator producing elements in the symmetric difference of `HashSet`s.
|
1592
|
-
///
|
1593
|
-
/// This `struct` is created by the [`symmetric_difference`] method on
|
1594
|
-
/// [`HashSet`]. See its documentation for more.
|
1595
|
-
///
|
1596
|
-
/// [`HashSet`]: struct.HashSet.html
|
1597
|
-
/// [`symmetric_difference`]: struct.HashSet.html#method.symmetric_difference
|
1598
|
-
pub struct SymmetricDifference<'a, T, S, A: Allocator + Clone = Global> {
|
1599
|
-
iter: Chain<Difference<'a, T, S, A>, Difference<'a, T, S, A>>,
|
1600
|
-
}
|
1601
|
-
|
1602
|
-
/// A lazy iterator producing elements in the union of `HashSet`s.
|
1603
|
-
///
|
1604
|
-
/// This `struct` is created by the [`union`] method on [`HashSet`].
|
1605
|
-
/// See its documentation for more.
|
1606
|
-
///
|
1607
|
-
/// [`HashSet`]: struct.HashSet.html
|
1608
|
-
/// [`union`]: struct.HashSet.html#method.union
|
1609
|
-
pub struct Union<'a, T, S, A: Allocator + Clone = Global> {
|
1610
|
-
iter: Chain<Iter<'a, T>, Difference<'a, T, S, A>>,
|
1611
|
-
}
|
1612
|
-
|
1613
|
-
impl<'a, T, S, A: Allocator + Clone> IntoIterator for &'a HashSet<T, S, A> {
|
1614
|
-
type Item = &'a T;
|
1615
|
-
type IntoIter = Iter<'a, T>;
|
1616
|
-
|
1617
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1618
|
-
fn into_iter(self) -> Iter<'a, T> {
|
1619
|
-
self.iter()
|
1620
|
-
}
|
1621
|
-
}
|
1622
|
-
|
1623
|
-
impl<T, S, A: Allocator + Clone> IntoIterator for HashSet<T, S, A> {
|
1624
|
-
type Item = T;
|
1625
|
-
type IntoIter = IntoIter<T, A>;
|
1626
|
-
|
1627
|
-
/// Creates a consuming iterator, that is, one that moves each value out
|
1628
|
-
/// of the set in arbitrary order. The set cannot be used after calling
|
1629
|
-
/// this.
|
1630
|
-
///
|
1631
|
-
/// # Examples
|
1632
|
-
///
|
1633
|
-
/// ```
|
1634
|
-
/// use hashbrown::HashSet;
|
1635
|
-
/// let mut set = HashSet::new();
|
1636
|
-
/// set.insert("a".to_string());
|
1637
|
-
/// set.insert("b".to_string());
|
1638
|
-
///
|
1639
|
-
/// // Not possible to collect to a Vec<String> with a regular `.iter()`.
|
1640
|
-
/// let v: Vec<String> = set.into_iter().collect();
|
1641
|
-
///
|
1642
|
-
/// // Will print in an arbitrary order.
|
1643
|
-
/// for x in &v {
|
1644
|
-
/// println!("{}", x);
|
1645
|
-
/// }
|
1646
|
-
/// ```
|
1647
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1648
|
-
fn into_iter(self) -> IntoIter<T, A> {
|
1649
|
-
IntoIter {
|
1650
|
-
iter: self.map.into_iter(),
|
1651
|
-
}
|
1652
|
-
}
|
1653
|
-
}
|
1654
|
-
|
1655
|
-
impl<K> Clone for Iter<'_, K> {
|
1656
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1657
|
-
fn clone(&self) -> Self {
|
1658
|
-
Iter {
|
1659
|
-
iter: self.iter.clone(),
|
1660
|
-
}
|
1661
|
-
}
|
1662
|
-
}
|
1663
|
-
impl<'a, K> Iterator for Iter<'a, K> {
|
1664
|
-
type Item = &'a K;
|
1665
|
-
|
1666
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1667
|
-
fn next(&mut self) -> Option<&'a K> {
|
1668
|
-
self.iter.next()
|
1669
|
-
}
|
1670
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1671
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1672
|
-
self.iter.size_hint()
|
1673
|
-
}
|
1674
|
-
}
|
1675
|
-
impl<'a, K> ExactSizeIterator for Iter<'a, K> {
|
1676
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1677
|
-
fn len(&self) -> usize {
|
1678
|
-
self.iter.len()
|
1679
|
-
}
|
1680
|
-
}
|
1681
|
-
impl<K> FusedIterator for Iter<'_, K> {}
|
1682
|
-
|
1683
|
-
impl<K: fmt::Debug> fmt::Debug for Iter<'_, K> {
|
1684
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1685
|
-
f.debug_list().entries(self.clone()).finish()
|
1686
|
-
}
|
1687
|
-
}
|
1688
|
-
|
1689
|
-
impl<K, A: Allocator + Clone> Iterator for IntoIter<K, A> {
|
1690
|
-
type Item = K;
|
1691
|
-
|
1692
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1693
|
-
fn next(&mut self) -> Option<K> {
|
1694
|
-
// Avoid `Option::map` because it bloats LLVM IR.
|
1695
|
-
match self.iter.next() {
|
1696
|
-
Some((k, _)) => Some(k),
|
1697
|
-
None => None,
|
1698
|
-
}
|
1699
|
-
}
|
1700
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1701
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1702
|
-
self.iter.size_hint()
|
1703
|
-
}
|
1704
|
-
}
|
1705
|
-
impl<K, A: Allocator + Clone> ExactSizeIterator for IntoIter<K, A> {
|
1706
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1707
|
-
fn len(&self) -> usize {
|
1708
|
-
self.iter.len()
|
1709
|
-
}
|
1710
|
-
}
|
1711
|
-
impl<K, A: Allocator + Clone> FusedIterator for IntoIter<K, A> {}
|
1712
|
-
|
1713
|
-
impl<K: fmt::Debug, A: Allocator + Clone> fmt::Debug for IntoIter<K, A> {
|
1714
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1715
|
-
let entries_iter = self.iter.iter().map(|(k, _)| k);
|
1716
|
-
f.debug_list().entries(entries_iter).finish()
|
1717
|
-
}
|
1718
|
-
}
|
1719
|
-
|
1720
|
-
impl<K, A: Allocator + Clone> Iterator for Drain<'_, K, A> {
|
1721
|
-
type Item = K;
|
1722
|
-
|
1723
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1724
|
-
fn next(&mut self) -> Option<K> {
|
1725
|
-
// Avoid `Option::map` because it bloats LLVM IR.
|
1726
|
-
match self.iter.next() {
|
1727
|
-
Some((k, _)) => Some(k),
|
1728
|
-
None => None,
|
1729
|
-
}
|
1730
|
-
}
|
1731
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1732
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1733
|
-
self.iter.size_hint()
|
1734
|
-
}
|
1735
|
-
}
|
1736
|
-
impl<K, A: Allocator + Clone> ExactSizeIterator for Drain<'_, K, A> {
|
1737
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1738
|
-
fn len(&self) -> usize {
|
1739
|
-
self.iter.len()
|
1740
|
-
}
|
1741
|
-
}
|
1742
|
-
impl<K, A: Allocator + Clone> FusedIterator for Drain<'_, K, A> {}
|
1743
|
-
|
1744
|
-
impl<K: fmt::Debug, A: Allocator + Clone> fmt::Debug for Drain<'_, K, A> {
|
1745
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1746
|
-
let entries_iter = self.iter.iter().map(|(k, _)| k);
|
1747
|
-
f.debug_list().entries(entries_iter).finish()
|
1748
|
-
}
|
1749
|
-
}
|
1750
|
-
|
1751
|
-
impl<'a, K, F, A: Allocator + Clone> Drop for DrainFilter<'a, K, F, A>
|
1752
|
-
where
|
1753
|
-
F: FnMut(&K) -> bool,
|
1754
|
-
{
|
1755
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1756
|
-
fn drop(&mut self) {
|
1757
|
-
while let Some(item) = self.next() {
|
1758
|
-
let guard = ConsumeAllOnDrop(self);
|
1759
|
-
drop(item);
|
1760
|
-
mem::forget(guard);
|
1761
|
-
}
|
1762
|
-
}
|
1763
|
-
}
|
1764
|
-
|
1765
|
-
impl<K, F, A: Allocator + Clone> Iterator for DrainFilter<'_, K, F, A>
|
1766
|
-
where
|
1767
|
-
F: FnMut(&K) -> bool,
|
1768
|
-
{
|
1769
|
-
type Item = K;
|
1770
|
-
|
1771
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1772
|
-
fn next(&mut self) -> Option<Self::Item> {
|
1773
|
-
let f = &mut self.f;
|
1774
|
-
let (k, _) = self.inner.next(&mut |k, _| f(k))?;
|
1775
|
-
Some(k)
|
1776
|
-
}
|
1777
|
-
|
1778
|
-
#[inline]
|
1779
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1780
|
-
(0, self.inner.iter.size_hint().1)
|
1781
|
-
}
|
1782
|
-
}
|
1783
|
-
|
1784
|
-
impl<K, F, A: Allocator + Clone> FusedIterator for DrainFilter<'_, K, F, A> where
|
1785
|
-
F: FnMut(&K) -> bool
|
1786
|
-
{
|
1787
|
-
}
|
1788
|
-
|
1789
|
-
impl<T, S, A: Allocator + Clone> Clone for Intersection<'_, T, S, A> {
|
1790
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1791
|
-
fn clone(&self) -> Self {
|
1792
|
-
Intersection {
|
1793
|
-
iter: self.iter.clone(),
|
1794
|
-
..*self
|
1795
|
-
}
|
1796
|
-
}
|
1797
|
-
}
|
1798
|
-
|
1799
|
-
impl<'a, T, S, A> Iterator for Intersection<'a, T, S, A>
|
1800
|
-
where
|
1801
|
-
T: Eq + Hash,
|
1802
|
-
S: BuildHasher,
|
1803
|
-
A: Allocator + Clone,
|
1804
|
-
{
|
1805
|
-
type Item = &'a T;
|
1806
|
-
|
1807
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1808
|
-
fn next(&mut self) -> Option<&'a T> {
|
1809
|
-
loop {
|
1810
|
-
let elt = self.iter.next()?;
|
1811
|
-
if self.other.contains(elt) {
|
1812
|
-
return Some(elt);
|
1813
|
-
}
|
1814
|
-
}
|
1815
|
-
}
|
1816
|
-
|
1817
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1818
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1819
|
-
let (_, upper) = self.iter.size_hint();
|
1820
|
-
(0, upper)
|
1821
|
-
}
|
1822
|
-
}
|
1823
|
-
|
1824
|
-
impl<T, S, A> fmt::Debug for Intersection<'_, T, S, A>
|
1825
|
-
where
|
1826
|
-
T: fmt::Debug + Eq + Hash,
|
1827
|
-
S: BuildHasher,
|
1828
|
-
A: Allocator + Clone,
|
1829
|
-
{
|
1830
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1831
|
-
f.debug_list().entries(self.clone()).finish()
|
1832
|
-
}
|
1833
|
-
}
|
1834
|
-
|
1835
|
-
impl<T, S, A> FusedIterator for Intersection<'_, T, S, A>
|
1836
|
-
where
|
1837
|
-
T: Eq + Hash,
|
1838
|
-
S: BuildHasher,
|
1839
|
-
A: Allocator + Clone,
|
1840
|
-
{
|
1841
|
-
}
|
1842
|
-
|
1843
|
-
impl<T, S, A: Allocator + Clone> Clone for Difference<'_, T, S, A> {
|
1844
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1845
|
-
fn clone(&self) -> Self {
|
1846
|
-
Difference {
|
1847
|
-
iter: self.iter.clone(),
|
1848
|
-
..*self
|
1849
|
-
}
|
1850
|
-
}
|
1851
|
-
}
|
1852
|
-
|
1853
|
-
impl<'a, T, S, A> Iterator for Difference<'a, T, S, A>
|
1854
|
-
where
|
1855
|
-
T: Eq + Hash,
|
1856
|
-
S: BuildHasher,
|
1857
|
-
A: Allocator + Clone,
|
1858
|
-
{
|
1859
|
-
type Item = &'a T;
|
1860
|
-
|
1861
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1862
|
-
fn next(&mut self) -> Option<&'a T> {
|
1863
|
-
loop {
|
1864
|
-
let elt = self.iter.next()?;
|
1865
|
-
if !self.other.contains(elt) {
|
1866
|
-
return Some(elt);
|
1867
|
-
}
|
1868
|
-
}
|
1869
|
-
}
|
1870
|
-
|
1871
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1872
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1873
|
-
let (_, upper) = self.iter.size_hint();
|
1874
|
-
(0, upper)
|
1875
|
-
}
|
1876
|
-
}
|
1877
|
-
|
1878
|
-
impl<T, S, A> FusedIterator for Difference<'_, T, S, A>
|
1879
|
-
where
|
1880
|
-
T: Eq + Hash,
|
1881
|
-
S: BuildHasher,
|
1882
|
-
A: Allocator + Clone,
|
1883
|
-
{
|
1884
|
-
}
|
1885
|
-
|
1886
|
-
impl<T, S, A> fmt::Debug for Difference<'_, T, S, A>
|
1887
|
-
where
|
1888
|
-
T: fmt::Debug + Eq + Hash,
|
1889
|
-
S: BuildHasher,
|
1890
|
-
A: Allocator + Clone,
|
1891
|
-
{
|
1892
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1893
|
-
f.debug_list().entries(self.clone()).finish()
|
1894
|
-
}
|
1895
|
-
}
|
1896
|
-
|
1897
|
-
impl<T, S, A: Allocator + Clone> Clone for SymmetricDifference<'_, T, S, A> {
|
1898
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1899
|
-
fn clone(&self) -> Self {
|
1900
|
-
SymmetricDifference {
|
1901
|
-
iter: self.iter.clone(),
|
1902
|
-
}
|
1903
|
-
}
|
1904
|
-
}
|
1905
|
-
|
1906
|
-
impl<'a, T, S, A> Iterator for SymmetricDifference<'a, T, S, A>
|
1907
|
-
where
|
1908
|
-
T: Eq + Hash,
|
1909
|
-
S: BuildHasher,
|
1910
|
-
A: Allocator + Clone,
|
1911
|
-
{
|
1912
|
-
type Item = &'a T;
|
1913
|
-
|
1914
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1915
|
-
fn next(&mut self) -> Option<&'a T> {
|
1916
|
-
self.iter.next()
|
1917
|
-
}
|
1918
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1919
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1920
|
-
self.iter.size_hint()
|
1921
|
-
}
|
1922
|
-
}
|
1923
|
-
|
1924
|
-
impl<T, S, A> FusedIterator for SymmetricDifference<'_, T, S, A>
|
1925
|
-
where
|
1926
|
-
T: Eq + Hash,
|
1927
|
-
S: BuildHasher,
|
1928
|
-
A: Allocator + Clone,
|
1929
|
-
{
|
1930
|
-
}
|
1931
|
-
|
1932
|
-
impl<T, S, A> fmt::Debug for SymmetricDifference<'_, T, S, A>
|
1933
|
-
where
|
1934
|
-
T: fmt::Debug + Eq + Hash,
|
1935
|
-
S: BuildHasher,
|
1936
|
-
A: Allocator + Clone,
|
1937
|
-
{
|
1938
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1939
|
-
f.debug_list().entries(self.clone()).finish()
|
1940
|
-
}
|
1941
|
-
}
|
1942
|
-
|
1943
|
-
impl<T, S, A: Allocator + Clone> Clone for Union<'_, T, S, A> {
|
1944
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1945
|
-
fn clone(&self) -> Self {
|
1946
|
-
Union {
|
1947
|
-
iter: self.iter.clone(),
|
1948
|
-
}
|
1949
|
-
}
|
1950
|
-
}
|
1951
|
-
|
1952
|
-
impl<T, S, A> FusedIterator for Union<'_, T, S, A>
|
1953
|
-
where
|
1954
|
-
T: Eq + Hash,
|
1955
|
-
S: BuildHasher,
|
1956
|
-
A: Allocator + Clone,
|
1957
|
-
{
|
1958
|
-
}
|
1959
|
-
|
1960
|
-
impl<T, S, A> fmt::Debug for Union<'_, T, S, A>
|
1961
|
-
where
|
1962
|
-
T: fmt::Debug + Eq + Hash,
|
1963
|
-
S: BuildHasher,
|
1964
|
-
A: Allocator + Clone,
|
1965
|
-
{
|
1966
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1967
|
-
f.debug_list().entries(self.clone()).finish()
|
1968
|
-
}
|
1969
|
-
}
|
1970
|
-
|
1971
|
-
impl<'a, T, S, A> Iterator for Union<'a, T, S, A>
|
1972
|
-
where
|
1973
|
-
T: Eq + Hash,
|
1974
|
-
S: BuildHasher,
|
1975
|
-
A: Allocator + Clone,
|
1976
|
-
{
|
1977
|
-
type Item = &'a T;
|
1978
|
-
|
1979
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1980
|
-
fn next(&mut self) -> Option<&'a T> {
|
1981
|
-
self.iter.next()
|
1982
|
-
}
|
1983
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
1984
|
-
fn size_hint(&self) -> (usize, Option<usize>) {
|
1985
|
-
self.iter.size_hint()
|
1986
|
-
}
|
1987
|
-
}
|
1988
|
-
|
1989
|
-
/// A view into a single entry in a set, which may either be vacant or occupied.
|
1990
|
-
///
|
1991
|
-
/// This `enum` is constructed from the [`entry`] method on [`HashSet`].
|
1992
|
-
///
|
1993
|
-
/// [`HashSet`]: struct.HashSet.html
|
1994
|
-
/// [`entry`]: struct.HashSet.html#method.entry
|
1995
|
-
///
|
1996
|
-
/// # Examples
|
1997
|
-
///
|
1998
|
-
/// ```
|
1999
|
-
/// use hashbrown::hash_set::{Entry, HashSet, OccupiedEntry};
|
2000
|
-
///
|
2001
|
-
/// let mut set = HashSet::new();
|
2002
|
-
/// set.extend(["a", "b", "c"]);
|
2003
|
-
/// assert_eq!(set.len(), 3);
|
2004
|
-
///
|
2005
|
-
/// // Existing value (insert)
|
2006
|
-
/// let entry: Entry<_, _> = set.entry("a");
|
2007
|
-
/// let _raw_o: OccupiedEntry<_, _> = entry.insert();
|
2008
|
-
/// assert_eq!(set.len(), 3);
|
2009
|
-
/// // Nonexistent value (insert)
|
2010
|
-
/// set.entry("d").insert();
|
2011
|
-
///
|
2012
|
-
/// // Existing value (or_insert)
|
2013
|
-
/// set.entry("b").or_insert();
|
2014
|
-
/// // Nonexistent value (or_insert)
|
2015
|
-
/// set.entry("e").or_insert();
|
2016
|
-
///
|
2017
|
-
/// println!("Our HashSet: {:?}", set);
|
2018
|
-
///
|
2019
|
-
/// let mut vec: Vec<_> = set.iter().copied().collect();
|
2020
|
-
/// // The `Iter` iterator produces items in arbitrary order, so the
|
2021
|
-
/// // items must be sorted to test them against a sorted array.
|
2022
|
-
/// vec.sort_unstable();
|
2023
|
-
/// assert_eq!(vec, ["a", "b", "c", "d", "e"]);
|
2024
|
-
/// ```
|
2025
|
-
pub enum Entry<'a, T, S, A = Global>
|
2026
|
-
where
|
2027
|
-
A: Allocator + Clone,
|
2028
|
-
{
|
2029
|
-
/// An occupied entry.
|
2030
|
-
///
|
2031
|
-
/// # Examples
|
2032
|
-
///
|
2033
|
-
/// ```
|
2034
|
-
/// use hashbrown::hash_set::{Entry, HashSet};
|
2035
|
-
/// let mut set: HashSet<_> = ["a", "b"].into();
|
2036
|
-
///
|
2037
|
-
/// match set.entry("a") {
|
2038
|
-
/// Entry::Vacant(_) => unreachable!(),
|
2039
|
-
/// Entry::Occupied(_) => { }
|
2040
|
-
/// }
|
2041
|
-
/// ```
|
2042
|
-
Occupied(OccupiedEntry<'a, T, S, A>),
|
2043
|
-
|
2044
|
-
/// A vacant entry.
|
2045
|
-
///
|
2046
|
-
/// # Examples
|
2047
|
-
///
|
2048
|
-
/// ```
|
2049
|
-
/// use hashbrown::hash_set::{Entry, HashSet};
|
2050
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2051
|
-
///
|
2052
|
-
/// match set.entry("a") {
|
2053
|
-
/// Entry::Occupied(_) => unreachable!(),
|
2054
|
-
/// Entry::Vacant(_) => { }
|
2055
|
-
/// }
|
2056
|
-
/// ```
|
2057
|
-
Vacant(VacantEntry<'a, T, S, A>),
|
2058
|
-
}
|
2059
|
-
|
2060
|
-
impl<T: fmt::Debug, S, A: Allocator + Clone> fmt::Debug for Entry<'_, T, S, A> {
|
2061
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2062
|
-
match *self {
|
2063
|
-
Entry::Vacant(ref v) => f.debug_tuple("Entry").field(v).finish(),
|
2064
|
-
Entry::Occupied(ref o) => f.debug_tuple("Entry").field(o).finish(),
|
2065
|
-
}
|
2066
|
-
}
|
2067
|
-
}
|
2068
|
-
|
2069
|
-
/// A view into an occupied entry in a `HashSet`.
|
2070
|
-
/// It is part of the [`Entry`] enum.
|
2071
|
-
///
|
2072
|
-
/// [`Entry`]: enum.Entry.html
|
2073
|
-
///
|
2074
|
-
/// # Examples
|
2075
|
-
///
|
2076
|
-
/// ```
|
2077
|
-
/// use hashbrown::hash_set::{Entry, HashSet, OccupiedEntry};
|
2078
|
-
///
|
2079
|
-
/// let mut set = HashSet::new();
|
2080
|
-
/// set.extend(["a", "b", "c"]);
|
2081
|
-
///
|
2082
|
-
/// let _entry_o: OccupiedEntry<_, _> = set.entry("a").insert();
|
2083
|
-
/// assert_eq!(set.len(), 3);
|
2084
|
-
///
|
2085
|
-
/// // Existing key
|
2086
|
-
/// match set.entry("a") {
|
2087
|
-
/// Entry::Vacant(_) => unreachable!(),
|
2088
|
-
/// Entry::Occupied(view) => {
|
2089
|
-
/// assert_eq!(view.get(), &"a");
|
2090
|
-
/// }
|
2091
|
-
/// }
|
2092
|
-
///
|
2093
|
-
/// assert_eq!(set.len(), 3);
|
2094
|
-
///
|
2095
|
-
/// // Existing key (take)
|
2096
|
-
/// match set.entry("c") {
|
2097
|
-
/// Entry::Vacant(_) => unreachable!(),
|
2098
|
-
/// Entry::Occupied(view) => {
|
2099
|
-
/// assert_eq!(view.remove(), "c");
|
2100
|
-
/// }
|
2101
|
-
/// }
|
2102
|
-
/// assert_eq!(set.get(&"c"), None);
|
2103
|
-
/// assert_eq!(set.len(), 2);
|
2104
|
-
/// ```
|
2105
|
-
pub struct OccupiedEntry<'a, T, S, A: Allocator + Clone = Global> {
|
2106
|
-
inner: map::OccupiedEntry<'a, T, (), S, A>,
|
2107
|
-
}
|
2108
|
-
|
2109
|
-
impl<T: fmt::Debug, S, A: Allocator + Clone> fmt::Debug for OccupiedEntry<'_, T, S, A> {
|
2110
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2111
|
-
f.debug_struct("OccupiedEntry")
|
2112
|
-
.field("value", self.get())
|
2113
|
-
.finish()
|
2114
|
-
}
|
2115
|
-
}
|
2116
|
-
|
2117
|
-
/// A view into a vacant entry in a `HashSet`.
|
2118
|
-
/// It is part of the [`Entry`] enum.
|
2119
|
-
///
|
2120
|
-
/// [`Entry`]: enum.Entry.html
|
2121
|
-
///
|
2122
|
-
/// # Examples
|
2123
|
-
///
|
2124
|
-
/// ```
|
2125
|
-
/// use hashbrown::hash_set::{Entry, HashSet, VacantEntry};
|
2126
|
-
///
|
2127
|
-
/// let mut set = HashSet::<&str>::new();
|
2128
|
-
///
|
2129
|
-
/// let entry_v: VacantEntry<_, _> = match set.entry("a") {
|
2130
|
-
/// Entry::Vacant(view) => view,
|
2131
|
-
/// Entry::Occupied(_) => unreachable!(),
|
2132
|
-
/// };
|
2133
|
-
/// entry_v.insert();
|
2134
|
-
/// assert!(set.contains("a") && set.len() == 1);
|
2135
|
-
///
|
2136
|
-
/// // Nonexistent key (insert)
|
2137
|
-
/// match set.entry("b") {
|
2138
|
-
/// Entry::Vacant(view) => view.insert(),
|
2139
|
-
/// Entry::Occupied(_) => unreachable!(),
|
2140
|
-
/// }
|
2141
|
-
/// assert!(set.contains("b") && set.len() == 2);
|
2142
|
-
/// ```
|
2143
|
-
pub struct VacantEntry<'a, T, S, A: Allocator + Clone = Global> {
|
2144
|
-
inner: map::VacantEntry<'a, T, (), S, A>,
|
2145
|
-
}
|
2146
|
-
|
2147
|
-
impl<T: fmt::Debug, S, A: Allocator + Clone> fmt::Debug for VacantEntry<'_, T, S, A> {
|
2148
|
-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2149
|
-
f.debug_tuple("VacantEntry").field(self.get()).finish()
|
2150
|
-
}
|
2151
|
-
}
|
2152
|
-
|
2153
|
-
impl<'a, T, S, A: Allocator + Clone> Entry<'a, T, S, A> {
|
2154
|
-
/// Sets the value of the entry, and returns an OccupiedEntry.
|
2155
|
-
///
|
2156
|
-
/// # Examples
|
2157
|
-
///
|
2158
|
-
/// ```
|
2159
|
-
/// use hashbrown::HashSet;
|
2160
|
-
///
|
2161
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2162
|
-
/// let entry = set.entry("horseyland").insert();
|
2163
|
-
///
|
2164
|
-
/// assert_eq!(entry.get(), &"horseyland");
|
2165
|
-
/// ```
|
2166
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2167
|
-
pub fn insert(self) -> OccupiedEntry<'a, T, S, A>
|
2168
|
-
where
|
2169
|
-
T: Hash,
|
2170
|
-
S: BuildHasher,
|
2171
|
-
{
|
2172
|
-
match self {
|
2173
|
-
Entry::Occupied(entry) => entry,
|
2174
|
-
Entry::Vacant(entry) => entry.insert_entry(),
|
2175
|
-
}
|
2176
|
-
}
|
2177
|
-
|
2178
|
-
/// Ensures a value is in the entry by inserting if it was vacant.
|
2179
|
-
///
|
2180
|
-
/// # Examples
|
2181
|
-
///
|
2182
|
-
/// ```
|
2183
|
-
/// use hashbrown::HashSet;
|
2184
|
-
///
|
2185
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2186
|
-
///
|
2187
|
-
/// // nonexistent key
|
2188
|
-
/// set.entry("poneyland").or_insert();
|
2189
|
-
/// assert!(set.contains("poneyland"));
|
2190
|
-
///
|
2191
|
-
/// // existing key
|
2192
|
-
/// set.entry("poneyland").or_insert();
|
2193
|
-
/// assert!(set.contains("poneyland"));
|
2194
|
-
/// assert_eq!(set.len(), 1);
|
2195
|
-
/// ```
|
2196
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2197
|
-
pub fn or_insert(self)
|
2198
|
-
where
|
2199
|
-
T: Hash,
|
2200
|
-
S: BuildHasher,
|
2201
|
-
{
|
2202
|
-
if let Entry::Vacant(entry) = self {
|
2203
|
-
entry.insert();
|
2204
|
-
}
|
2205
|
-
}
|
2206
|
-
|
2207
|
-
/// Returns a reference to this entry's value.
|
2208
|
-
///
|
2209
|
-
/// # Examples
|
2210
|
-
///
|
2211
|
-
/// ```
|
2212
|
-
/// use hashbrown::HashSet;
|
2213
|
-
///
|
2214
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2215
|
-
/// set.entry("poneyland").or_insert();
|
2216
|
-
/// // existing key
|
2217
|
-
/// assert_eq!(set.entry("poneyland").get(), &"poneyland");
|
2218
|
-
/// // nonexistent key
|
2219
|
-
/// assert_eq!(set.entry("horseland").get(), &"horseland");
|
2220
|
-
/// ```
|
2221
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2222
|
-
pub fn get(&self) -> &T {
|
2223
|
-
match *self {
|
2224
|
-
Entry::Occupied(ref entry) => entry.get(),
|
2225
|
-
Entry::Vacant(ref entry) => entry.get(),
|
2226
|
-
}
|
2227
|
-
}
|
2228
|
-
}
|
2229
|
-
|
2230
|
-
impl<T, S, A: Allocator + Clone> OccupiedEntry<'_, T, S, A> {
|
2231
|
-
/// Gets a reference to the value in the entry.
|
2232
|
-
///
|
2233
|
-
/// # Examples
|
2234
|
-
///
|
2235
|
-
/// ```
|
2236
|
-
/// use hashbrown::hash_set::{Entry, HashSet};
|
2237
|
-
///
|
2238
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2239
|
-
/// set.entry("poneyland").or_insert();
|
2240
|
-
///
|
2241
|
-
/// match set.entry("poneyland") {
|
2242
|
-
/// Entry::Vacant(_) => panic!(),
|
2243
|
-
/// Entry::Occupied(entry) => assert_eq!(entry.get(), &"poneyland"),
|
2244
|
-
/// }
|
2245
|
-
/// ```
|
2246
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2247
|
-
pub fn get(&self) -> &T {
|
2248
|
-
self.inner.key()
|
2249
|
-
}
|
2250
|
-
|
2251
|
-
/// Takes the value out of the entry, and returns it.
|
2252
|
-
/// Keeps the allocated memory for reuse.
|
2253
|
-
///
|
2254
|
-
/// # Examples
|
2255
|
-
///
|
2256
|
-
/// ```
|
2257
|
-
/// use hashbrown::HashSet;
|
2258
|
-
/// use hashbrown::hash_set::Entry;
|
2259
|
-
///
|
2260
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2261
|
-
/// // The set is empty
|
2262
|
-
/// assert!(set.is_empty() && set.capacity() == 0);
|
2263
|
-
///
|
2264
|
-
/// set.entry("poneyland").or_insert();
|
2265
|
-
/// let capacity_before_remove = set.capacity();
|
2266
|
-
///
|
2267
|
-
/// if let Entry::Occupied(o) = set.entry("poneyland") {
|
2268
|
-
/// assert_eq!(o.remove(), "poneyland");
|
2269
|
-
/// }
|
2270
|
-
///
|
2271
|
-
/// assert_eq!(set.contains("poneyland"), false);
|
2272
|
-
/// // Now set hold none elements but capacity is equal to the old one
|
2273
|
-
/// assert!(set.len() == 0 && set.capacity() == capacity_before_remove);
|
2274
|
-
/// ```
|
2275
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2276
|
-
pub fn remove(self) -> T {
|
2277
|
-
self.inner.remove_entry().0
|
2278
|
-
}
|
2279
|
-
|
2280
|
-
/// Replaces the entry, returning the old value. The new value in the hash map will be
|
2281
|
-
/// the value used to create this entry.
|
2282
|
-
///
|
2283
|
-
/// # Panics
|
2284
|
-
///
|
2285
|
-
/// Will panic if this OccupiedEntry was created through [`Entry::insert`].
|
2286
|
-
///
|
2287
|
-
/// # Examples
|
2288
|
-
///
|
2289
|
-
/// ```
|
2290
|
-
/// use hashbrown::hash_set::{Entry, HashSet};
|
2291
|
-
/// use std::rc::Rc;
|
2292
|
-
///
|
2293
|
-
/// let mut set: HashSet<Rc<String>> = HashSet::new();
|
2294
|
-
/// let key_one = Rc::new("Stringthing".to_string());
|
2295
|
-
/// let key_two = Rc::new("Stringthing".to_string());
|
2296
|
-
///
|
2297
|
-
/// set.insert(key_one.clone());
|
2298
|
-
/// assert!(Rc::strong_count(&key_one) == 2 && Rc::strong_count(&key_two) == 1);
|
2299
|
-
///
|
2300
|
-
/// match set.entry(key_two.clone()) {
|
2301
|
-
/// Entry::Occupied(entry) => {
|
2302
|
-
/// let old_key: Rc<String> = entry.replace();
|
2303
|
-
/// assert!(Rc::ptr_eq(&key_one, &old_key));
|
2304
|
-
/// }
|
2305
|
-
/// Entry::Vacant(_) => panic!(),
|
2306
|
-
/// }
|
2307
|
-
///
|
2308
|
-
/// assert!(Rc::strong_count(&key_one) == 1 && Rc::strong_count(&key_two) == 2);
|
2309
|
-
/// assert!(set.contains(&"Stringthing".to_owned()));
|
2310
|
-
/// ```
|
2311
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2312
|
-
pub fn replace(self) -> T {
|
2313
|
-
self.inner.replace_key()
|
2314
|
-
}
|
2315
|
-
}
|
2316
|
-
|
2317
|
-
impl<'a, T, S, A: Allocator + Clone> VacantEntry<'a, T, S, A> {
|
2318
|
-
/// Gets a reference to the value that would be used when inserting
|
2319
|
-
/// through the `VacantEntry`.
|
2320
|
-
///
|
2321
|
-
/// # Examples
|
2322
|
-
///
|
2323
|
-
/// ```
|
2324
|
-
/// use hashbrown::HashSet;
|
2325
|
-
///
|
2326
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2327
|
-
/// assert_eq!(set.entry("poneyland").get(), &"poneyland");
|
2328
|
-
/// ```
|
2329
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2330
|
-
pub fn get(&self) -> &T {
|
2331
|
-
self.inner.key()
|
2332
|
-
}
|
2333
|
-
|
2334
|
-
/// Take ownership of the value.
|
2335
|
-
///
|
2336
|
-
/// # Examples
|
2337
|
-
///
|
2338
|
-
/// ```
|
2339
|
-
/// use hashbrown::hash_set::{Entry, HashSet};
|
2340
|
-
///
|
2341
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2342
|
-
///
|
2343
|
-
/// match set.entry("poneyland") {
|
2344
|
-
/// Entry::Occupied(_) => panic!(),
|
2345
|
-
/// Entry::Vacant(v) => assert_eq!(v.into_value(), "poneyland"),
|
2346
|
-
/// }
|
2347
|
-
/// ```
|
2348
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2349
|
-
pub fn into_value(self) -> T {
|
2350
|
-
self.inner.into_key()
|
2351
|
-
}
|
2352
|
-
|
2353
|
-
/// Sets the value of the entry with the VacantEntry's value.
|
2354
|
-
///
|
2355
|
-
/// # Examples
|
2356
|
-
///
|
2357
|
-
/// ```
|
2358
|
-
/// use hashbrown::HashSet;
|
2359
|
-
/// use hashbrown::hash_set::Entry;
|
2360
|
-
///
|
2361
|
-
/// let mut set: HashSet<&str> = HashSet::new();
|
2362
|
-
///
|
2363
|
-
/// if let Entry::Vacant(o) = set.entry("poneyland") {
|
2364
|
-
/// o.insert();
|
2365
|
-
/// }
|
2366
|
-
/// assert!(set.contains("poneyland"));
|
2367
|
-
/// ```
|
2368
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2369
|
-
pub fn insert(self)
|
2370
|
-
where
|
2371
|
-
T: Hash,
|
2372
|
-
S: BuildHasher,
|
2373
|
-
{
|
2374
|
-
self.inner.insert(());
|
2375
|
-
}
|
2376
|
-
|
2377
|
-
#[cfg_attr(feature = "inline-more", inline)]
|
2378
|
-
fn insert_entry(self) -> OccupiedEntry<'a, T, S, A>
|
2379
|
-
where
|
2380
|
-
T: Hash,
|
2381
|
-
S: BuildHasher,
|
2382
|
-
{
|
2383
|
-
OccupiedEntry {
|
2384
|
-
inner: self.inner.insert_entry(()),
|
2385
|
-
}
|
2386
|
-
}
|
2387
|
-
}
|
2388
|
-
|
2389
|
-
#[allow(dead_code)]
|
2390
|
-
fn assert_covariance() {
|
2391
|
-
fn set<'new>(v: HashSet<&'static str>) -> HashSet<&'new str> {
|
2392
|
-
v
|
2393
|
-
}
|
2394
|
-
fn iter<'a, 'new>(v: Iter<'a, &'static str>) -> Iter<'a, &'new str> {
|
2395
|
-
v
|
2396
|
-
}
|
2397
|
-
fn into_iter<'new, A: Allocator + Clone>(
|
2398
|
-
v: IntoIter<&'static str, A>,
|
2399
|
-
) -> IntoIter<&'new str, A> {
|
2400
|
-
v
|
2401
|
-
}
|
2402
|
-
fn difference<'a, 'new, A: Allocator + Clone>(
|
2403
|
-
v: Difference<'a, &'static str, DefaultHashBuilder, A>,
|
2404
|
-
) -> Difference<'a, &'new str, DefaultHashBuilder, A> {
|
2405
|
-
v
|
2406
|
-
}
|
2407
|
-
fn symmetric_difference<'a, 'new, A: Allocator + Clone>(
|
2408
|
-
v: SymmetricDifference<'a, &'static str, DefaultHashBuilder, A>,
|
2409
|
-
) -> SymmetricDifference<'a, &'new str, DefaultHashBuilder, A> {
|
2410
|
-
v
|
2411
|
-
}
|
2412
|
-
fn intersection<'a, 'new, A: Allocator + Clone>(
|
2413
|
-
v: Intersection<'a, &'static str, DefaultHashBuilder, A>,
|
2414
|
-
) -> Intersection<'a, &'new str, DefaultHashBuilder, A> {
|
2415
|
-
v
|
2416
|
-
}
|
2417
|
-
fn union<'a, 'new, A: Allocator + Clone>(
|
2418
|
-
v: Union<'a, &'static str, DefaultHashBuilder, A>,
|
2419
|
-
) -> Union<'a, &'new str, DefaultHashBuilder, A> {
|
2420
|
-
v
|
2421
|
-
}
|
2422
|
-
fn drain<'new, A: Allocator + Clone>(
|
2423
|
-
d: Drain<'static, &'static str, A>,
|
2424
|
-
) -> Drain<'new, &'new str, A> {
|
2425
|
-
d
|
2426
|
-
}
|
2427
|
-
}
|
2428
|
-
|
2429
|
-
#[cfg(test)]
|
2430
|
-
mod test_set {
|
2431
|
-
use super::super::map::DefaultHashBuilder;
|
2432
|
-
use super::HashSet;
|
2433
|
-
use std::vec::Vec;
|
2434
|
-
|
2435
|
-
#[test]
|
2436
|
-
fn test_zero_capacities() {
|
2437
|
-
type HS = HashSet<i32>;
|
2438
|
-
|
2439
|
-
let s = HS::new();
|
2440
|
-
assert_eq!(s.capacity(), 0);
|
2441
|
-
|
2442
|
-
let s = HS::default();
|
2443
|
-
assert_eq!(s.capacity(), 0);
|
2444
|
-
|
2445
|
-
let s = HS::with_hasher(DefaultHashBuilder::default());
|
2446
|
-
assert_eq!(s.capacity(), 0);
|
2447
|
-
|
2448
|
-
let s = HS::with_capacity(0);
|
2449
|
-
assert_eq!(s.capacity(), 0);
|
2450
|
-
|
2451
|
-
let s = HS::with_capacity_and_hasher(0, DefaultHashBuilder::default());
|
2452
|
-
assert_eq!(s.capacity(), 0);
|
2453
|
-
|
2454
|
-
let mut s = HS::new();
|
2455
|
-
s.insert(1);
|
2456
|
-
s.insert(2);
|
2457
|
-
s.remove(&1);
|
2458
|
-
s.remove(&2);
|
2459
|
-
s.shrink_to_fit();
|
2460
|
-
assert_eq!(s.capacity(), 0);
|
2461
|
-
|
2462
|
-
let mut s = HS::new();
|
2463
|
-
s.reserve(0);
|
2464
|
-
assert_eq!(s.capacity(), 0);
|
2465
|
-
}
|
2466
|
-
|
2467
|
-
#[test]
|
2468
|
-
fn test_disjoint() {
|
2469
|
-
let mut xs = HashSet::new();
|
2470
|
-
let mut ys = HashSet::new();
|
2471
|
-
assert!(xs.is_disjoint(&ys));
|
2472
|
-
assert!(ys.is_disjoint(&xs));
|
2473
|
-
assert!(xs.insert(5));
|
2474
|
-
assert!(ys.insert(11));
|
2475
|
-
assert!(xs.is_disjoint(&ys));
|
2476
|
-
assert!(ys.is_disjoint(&xs));
|
2477
|
-
assert!(xs.insert(7));
|
2478
|
-
assert!(xs.insert(19));
|
2479
|
-
assert!(xs.insert(4));
|
2480
|
-
assert!(ys.insert(2));
|
2481
|
-
assert!(ys.insert(-11));
|
2482
|
-
assert!(xs.is_disjoint(&ys));
|
2483
|
-
assert!(ys.is_disjoint(&xs));
|
2484
|
-
assert!(ys.insert(7));
|
2485
|
-
assert!(!xs.is_disjoint(&ys));
|
2486
|
-
assert!(!ys.is_disjoint(&xs));
|
2487
|
-
}
|
2488
|
-
|
2489
|
-
#[test]
|
2490
|
-
fn test_subset_and_superset() {
|
2491
|
-
let mut a = HashSet::new();
|
2492
|
-
assert!(a.insert(0));
|
2493
|
-
assert!(a.insert(5));
|
2494
|
-
assert!(a.insert(11));
|
2495
|
-
assert!(a.insert(7));
|
2496
|
-
|
2497
|
-
let mut b = HashSet::new();
|
2498
|
-
assert!(b.insert(0));
|
2499
|
-
assert!(b.insert(7));
|
2500
|
-
assert!(b.insert(19));
|
2501
|
-
assert!(b.insert(250));
|
2502
|
-
assert!(b.insert(11));
|
2503
|
-
assert!(b.insert(200));
|
2504
|
-
|
2505
|
-
assert!(!a.is_subset(&b));
|
2506
|
-
assert!(!a.is_superset(&b));
|
2507
|
-
assert!(!b.is_subset(&a));
|
2508
|
-
assert!(!b.is_superset(&a));
|
2509
|
-
|
2510
|
-
assert!(b.insert(5));
|
2511
|
-
|
2512
|
-
assert!(a.is_subset(&b));
|
2513
|
-
assert!(!a.is_superset(&b));
|
2514
|
-
assert!(!b.is_subset(&a));
|
2515
|
-
assert!(b.is_superset(&a));
|
2516
|
-
}
|
2517
|
-
|
2518
|
-
#[test]
|
2519
|
-
fn test_iterate() {
|
2520
|
-
let mut a = HashSet::new();
|
2521
|
-
for i in 0..32 {
|
2522
|
-
assert!(a.insert(i));
|
2523
|
-
}
|
2524
|
-
let mut observed: u32 = 0;
|
2525
|
-
for k in &a {
|
2526
|
-
observed |= 1 << *k;
|
2527
|
-
}
|
2528
|
-
assert_eq!(observed, 0xFFFF_FFFF);
|
2529
|
-
}
|
2530
|
-
|
2531
|
-
#[test]
|
2532
|
-
fn test_intersection() {
|
2533
|
-
let mut a = HashSet::new();
|
2534
|
-
let mut b = HashSet::new();
|
2535
|
-
|
2536
|
-
assert!(a.insert(11));
|
2537
|
-
assert!(a.insert(1));
|
2538
|
-
assert!(a.insert(3));
|
2539
|
-
assert!(a.insert(77));
|
2540
|
-
assert!(a.insert(103));
|
2541
|
-
assert!(a.insert(5));
|
2542
|
-
assert!(a.insert(-5));
|
2543
|
-
|
2544
|
-
assert!(b.insert(2));
|
2545
|
-
assert!(b.insert(11));
|
2546
|
-
assert!(b.insert(77));
|
2547
|
-
assert!(b.insert(-9));
|
2548
|
-
assert!(b.insert(-42));
|
2549
|
-
assert!(b.insert(5));
|
2550
|
-
assert!(b.insert(3));
|
2551
|
-
|
2552
|
-
let mut i = 0;
|
2553
|
-
let expected = [3, 5, 11, 77];
|
2554
|
-
for x in a.intersection(&b) {
|
2555
|
-
assert!(expected.contains(x));
|
2556
|
-
i += 1;
|
2557
|
-
}
|
2558
|
-
assert_eq!(i, expected.len());
|
2559
|
-
}
|
2560
|
-
|
2561
|
-
#[test]
|
2562
|
-
fn test_difference() {
|
2563
|
-
let mut a = HashSet::new();
|
2564
|
-
let mut b = HashSet::new();
|
2565
|
-
|
2566
|
-
assert!(a.insert(1));
|
2567
|
-
assert!(a.insert(3));
|
2568
|
-
assert!(a.insert(5));
|
2569
|
-
assert!(a.insert(9));
|
2570
|
-
assert!(a.insert(11));
|
2571
|
-
|
2572
|
-
assert!(b.insert(3));
|
2573
|
-
assert!(b.insert(9));
|
2574
|
-
|
2575
|
-
let mut i = 0;
|
2576
|
-
let expected = [1, 5, 11];
|
2577
|
-
for x in a.difference(&b) {
|
2578
|
-
assert!(expected.contains(x));
|
2579
|
-
i += 1;
|
2580
|
-
}
|
2581
|
-
assert_eq!(i, expected.len());
|
2582
|
-
}
|
2583
|
-
|
2584
|
-
#[test]
|
2585
|
-
fn test_symmetric_difference() {
|
2586
|
-
let mut a = HashSet::new();
|
2587
|
-
let mut b = HashSet::new();
|
2588
|
-
|
2589
|
-
assert!(a.insert(1));
|
2590
|
-
assert!(a.insert(3));
|
2591
|
-
assert!(a.insert(5));
|
2592
|
-
assert!(a.insert(9));
|
2593
|
-
assert!(a.insert(11));
|
2594
|
-
|
2595
|
-
assert!(b.insert(-2));
|
2596
|
-
assert!(b.insert(3));
|
2597
|
-
assert!(b.insert(9));
|
2598
|
-
assert!(b.insert(14));
|
2599
|
-
assert!(b.insert(22));
|
2600
|
-
|
2601
|
-
let mut i = 0;
|
2602
|
-
let expected = [-2, 1, 5, 11, 14, 22];
|
2603
|
-
for x in a.symmetric_difference(&b) {
|
2604
|
-
assert!(expected.contains(x));
|
2605
|
-
i += 1;
|
2606
|
-
}
|
2607
|
-
assert_eq!(i, expected.len());
|
2608
|
-
}
|
2609
|
-
|
2610
|
-
#[test]
|
2611
|
-
fn test_union() {
|
2612
|
-
let mut a = HashSet::new();
|
2613
|
-
let mut b = HashSet::new();
|
2614
|
-
|
2615
|
-
assert!(a.insert(1));
|
2616
|
-
assert!(a.insert(3));
|
2617
|
-
assert!(a.insert(5));
|
2618
|
-
assert!(a.insert(9));
|
2619
|
-
assert!(a.insert(11));
|
2620
|
-
assert!(a.insert(16));
|
2621
|
-
assert!(a.insert(19));
|
2622
|
-
assert!(a.insert(24));
|
2623
|
-
|
2624
|
-
assert!(b.insert(-2));
|
2625
|
-
assert!(b.insert(1));
|
2626
|
-
assert!(b.insert(5));
|
2627
|
-
assert!(b.insert(9));
|
2628
|
-
assert!(b.insert(13));
|
2629
|
-
assert!(b.insert(19));
|
2630
|
-
|
2631
|
-
let mut i = 0;
|
2632
|
-
let expected = [-2, 1, 3, 5, 9, 11, 13, 16, 19, 24];
|
2633
|
-
for x in a.union(&b) {
|
2634
|
-
assert!(expected.contains(x));
|
2635
|
-
i += 1;
|
2636
|
-
}
|
2637
|
-
assert_eq!(i, expected.len());
|
2638
|
-
}
|
2639
|
-
|
2640
|
-
#[test]
|
2641
|
-
fn test_from_map() {
|
2642
|
-
let mut a = crate::HashMap::new();
|
2643
|
-
a.insert(1, ());
|
2644
|
-
a.insert(2, ());
|
2645
|
-
a.insert(3, ());
|
2646
|
-
a.insert(4, ());
|
2647
|
-
|
2648
|
-
let a: HashSet<_> = a.into();
|
2649
|
-
|
2650
|
-
assert_eq!(a.len(), 4);
|
2651
|
-
assert!(a.contains(&1));
|
2652
|
-
assert!(a.contains(&2));
|
2653
|
-
assert!(a.contains(&3));
|
2654
|
-
assert!(a.contains(&4));
|
2655
|
-
}
|
2656
|
-
|
2657
|
-
#[test]
|
2658
|
-
fn test_from_iter() {
|
2659
|
-
let xs = [1, 2, 2, 3, 4, 5, 6, 7, 8, 9];
|
2660
|
-
|
2661
|
-
let set: HashSet<_> = xs.iter().copied().collect();
|
2662
|
-
|
2663
|
-
for x in &xs {
|
2664
|
-
assert!(set.contains(x));
|
2665
|
-
}
|
2666
|
-
|
2667
|
-
assert_eq!(set.iter().len(), xs.len() - 1);
|
2668
|
-
}
|
2669
|
-
|
2670
|
-
#[test]
|
2671
|
-
fn test_move_iter() {
|
2672
|
-
let hs = {
|
2673
|
-
let mut hs = HashSet::new();
|
2674
|
-
|
2675
|
-
hs.insert('a');
|
2676
|
-
hs.insert('b');
|
2677
|
-
|
2678
|
-
hs
|
2679
|
-
};
|
2680
|
-
|
2681
|
-
let v = hs.into_iter().collect::<Vec<char>>();
|
2682
|
-
assert!(v == ['a', 'b'] || v == ['b', 'a']);
|
2683
|
-
}
|
2684
|
-
|
2685
|
-
#[test]
|
2686
|
-
fn test_eq() {
|
2687
|
-
// These constants once happened to expose a bug in insert().
|
2688
|
-
// I'm keeping them around to prevent a regression.
|
2689
|
-
let mut s1 = HashSet::new();
|
2690
|
-
|
2691
|
-
s1.insert(1);
|
2692
|
-
s1.insert(2);
|
2693
|
-
s1.insert(3);
|
2694
|
-
|
2695
|
-
let mut s2 = HashSet::new();
|
2696
|
-
|
2697
|
-
s2.insert(1);
|
2698
|
-
s2.insert(2);
|
2699
|
-
|
2700
|
-
assert!(s1 != s2);
|
2701
|
-
|
2702
|
-
s2.insert(3);
|
2703
|
-
|
2704
|
-
assert_eq!(s1, s2);
|
2705
|
-
}
|
2706
|
-
|
2707
|
-
#[test]
|
2708
|
-
fn test_show() {
|
2709
|
-
let mut set = HashSet::new();
|
2710
|
-
let empty = HashSet::<i32>::new();
|
2711
|
-
|
2712
|
-
set.insert(1);
|
2713
|
-
set.insert(2);
|
2714
|
-
|
2715
|
-
let set_str = format!("{:?}", set);
|
2716
|
-
|
2717
|
-
assert!(set_str == "{1, 2}" || set_str == "{2, 1}");
|
2718
|
-
assert_eq!(format!("{:?}", empty), "{}");
|
2719
|
-
}
|
2720
|
-
|
2721
|
-
#[test]
|
2722
|
-
fn test_trivial_drain() {
|
2723
|
-
let mut s = HashSet::<i32>::new();
|
2724
|
-
for _ in s.drain() {}
|
2725
|
-
assert!(s.is_empty());
|
2726
|
-
drop(s);
|
2727
|
-
|
2728
|
-
let mut s = HashSet::<i32>::new();
|
2729
|
-
drop(s.drain());
|
2730
|
-
assert!(s.is_empty());
|
2731
|
-
}
|
2732
|
-
|
2733
|
-
#[test]
|
2734
|
-
fn test_drain() {
|
2735
|
-
let mut s: HashSet<_> = (1..100).collect();
|
2736
|
-
|
2737
|
-
// try this a bunch of times to make sure we don't screw up internal state.
|
2738
|
-
for _ in 0..20 {
|
2739
|
-
assert_eq!(s.len(), 99);
|
2740
|
-
|
2741
|
-
{
|
2742
|
-
let mut last_i = 0;
|
2743
|
-
let mut d = s.drain();
|
2744
|
-
for (i, x) in d.by_ref().take(50).enumerate() {
|
2745
|
-
last_i = i;
|
2746
|
-
assert!(x != 0);
|
2747
|
-
}
|
2748
|
-
assert_eq!(last_i, 49);
|
2749
|
-
}
|
2750
|
-
|
2751
|
-
for _ in &s {
|
2752
|
-
panic!("s should be empty!");
|
2753
|
-
}
|
2754
|
-
|
2755
|
-
// reset to try again.
|
2756
|
-
s.extend(1..100);
|
2757
|
-
}
|
2758
|
-
}
|
2759
|
-
|
2760
|
-
#[test]
|
2761
|
-
fn test_replace() {
|
2762
|
-
use core::hash;
|
2763
|
-
|
2764
|
-
#[derive(Debug)]
|
2765
|
-
struct Foo(&'static str, i32);
|
2766
|
-
|
2767
|
-
impl PartialEq for Foo {
|
2768
|
-
fn eq(&self, other: &Self) -> bool {
|
2769
|
-
self.0 == other.0
|
2770
|
-
}
|
2771
|
-
}
|
2772
|
-
|
2773
|
-
impl Eq for Foo {}
|
2774
|
-
|
2775
|
-
impl hash::Hash for Foo {
|
2776
|
-
fn hash<H: hash::Hasher>(&self, h: &mut H) {
|
2777
|
-
self.0.hash(h);
|
2778
|
-
}
|
2779
|
-
}
|
2780
|
-
|
2781
|
-
let mut s = HashSet::new();
|
2782
|
-
assert_eq!(s.replace(Foo("a", 1)), None);
|
2783
|
-
assert_eq!(s.len(), 1);
|
2784
|
-
assert_eq!(s.replace(Foo("a", 2)), Some(Foo("a", 1)));
|
2785
|
-
assert_eq!(s.len(), 1);
|
2786
|
-
|
2787
|
-
let mut it = s.iter();
|
2788
|
-
assert_eq!(it.next(), Some(&Foo("a", 2)));
|
2789
|
-
assert_eq!(it.next(), None);
|
2790
|
-
}
|
2791
|
-
|
2792
|
-
#[test]
|
2793
|
-
fn test_extend_ref() {
|
2794
|
-
let mut a = HashSet::new();
|
2795
|
-
a.insert(1);
|
2796
|
-
|
2797
|
-
a.extend([2, 3, 4]);
|
2798
|
-
|
2799
|
-
assert_eq!(a.len(), 4);
|
2800
|
-
assert!(a.contains(&1));
|
2801
|
-
assert!(a.contains(&2));
|
2802
|
-
assert!(a.contains(&3));
|
2803
|
-
assert!(a.contains(&4));
|
2804
|
-
|
2805
|
-
let mut b = HashSet::new();
|
2806
|
-
b.insert(5);
|
2807
|
-
b.insert(6);
|
2808
|
-
|
2809
|
-
a.extend(&b);
|
2810
|
-
|
2811
|
-
assert_eq!(a.len(), 6);
|
2812
|
-
assert!(a.contains(&1));
|
2813
|
-
assert!(a.contains(&2));
|
2814
|
-
assert!(a.contains(&3));
|
2815
|
-
assert!(a.contains(&4));
|
2816
|
-
assert!(a.contains(&5));
|
2817
|
-
assert!(a.contains(&6));
|
2818
|
-
}
|
2819
|
-
|
2820
|
-
#[test]
|
2821
|
-
fn test_retain() {
|
2822
|
-
let xs = [1, 2, 3, 4, 5, 6];
|
2823
|
-
let mut set: HashSet<i32> = xs.iter().copied().collect();
|
2824
|
-
set.retain(|&k| k % 2 == 0);
|
2825
|
-
assert_eq!(set.len(), 3);
|
2826
|
-
assert!(set.contains(&2));
|
2827
|
-
assert!(set.contains(&4));
|
2828
|
-
assert!(set.contains(&6));
|
2829
|
-
}
|
2830
|
-
|
2831
|
-
#[test]
|
2832
|
-
fn test_drain_filter() {
|
2833
|
-
{
|
2834
|
-
let mut set: HashSet<i32> = (0..8).collect();
|
2835
|
-
let drained = set.drain_filter(|&k| k % 2 == 0);
|
2836
|
-
let mut out = drained.collect::<Vec<_>>();
|
2837
|
-
out.sort_unstable();
|
2838
|
-
assert_eq!(vec![0, 2, 4, 6], out);
|
2839
|
-
assert_eq!(set.len(), 4);
|
2840
|
-
}
|
2841
|
-
{
|
2842
|
-
let mut set: HashSet<i32> = (0..8).collect();
|
2843
|
-
drop(set.drain_filter(|&k| k % 2 == 0));
|
2844
|
-
assert_eq!(set.len(), 4, "Removes non-matching items on drop");
|
2845
|
-
}
|
2846
|
-
}
|
2847
|
-
|
2848
|
-
#[test]
|
2849
|
-
fn test_const_with_hasher() {
|
2850
|
-
use core::hash::BuildHasher;
|
2851
|
-
use std::collections::hash_map::DefaultHasher;
|
2852
|
-
|
2853
|
-
#[derive(Clone)]
|
2854
|
-
struct MyHasher;
|
2855
|
-
impl BuildHasher for MyHasher {
|
2856
|
-
type Hasher = DefaultHasher;
|
2857
|
-
|
2858
|
-
fn build_hasher(&self) -> DefaultHasher {
|
2859
|
-
DefaultHasher::new()
|
2860
|
-
}
|
2861
|
-
}
|
2862
|
-
|
2863
|
-
const EMPTY_SET: HashSet<u32, MyHasher> = HashSet::with_hasher(MyHasher);
|
2864
|
-
|
2865
|
-
let mut set = EMPTY_SET;
|
2866
|
-
set.insert(19);
|
2867
|
-
assert!(set.contains(&19));
|
2868
|
-
}
|
2869
|
-
|
2870
|
-
#[test]
|
2871
|
-
fn rehash_in_place() {
|
2872
|
-
let mut set = HashSet::new();
|
2873
|
-
|
2874
|
-
for i in 0..224 {
|
2875
|
-
set.insert(i);
|
2876
|
-
}
|
2877
|
-
|
2878
|
-
assert_eq!(
|
2879
|
-
set.capacity(),
|
2880
|
-
224,
|
2881
|
-
"The set must be at or close to capacity to trigger a re hashing"
|
2882
|
-
);
|
2883
|
-
|
2884
|
-
for i in 100..1400 {
|
2885
|
-
set.remove(&(i - 100));
|
2886
|
-
set.insert(i);
|
2887
|
-
}
|
2888
|
-
}
|
2889
|
-
}
|