wasmtime 10.0.0 → 11.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 +146 -140
- data/ext/Cargo.toml +6 -6
- data/ext/cargo-vendor/addr2line-0.21.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/addr2line-0.21.0/CHANGELOG.md +336 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.lock +704 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.toml +147 -0
- data/ext/cargo-vendor/addr2line-0.21.0/examples/addr2line.rs +317 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/Cargo.toml +70 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/ahocorasick.rs +2789 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/dfa.rs +816 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/lib.rs +327 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/contiguous.rs +1141 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/noncontiguous.rs +1710 -0
- data/ext/cargo-vendor/anyhow-1.0.75/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/anyhow-1.0.75/Cargo.toml +67 -0
- data/ext/cargo-vendor/anyhow-1.0.75/build.rs +131 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/backtrace.rs +401 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/context.rs +193 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/error.rs +996 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/kind.rs +119 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/lib.rs +689 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/wrapper.rs +81 -0
- data/ext/cargo-vendor/anyhow-1.0.75/tests/test_ensure.rs +722 -0
- data/ext/cargo-vendor/async-trait-0.1.73/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/async-trait-0.1.73/Cargo.toml +63 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/expand.rs +484 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/lib.rs +343 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/test.rs +1606 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/consider-restricting.stderr +35 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/send-not-implemented.stderr +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.lock +192 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.toml +145 -0
- data/ext/cargo-vendor/backtrace-0.3.69/build.rs +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print/fuchsia.rs +441 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print.rs +320 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/gimli/parse_running_mmaps_unix.rs +295 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/mod.rs +485 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/windows.rs +693 -0
- data/ext/cargo-vendor/cc-1.0.83/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.lock +111 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.toml +43 -0
- data/ext/cargo-vendor/cc-1.0.83/src/lib.rs +4024 -0
- data/ext/cargo-vendor/cc-1.0.83/tests/test.rs +477 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +160 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/build.rs +391 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/libcall.rs +232 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +1506 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +3714 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +2980 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +837 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +2899 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/mod.rs +250 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/call_conv.rs +119 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/mod.rs +436 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +946 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +3058 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/encode.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +2070 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/vector.rs +939 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +2927 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst_vector.isle +1650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +585 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +1984 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/mod.rs +228 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/abi.rs +948 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/inst.isle +5043 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower/isle.rs +1039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower.isle +3983 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/mod.rs +225 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +1220 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/encoding/rex.rs +588 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/args.rs +2193 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit.rs +4298 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_state.rs +72 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_tests.rs +5678 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/mod.rs +2759 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst.isle +5079 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower/isle.rs +1096 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +4650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.rs +340 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/mod.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isle_prelude.rs +894 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +2605 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +2255 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/mod.rs +551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/reg.rs +556 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +1580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/extends.isle +41 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/vector.isle +8 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude.isle +594 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude_lower.isle +1024 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/settings.rs +601 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/timing.rs +271 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/unionfind.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +23 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/cdsl/settings.rs +429 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +409 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/instructions.rs +3847 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/settings.rs +341 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +38 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +85 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +3544 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +852 -0
- data/ext/cargo-vendor/gimli-0.28.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/gimli-0.28.0/CHANGELOG.md +987 -0
- data/ext/cargo-vendor/gimli-0.28.0/Cargo.toml +109 -0
- data/ext/cargo-vendor/gimli-0.28.0/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/gimli-0.28.0/README.md +81 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/arch.rs +768 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/common.rs +391 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/constants.rs +1435 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/endianity.rs +256 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/leb128.rs +612 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/lib.rs +79 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/abbrev.rs +1089 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/addr.rs +128 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/aranges.rs +660 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/cfi.rs +7712 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/dwarf.rs +1184 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_reader.rs +639 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_slice.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/index.rs +535 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lazy.rs +116 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/line.rs +3130 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lists.rs +68 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/loclists.rs +1627 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lookup.rs +202 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/mod.rs +830 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/op.rs +4119 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubnames.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubtypes.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/reader.rs +502 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/rnglists.rs +1458 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/str.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/unit.rs +6139 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/util.rs +251 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/value.rs +1621 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/test_util.rs +53 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/abbrev.rs +188 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/cfi.rs +1050 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/dwarf.rs +138 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/endian_vec.rs +117 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/line.rs +1957 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/loc.rs +550 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/mod.rs +425 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/op.rs +1618 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/range.rs +416 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/section.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/str.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/unit.rs +3152 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/writer.rs +494 -0
- data/ext/cargo-vendor/log-0.4.20/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.20/CHANGELOG.md +273 -0
- data/ext/cargo-vendor/log-0.4.20/Cargo.toml +118 -0
- data/ext/cargo-vendor/log-0.4.20/README.md +121 -0
- data/ext/cargo-vendor/log-0.4.20/src/__private_api.rs +57 -0
- data/ext/cargo-vendor/log-0.4.20/src/lib.rs +1827 -0
- data/ext/cargo-vendor/log-0.4.20/src/macros.rs +240 -0
- data/ext/cargo-vendor/object-0.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.32.0/CHANGELOG.md +679 -0
- data/ext/cargo-vendor/object-0.32.0/Cargo.toml +163 -0
- data/ext/cargo-vendor/object-0.32.0/README.md +58 -0
- data/ext/cargo-vendor/object-0.32.0/clippy.toml +1 -0
- data/ext/cargo-vendor/object-0.32.0/src/common.rs +501 -0
- data/ext/cargo-vendor/object-0.32.0/src/elf.rs +6156 -0
- data/ext/cargo-vendor/object-0.32.0/src/pe.rs +3054 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/any.rs +1314 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/import.rs +209 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/mod.rs +21 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/file.rs +911 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/note.rs +266 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/relocation.rs +576 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/symbol.rs +585 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/elf/object.rs +903 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/macho.rs +63 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
- data/ext/cargo-vendor/quote-1.0.33/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/quote-1.0.33/Cargo.toml +50 -0
- data/ext/cargo-vendor/quote-1.0.33/src/lib.rs +1444 -0
- data/ext/cargo-vendor/quote-1.0.33/src/runtime.rs +530 -0
- data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +66 -0
- data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +327 -0
- data/ext/cargo-vendor/serde-1.0.185/src/private/ser.rs +1385 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +59 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/README.md +114 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/crates-io.md +65 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/de.rs +3136 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/attr.rs +1878 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/symbol.rs +71 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +102 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +1359 -0
- data/ext/cargo-vendor/serde_json-1.0.105/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.105/Cargo.toml +109 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/de.rs +2678 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/lib.rs +418 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/ser.rs +2247 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/de.rs +1419 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/ser.rs +1053 -0
- data/ext/cargo-vendor/serde_json-1.0.105/tests/test.rs +2499 -0
- data/ext/cargo-vendor/syn-2.0.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.29/Cargo.toml +150 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_keyword.rs +259 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_punctuation.rs +302 -0
- data/ext/cargo-vendor/syn-2.0.29/src/export.rs +69 -0
- data/ext/cargo-vendor/syn-2.0.29/src/group.rs +291 -0
- data/ext/cargo-vendor/syn-2.0.29/src/lib.rs +970 -0
- data/ext/cargo-vendor/syn-2.0.29/src/parse_quote.rs +179 -0
- data/ext/cargo-vendor/syn-2.0.29/src/span.rs +63 -0
- data/ext/cargo-vendor/syn-2.0.29/src/token.rs +1071 -0
- data/ext/cargo-vendor/syn-2.0.29/tests/common/eq.rs +864 -0
- data/ext/cargo-vendor/thiserror-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-1.0.47/Cargo.toml +48 -0
- data/ext/cargo-vendor/thiserror-1.0.47/build.rs +95 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/aserror.rs +50 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/display.rs +30 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/lib.rs +258 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/provide.rs +20 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_backtrace.rs +274 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_option.rs +105 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/Cargo.toml +36 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/src/expand.rs +545 -0
- data/ext/cargo-vendor/tokio-1.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.32.0/CHANGELOG.md +2987 -0
- data/ext/cargo-vendor/tokio-1.32.0/Cargo.toml +227 -0
- data/ext/cargo-vendor/tokio-1.32.0/README.md +249 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/async_fd.rs +1243 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/interest.rs +310 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/ready.rs +322 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/split.rs +201 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/util/async_read_ext.rs +1298 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/process/mod.rs +1674 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/builder.rs +1336 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/io/scheduled_io.rs +600 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/batch.rs +163 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/mock.rs +55 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/runtime.rs +924 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/worker.rs +84 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/current_thread/mod.rs +764 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/handle.rs +75 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/idle.rs +423 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1595 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/sync/broadcast.rs +1514 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_async_fd.rs +812 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_split.rs +116 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/rt_metrics.rs +731 -0
- data/ext/cargo-vendor/unicase-2.7.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicase-2.7.0/Cargo.toml +40 -0
- data/ext/cargo-vendor/unicase-2.7.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/unicase-2.7.0/README.md +32 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/ascii.rs +186 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/lib.rs +457 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/map.rs +1965 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/mod.rs +200 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +183 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +397 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +472 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +270 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +2298 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +701 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +727 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +313 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/storage.rs +43 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +514 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +2058 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/engine.rs +756 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +348 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +1354 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/tests/codegen.rs +26 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +593 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +2218 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +160 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/obj.rs +565 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +681 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +209 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +530 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +1069 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +843 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +1827 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +118 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +3173 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/obj.rs +172 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/code_memory.rs +313 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +110 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +727 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +626 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +153 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/lib.rs +131 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +44 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +233 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +80 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +83 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +104 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +156 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +110 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/poll/poll.wit +39 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +29 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +1648 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +491 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +183 -0
- data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +50 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +1246 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/custom.rs +390 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/func.rs +136 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/module.rs +217 -0
- data/ext/cargo-vendor/wast-63.0.0/src/encode.rs +89 -0
- data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +537 -0
- data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +27 -0
- data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/abi/mod.rs +251 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/call.rs +199 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +328 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +64 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +319 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/abi.rs +250 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/asm.rs +312 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/masm.rs +293 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/mod.rs +215 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/abi.rs +375 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/asm.rs +855 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/masm.rs +516 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/regs.rs +192 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/masm.rs +352 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/stack.rs +235 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/trampoline.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +630 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/Cargo.toml +41 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/readme.md +88 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/src/lib.rs +55 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2292 -2263
- data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
- data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
- data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
- data/ext/cargo-vendor/aho-corasick-1.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/aho-corasick-1.0.3/Cargo.toml +0 -70
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/ahocorasick.rs +0 -2788
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/dfa.rs +0 -804
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/lib.rs +0 -326
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/contiguous.rs +0 -1133
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/noncontiguous.rs +0 -1328
- data/ext/cargo-vendor/anyhow-1.0.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/anyhow-1.0.72/Cargo.toml +0 -67
- data/ext/cargo-vendor/anyhow-1.0.72/build.rs +0 -131
- data/ext/cargo-vendor/anyhow-1.0.72/src/backtrace.rs +0 -401
- data/ext/cargo-vendor/anyhow-1.0.72/src/context.rs +0 -193
- data/ext/cargo-vendor/anyhow-1.0.72/src/error.rs +0 -992
- data/ext/cargo-vendor/anyhow-1.0.72/src/kind.rs +0 -116
- data/ext/cargo-vendor/anyhow-1.0.72/src/lib.rs +0 -683
- data/ext/cargo-vendor/anyhow-1.0.72/src/wrapper.rs +0 -81
- data/ext/cargo-vendor/anyhow-1.0.72/tests/test_ensure.rs +0 -721
- data/ext/cargo-vendor/async-trait-0.1.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/async-trait-0.1.72/Cargo.toml +0 -63
- data/ext/cargo-vendor/async-trait-0.1.72/src/expand.rs +0 -484
- data/ext/cargo-vendor/async-trait-0.1.72/src/lib.rs +0 -343
- data/ext/cargo-vendor/async-trait-0.1.72/tests/test.rs +0 -1606
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/consider-restricting.stderr +0 -33
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/send-not-implemented.stderr +0 -47
- data/ext/cargo-vendor/backtrace-0.3.68/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.lock +0 -192
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.toml +0 -144
- data/ext/cargo-vendor/backtrace-0.3.68/build.rs +0 -41
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-ndk.sh +0 -14
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-sdk.sh +0 -65
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink-docker.sh +0 -29
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink.sh +0 -75
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +0 -11
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i586-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +0 -16
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/s390x-unknown-linux-gnu/Dockerfile +0 -17
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-pc-windows-gnu/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-musl/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run-docker.sh +0 -33
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run.sh +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/runtest-android.rs +0 -50
- data/ext/cargo-vendor/backtrace-0.3.68/src/print/fuchsia.rs +0 -436
- data/ext/cargo-vendor/backtrace-0.3.68/src/print.rs +0 -319
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/gimli/parse_running_mmaps_unix.rs +0 -232
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/mod.rs +0 -485
- data/ext/cargo-vendor/backtrace-0.3.68/src/windows.rs +0 -693
- data/ext/cargo-vendor/cc-1.0.82/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.0.82/Cargo.lock +0 -111
- data/ext/cargo-vendor/cc-1.0.82/Cargo.toml +0 -42
- data/ext/cargo-vendor/cc-1.0.82/src/lib.rs +0 -3983
- data/ext/cargo-vendor/cc-1.0.82/tests/test.rs +0 -461
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +0 -158
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/build.rs +0 -390
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/libcall.rs +0 -221
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +0 -1294
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +0 -3684
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +0 -7895
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +0 -2966
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +0 -816
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +0 -2906
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/call_conv.rs +0 -136
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +0 -424
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +0 -825
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +0 -3008
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +0 -262
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +0 -1963
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +0 -669
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +0 -2915
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +0 -760
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +0 -553
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +0 -1409
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +0 -216
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +0 -957
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +0 -5046
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower/isle.rs +0 -1018
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +0 -3991
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +0 -213
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +0 -985
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +0 -588
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +0 -2193
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +0 -4090
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +0 -5674
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +0 -2667
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +0 -5104
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +0 -1148
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +0 -4481
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +0 -328
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +0 -862
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/lib.rs +0 -140
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +0 -2455
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +0 -549
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +0 -537
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/extends.isle +0 -34
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +0 -578
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +0 -1012
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +0 -600
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/timing.rs +0 -271
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/unionfind.rs +0 -74
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +0 -23
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/cdsl/settings.rs +0 -440
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +0 -444
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/instructions.rs +0 -3867
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +0 -348
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +0 -215
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +0 -3538
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
- data/ext/cargo-vendor/log-0.4.19/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.19/CHANGELOG.md +0 -267
- data/ext/cargo-vendor/log-0.4.19/Cargo.toml +0 -117
- data/ext/cargo-vendor/log-0.4.19/README.md +0 -120
- data/ext/cargo-vendor/log-0.4.19/src/lib.rs +0 -1882
- data/ext/cargo-vendor/log-0.4.19/src/macros.rs +0 -280
- data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
- data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
- data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
- data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
- data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
- data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
- data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
- data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
- data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
- data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
- data/ext/cargo-vendor/quote-1.0.32/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/quote-1.0.32/Cargo.toml +0 -50
- data/ext/cargo-vendor/quote-1.0.32/src/lib.rs +0 -1444
- data/ext/cargo-vendor/quote-1.0.32/src/runtime.rs +0 -496
- data/ext/cargo-vendor/serde-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde-1.0.183/Cargo.toml +0 -66
- data/ext/cargo-vendor/serde-1.0.183/src/lib.rs +0 -327
- data/ext/cargo-vendor/serde-1.0.183/src/private/ser.rs +0 -1372
- data/ext/cargo-vendor/serde_derive-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_derive-1.0.183/Cargo.toml +0 -62
- data/ext/cargo-vendor/serde_derive-1.0.183/serde_derive-x86_64-unknown-linux-gnu +0 -0
- data/ext/cargo-vendor/serde_derive-1.0.183/src/buffer.rs +0 -69
- data/ext/cargo-vendor/serde_derive-1.0.183/src/bytecode.rs +0 -17
- data/ext/cargo-vendor/serde_derive-1.0.183/src/de.rs +0 -3143
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/attr.rs +0 -1869
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/symbol.rs +0 -70
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib.rs +0 -22
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_from_source.rs +0 -35
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_precompiled.rs +0 -234
- data/ext/cargo-vendor/serde_derive-1.0.183/src/ser.rs +0 -1353
- data/ext/cargo-vendor/serde_json-1.0.104/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.104/Cargo.toml +0 -109
- data/ext/cargo-vendor/serde_json-1.0.104/src/de.rs +0 -2643
- data/ext/cargo-vendor/serde_json-1.0.104/src/lib.rs +0 -418
- data/ext/cargo-vendor/serde_json-1.0.104/src/ser.rs +0 -2234
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/de.rs +0 -1403
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/ser.rs +0 -1053
- data/ext/cargo-vendor/serde_json-1.0.104/tests/test.rs +0 -2502
- data/ext/cargo-vendor/syn-2.0.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.28/Cargo.toml +0 -150
- data/ext/cargo-vendor/syn-2.0.28/src/custom_keyword.rs +0 -259
- data/ext/cargo-vendor/syn-2.0.28/src/custom_punctuation.rs +0 -302
- data/ext/cargo-vendor/syn-2.0.28/src/export.rs +0 -47
- data/ext/cargo-vendor/syn-2.0.28/src/group.rs +0 -283
- data/ext/cargo-vendor/syn-2.0.28/src/lib.rs +0 -970
- data/ext/cargo-vendor/syn-2.0.28/src/parse_quote.rs +0 -178
- data/ext/cargo-vendor/syn-2.0.28/src/span.rs +0 -62
- data/ext/cargo-vendor/syn-2.0.28/src/token.rs +0 -1068
- data/ext/cargo-vendor/syn-2.0.28/tests/common/eq.rs +0 -866
- data/ext/cargo-vendor/thiserror-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-1.0.44/Cargo.toml +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/build.rs +0 -66
- data/ext/cargo-vendor/thiserror-1.0.44/src/aserror.rs +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/src/display.rs +0 -28
- data/ext/cargo-vendor/thiserror-1.0.44/src/lib.rs +0 -255
- data/ext/cargo-vendor/thiserror-1.0.44/src/provide.rs +0 -15
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_backtrace.rs +0 -297
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_option.rs +0 -108
- data/ext/cargo-vendor/thiserror-impl-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-impl-1.0.44/Cargo.toml +0 -36
- data/ext/cargo-vendor/thiserror-impl-1.0.44/src/expand.rs +0 -545
- data/ext/cargo-vendor/tokio-1.30.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.30.0/CHANGELOG.md +0 -2952
- data/ext/cargo-vendor/tokio-1.30.0/Cargo.toml +0 -227
- data/ext/cargo-vendor/tokio-1.30.0/README.md +0 -244
- data/ext/cargo-vendor/tokio-1.30.0/src/io/async_fd.rs +0 -1252
- data/ext/cargo-vendor/tokio-1.30.0/src/io/interest.rs +0 -158
- data/ext/cargo-vendor/tokio-1.30.0/src/io/ready.rs +0 -293
- data/ext/cargo-vendor/tokio-1.30.0/src/io/split.rs +0 -184
- data/ext/cargo-vendor/tokio-1.30.0/src/io/util/async_read_ext.rs +0 -1295
- data/ext/cargo-vendor/tokio-1.30.0/src/process/mod.rs +0 -1680
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/builder.rs +0 -1323
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/io/scheduled_io.rs +0 -513
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/batch.rs +0 -162
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/mock.rs +0 -55
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/runtime.rs +0 -883
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/worker.rs +0 -80
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/current_thread/mod.rs +0 -764
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread/stats.rs +0 -140
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -425
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1567
- data/ext/cargo-vendor/tokio-1.30.0/src/sync/broadcast.rs +0 -1440
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_async_fd.rs +0 -687
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_split.rs +0 -79
- data/ext/cargo-vendor/tokio-1.30.0/tests/rt_metrics.rs +0 -718
- data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +0 -30
- data/ext/cargo-vendor/unicase-2.6.0/README.md +0 -31
- data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +0 -187
- data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +0 -465
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +0 -1995
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +0 -201
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-common-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-10.0.0/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasmtime-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-10.0.0/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/component.rs +0 -382
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/host.rs +0 -423
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/options.rs +0 -237
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func/typed.rs +0 -2059
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/func.rs +0 -684
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/types.rs +0 -545
- data/ext/cargo-vendor/wasmtime-10.0.0/src/component/values.rs +0 -1219
- data/ext/cargo-vendor/wasmtime-10.0.0/src/config.rs +0 -2066
- data/ext/cargo-vendor/wasmtime-10.0.0/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-10.0.0/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/src/bindgen.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/src/component.rs +0 -1199
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen.rs +0 -24
- data/ext/cargo-vendor/wasmtime-component-util-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-10.0.0/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/compiler/component.rs +0 -578
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/compiler.rs +0 -1200
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/func_environ.rs +0 -2206
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/lib.rs +0 -178
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/examples/factc.rs +0 -212
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/info.rs +0 -514
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate/inline.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate.rs +0 -1070
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/types.rs +0 -1916
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/fact/trampoline.rs +0 -3157
- data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-fiber-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-10.0.0/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/code_memory.rs +0 -309
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/libcalls.rs +0 -578
- data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/lib.rs +0 -130
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks.rs +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/ctx.rs +0 -206
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/poll.rs +0 -84
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched.rs +0 -105
- data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-winch-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-10.0.0/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/lib.rs +0 -1631
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/rust.rs +0 -473
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/types.rs +0 -179
- data/ext/cargo-vendor/wast-62.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-62.0.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/wast-62.0.1/src/core/binary.rs +0 -1213
- data/ext/cargo-vendor/wast-62.0.1/src/core/custom.rs +0 -236
- data/ext/cargo-vendor/wast-62.0.1/src/core/func.rs +0 -121
- data/ext/cargo-vendor/wast-62.0.1/src/core/module.rs +0 -213
- data/ext/cargo-vendor/wast-62.0.1/src/encode.rs +0 -81
- data/ext/cargo-vendor/wast-62.0.1/src/lib.rs +0 -532
- data/ext/cargo-vendor/wat-1.0.69/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.69/Cargo.toml +0 -27
- data/ext/cargo-vendor/wiggle-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-10.0.0/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-10.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-macro-10.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-10.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.8.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/abi/mod.rs +0 -237
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/call.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/context.rs +0 -270
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/env.rs +0 -52
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/mod.rs +0 -214
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/abi.rs +0 -243
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/asm.rs +0 -300
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/masm.rs +0 -230
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/mod.rs +0 -215
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/abi.rs +0 -369
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/asm.rs +0 -576
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/masm.rs +0 -288
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/regs.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/masm.rs +0 -255
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/stack.rs +0 -235
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/trampoline.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-0.8.0/src/visitor.rs +0 -353
- data/ext/cargo-vendor/windows-targets-0.48.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows-targets-0.48.1/Cargo.toml +0 -41
- data/ext/cargo-vendor/windows-targets-0.48.1/readme.md +0 -88
- data/ext/cargo-vendor/windows-targets-0.48.1/src/lib.rs +0 -55
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/builtin_split_dwarf_loader.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/function.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/lazy.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/correctness.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/output_equivalence.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/parse.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/COPYING +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/DESIGN.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/UNLICENSE +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/automaton.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/nfa/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/api.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/pattern.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/rabinkarp.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/compile.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/runtime.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/vector.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/transducer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/alphabet.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/buffer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/byte_frequencies.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/debug.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/int.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/prefilter.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/primitives.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/remapper.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/search.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/special.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/README.md +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ptr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/drop/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_backtrace.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_boxed.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_convert.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_downcast.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_ffi.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_repr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/README.md +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/args.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/receiver.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/executor/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/consider-restricting.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/send-not-implemented.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.stderr +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/README.md +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/benches/benchmarks.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/raw.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/android-api.c +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/libunwind.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/capture.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/coff.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/elf.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_dl_iterate_phdr.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_haiku.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_illumos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_libnx.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_macos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/macho.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_fake.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_unix.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/stash.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/auxiliary.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/main.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/concurrent-panics.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/current-exe-mismatch.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/long_fn_name.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/skip_inner_frames.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/smoke.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/bin/gcc-shim.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/unix.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/windows.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_sys.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cc_env.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cxxflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/support/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/sections_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/tests/wasm_testsuite.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/unreachable_code.wat +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → gimli-0.28.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → log-0.4.20}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/key.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/mod.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → object-0.32.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/endian.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/macho.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/attributes.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/hash.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/version.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/dyld_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/load_command.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/data_directory.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/resource.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/rich.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_ref.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/traits.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/wasm.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/writer.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/string.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/elf.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/README.md +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/format.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ident_fragment.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/to_tokens.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.stderr +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/README.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/crates-io.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/format.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/ignored_any.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/seed.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/size_hint.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/utf8.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/value.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/integer128.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/de.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/doc.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/fmt.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impossible.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/std_error.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/dummy.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/fragment.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ast.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/case.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/check.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ctxt.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/receiver.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/respan.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/pretend.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/this.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen_helper.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_should_parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/README.md +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_deprecated.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_from.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_lints.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/prop.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/valid.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/external-types.toml +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/os.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options/mock_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/maybe_done.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/bsd/poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/poll_evented.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdio_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_buf_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/flush.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mem.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/repeat.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/sink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mocked.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u16.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u32.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_usize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/cfg.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/pool.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/schedule.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/config.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/coop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/core.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/harness.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/state.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task_combinations.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/entry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/source.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/level.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/registry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/unix.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/batch_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/bounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/chan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/unbounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/consume_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/spawn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/bit.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/idle_notified_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/sync_wrapper.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/async_send_sync.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/join_handle_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_unix_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_2174.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_basic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_time_start_paused.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_pause.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.0 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.0 → wasi-common-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.0 → wasmtime-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.0 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.0 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.0 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.0 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.0 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.0 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.0 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.0 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.0 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.0 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.0 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.0 → wasmtime-runtime-11.0.0}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.0 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.0 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.0 → wasmtime-wit-bindgen-11.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.0 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.0 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.0 → wiggle-macro-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.0 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.0 → winch-codegen-0.9.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/src/lib.rs +0 -0
@@ -0,0 +1,2298 @@
|
|
1
|
+
use crate::component::func::{Func, LiftContext, LowerContext, Options};
|
2
|
+
use crate::component::storage::{storage_as_slice, storage_as_slice_mut};
|
3
|
+
use crate::store::StoreOpaque;
|
4
|
+
use crate::{AsContext, AsContextMut, StoreContext, ValRaw};
|
5
|
+
use anyhow::{anyhow, bail, Context, Result};
|
6
|
+
use std::borrow::Cow;
|
7
|
+
use std::fmt;
|
8
|
+
use std::marker;
|
9
|
+
use std::mem::{self, MaybeUninit};
|
10
|
+
use std::str;
|
11
|
+
use std::sync::Arc;
|
12
|
+
use wasmtime_environ::component::{
|
13
|
+
CanonicalAbiInfo, ComponentTypes, InterfaceType, StringEncoding, VariantInfo, MAX_FLAT_PARAMS,
|
14
|
+
MAX_FLAT_RESULTS,
|
15
|
+
};
|
16
|
+
|
17
|
+
/// A statically-typed version of [`Func`] which takes `Params` as input and
|
18
|
+
/// returns `Return`.
|
19
|
+
///
|
20
|
+
/// This is an efficient way to invoke a WebAssembly component where if the
|
21
|
+
/// inputs and output are statically known this can eschew the vast majority of
|
22
|
+
/// machinery and checks when calling WebAssembly. This is the most optimized
|
23
|
+
/// way to call a WebAssembly component.
|
24
|
+
///
|
25
|
+
/// Note that like [`Func`] this is a pointer within a [`Store`](crate::Store)
|
26
|
+
/// and usage will panic if used with the wrong store.
|
27
|
+
///
|
28
|
+
/// This type is primarily created with the [`Func::typed`] API.
|
29
|
+
pub struct TypedFunc<Params, Return> {
|
30
|
+
func: Func,
|
31
|
+
|
32
|
+
// The definition of this field is somewhat subtle and may be surprising.
|
33
|
+
// Naively one might expect something like
|
34
|
+
//
|
35
|
+
// _marker: marker::PhantomData<fn(Params) -> Return>,
|
36
|
+
//
|
37
|
+
// Since this is a function pointer after all. The problem with this
|
38
|
+
// definition though is that it imposes the wrong variance on `Params` from
|
39
|
+
// what we want. Abstractly a `fn(Params)` is able to store `Params` within
|
40
|
+
// it meaning you can only give it `Params` that live longer than the
|
41
|
+
// function pointer.
|
42
|
+
//
|
43
|
+
// With a component model function, however, we're always copying data from
|
44
|
+
// the host into the guest, so we are never storing pointers to `Params`
|
45
|
+
// into the guest outside the duration of a `call`, meaning we can actually
|
46
|
+
// accept values in `TypedFunc::call` which live for a shorter duration
|
47
|
+
// than the `Params` argument on the struct.
|
48
|
+
//
|
49
|
+
// This all means that we don't use a phantom function pointer, but instead
|
50
|
+
// feign phantom storage here to get the variance desired.
|
51
|
+
_marker: marker::PhantomData<(Params, Return)>,
|
52
|
+
}
|
53
|
+
|
54
|
+
impl<Params, Return> Copy for TypedFunc<Params, Return> {}
|
55
|
+
|
56
|
+
impl<Params, Return> Clone for TypedFunc<Params, Return> {
|
57
|
+
fn clone(&self) -> TypedFunc<Params, Return> {
|
58
|
+
*self
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
impl<Params, Return> TypedFunc<Params, Return>
|
63
|
+
where
|
64
|
+
Params: ComponentNamedList + Lower,
|
65
|
+
Return: ComponentNamedList + Lift,
|
66
|
+
{
|
67
|
+
/// Creates a new [`TypedFunc`] from the provided component [`Func`],
|
68
|
+
/// unsafely asserting that the underlying function takes `Params` as
|
69
|
+
/// input and returns `Return`.
|
70
|
+
///
|
71
|
+
/// # Unsafety
|
72
|
+
///
|
73
|
+
/// This is an unsafe function because it does not verify that the [`Func`]
|
74
|
+
/// provided actually implements this signature. It's up to the caller to
|
75
|
+
/// have performed some other sort of check to ensure that the signature is
|
76
|
+
/// correct.
|
77
|
+
pub unsafe fn new_unchecked(func: Func) -> TypedFunc<Params, Return> {
|
78
|
+
TypedFunc {
|
79
|
+
_marker: marker::PhantomData,
|
80
|
+
func,
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
/// Returns the underlying un-typed [`Func`] that this [`TypedFunc`]
|
85
|
+
/// references.
|
86
|
+
pub fn func(&self) -> &Func {
|
87
|
+
&self.func
|
88
|
+
}
|
89
|
+
|
90
|
+
/// Calls the underlying WebAssembly component function using the provided
|
91
|
+
/// `params` as input.
|
92
|
+
///
|
93
|
+
/// This method is used to enter into a component. Execution happens within
|
94
|
+
/// the `store` provided. The `params` are copied into WebAssembly memory
|
95
|
+
/// as appropriate and a core wasm function is invoked.
|
96
|
+
///
|
97
|
+
/// # Post-return
|
98
|
+
///
|
99
|
+
/// In the component model each function can have a "post return" specified
|
100
|
+
/// which allows cleaning up the arguments returned to the host. For example
|
101
|
+
/// if WebAssembly returns a string to the host then it might be a uniquely
|
102
|
+
/// allocated string which, after the host finishes processing it, needs to
|
103
|
+
/// be deallocated in the wasm instance's own linear memory to prevent
|
104
|
+
/// memory leaks in wasm itself. The `post-return` canonical abi option is
|
105
|
+
/// used to configured this.
|
106
|
+
///
|
107
|
+
/// To accommodate this feature of the component model after invoking a
|
108
|
+
/// function via [`TypedFunc::call`] you must next invoke
|
109
|
+
/// [`TypedFunc::post_return`]. Note that the return value of the function
|
110
|
+
/// should be processed between these two function calls. The return value
|
111
|
+
/// continues to be usable from an embedder's perspective after
|
112
|
+
/// `post_return` is called, but after `post_return` is invoked it may no
|
113
|
+
/// longer retain the same value that the wasm module originally returned.
|
114
|
+
///
|
115
|
+
/// Also note that [`TypedFunc::post_return`] must be invoked irrespective
|
116
|
+
/// of whether the canonical ABI option `post-return` was configured or not.
|
117
|
+
/// This means that embedders must unconditionally call
|
118
|
+
/// [`TypedFunc::post_return`] when a function returns. If this function
|
119
|
+
/// call returns an error, however, then [`TypedFunc::post_return`] is not
|
120
|
+
/// required.
|
121
|
+
///
|
122
|
+
/// # Errors
|
123
|
+
///
|
124
|
+
/// This function can return an error for a number of reasons:
|
125
|
+
///
|
126
|
+
/// * If the wasm itself traps during execution.
|
127
|
+
/// * If the wasm traps while copying arguments into memory.
|
128
|
+
/// * If the wasm provides bad allocation pointers when copying arguments
|
129
|
+
/// into memory.
|
130
|
+
/// * If the wasm returns a value which violates the canonical ABI.
|
131
|
+
/// * If this function's instances cannot be entered, for example if the
|
132
|
+
/// instance is currently calling a host function.
|
133
|
+
/// * If a previous function call occurred and the corresponding
|
134
|
+
/// `post_return` hasn't been invoked yet.
|
135
|
+
///
|
136
|
+
/// In general there are many ways that things could go wrong when copying
|
137
|
+
/// types in and out of a wasm module with the canonical ABI, and certain
|
138
|
+
/// error conditions are specific to certain types. For example a
|
139
|
+
/// WebAssembly module can't return an invalid `char`. When allocating space
|
140
|
+
/// for this host to copy a string into the returned pointer must be
|
141
|
+
/// in-bounds in memory.
|
142
|
+
///
|
143
|
+
/// If an error happens then the error should contain detailed enough
|
144
|
+
/// information to understand which part of the canonical ABI went wrong
|
145
|
+
/// and what to inspect.
|
146
|
+
///
|
147
|
+
/// # Panics
|
148
|
+
///
|
149
|
+
/// Panics if this is called on a function in an asynchronous store. This
|
150
|
+
/// only works with functions defined within a synchonous store. Also
|
151
|
+
/// panics if `store` does not own this function.
|
152
|
+
pub fn call(&self, store: impl AsContextMut, params: Params) -> Result<Return> {
|
153
|
+
assert!(
|
154
|
+
!store.as_context().async_support(),
|
155
|
+
"must use `call_async` when async support is enabled on the config"
|
156
|
+
);
|
157
|
+
self.call_impl(store, params)
|
158
|
+
}
|
159
|
+
|
160
|
+
/// Exactly like [`Self::call`], except for use on asynchronous stores.
|
161
|
+
///
|
162
|
+
/// # Panics
|
163
|
+
///
|
164
|
+
/// Panics if this is called on a function in a synchronous store. This
|
165
|
+
/// only works with functions defined within an asynchronous store. Also
|
166
|
+
/// panics if `store` does not own this function.
|
167
|
+
#[cfg(feature = "async")]
|
168
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
169
|
+
pub async fn call_async<T>(
|
170
|
+
&self,
|
171
|
+
mut store: impl AsContextMut<Data = T>,
|
172
|
+
params: Params,
|
173
|
+
) -> Result<Return>
|
174
|
+
where
|
175
|
+
T: Send,
|
176
|
+
Params: Send + Sync,
|
177
|
+
Return: Send + Sync,
|
178
|
+
{
|
179
|
+
let mut store = store.as_context_mut();
|
180
|
+
assert!(
|
181
|
+
store.0.async_support(),
|
182
|
+
"cannot use `call_async` when async support is not enabled on the config"
|
183
|
+
);
|
184
|
+
store
|
185
|
+
.on_fiber(|store| self.call_impl(store, params))
|
186
|
+
.await?
|
187
|
+
}
|
188
|
+
|
189
|
+
fn call_impl(&self, mut store: impl AsContextMut, params: Params) -> Result<Return> {
|
190
|
+
let store = &mut store.as_context_mut();
|
191
|
+
// Note that this is in theory simpler than it might read at this time.
|
192
|
+
// Here we're doing a runtime dispatch on the `flatten_count` for the
|
193
|
+
// params/results to see whether they're inbounds. This creates 4 cases
|
194
|
+
// to handle. In reality this is a highly optimizable branch where LLVM
|
195
|
+
// will easily figure out that only one branch here is taken.
|
196
|
+
//
|
197
|
+
// Otherwise this current construction is done to ensure that the stack
|
198
|
+
// space reserved for the params/results is always of the appropriate
|
199
|
+
// size (as the params/results needed differ depending on the "flatten"
|
200
|
+
// count)
|
201
|
+
if Params::flatten_count() <= MAX_FLAT_PARAMS {
|
202
|
+
if Return::flatten_count() <= MAX_FLAT_RESULTS {
|
203
|
+
self.func.call_raw(
|
204
|
+
store,
|
205
|
+
¶ms,
|
206
|
+
Self::lower_stack_args,
|
207
|
+
Self::lift_stack_result,
|
208
|
+
)
|
209
|
+
} else {
|
210
|
+
self.func.call_raw(
|
211
|
+
store,
|
212
|
+
¶ms,
|
213
|
+
Self::lower_stack_args,
|
214
|
+
Self::lift_heap_result,
|
215
|
+
)
|
216
|
+
}
|
217
|
+
} else {
|
218
|
+
if Return::flatten_count() <= MAX_FLAT_RESULTS {
|
219
|
+
self.func.call_raw(
|
220
|
+
store,
|
221
|
+
¶ms,
|
222
|
+
Self::lower_heap_args,
|
223
|
+
Self::lift_stack_result,
|
224
|
+
)
|
225
|
+
} else {
|
226
|
+
self.func.call_raw(
|
227
|
+
store,
|
228
|
+
¶ms,
|
229
|
+
Self::lower_heap_args,
|
230
|
+
Self::lift_heap_result,
|
231
|
+
)
|
232
|
+
}
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
/// Lower parameters directly onto the stack specified by the `dst`
|
237
|
+
/// location.
|
238
|
+
///
|
239
|
+
/// This is only valid to call when the "flatten count" is small enough, or
|
240
|
+
/// when the canonical ABI says arguments go through the stack rather than
|
241
|
+
/// the heap.
|
242
|
+
fn lower_stack_args<T>(
|
243
|
+
cx: &mut LowerContext<'_, T>,
|
244
|
+
params: &Params,
|
245
|
+
ty: InterfaceType,
|
246
|
+
dst: &mut MaybeUninit<Params::Lower>,
|
247
|
+
) -> Result<()> {
|
248
|
+
assert!(Params::flatten_count() <= MAX_FLAT_PARAMS);
|
249
|
+
params.lower(cx, ty, dst)?;
|
250
|
+
Ok(())
|
251
|
+
}
|
252
|
+
|
253
|
+
/// Lower parameters onto a heap-allocated location.
|
254
|
+
///
|
255
|
+
/// This is used when the stack space to be used for the arguments is above
|
256
|
+
/// the `MAX_FLAT_PARAMS` threshold. Here the wasm's `realloc` function is
|
257
|
+
/// invoked to allocate space and then parameters are stored at that heap
|
258
|
+
/// pointer location.
|
259
|
+
fn lower_heap_args<T>(
|
260
|
+
cx: &mut LowerContext<'_, T>,
|
261
|
+
params: &Params,
|
262
|
+
ty: InterfaceType,
|
263
|
+
dst: &mut MaybeUninit<ValRaw>,
|
264
|
+
) -> Result<()> {
|
265
|
+
assert!(Params::flatten_count() > MAX_FLAT_PARAMS);
|
266
|
+
|
267
|
+
// Memory must exist via validation if the arguments are stored on the
|
268
|
+
// heap, so we can create a `MemoryMut` at this point. Afterwards
|
269
|
+
// `realloc` is used to allocate space for all the arguments and then
|
270
|
+
// they're all stored in linear memory.
|
271
|
+
//
|
272
|
+
// Note that `realloc` will bake in a check that the returned pointer is
|
273
|
+
// in-bounds.
|
274
|
+
let ptr = cx.realloc(0, 0, Params::ALIGN32, Params::SIZE32)?;
|
275
|
+
params.store(cx, ty, ptr)?;
|
276
|
+
|
277
|
+
// Note that the pointer here is stored as a 64-bit integer. This allows
|
278
|
+
// this to work with either 32 or 64-bit memories. For a 32-bit memory
|
279
|
+
// it'll just ignore the upper 32 zero bits, and for 64-bit memories
|
280
|
+
// this'll have the full 64-bits. Note that for 32-bit memories the call
|
281
|
+
// to `realloc` above guarantees that the `ptr` is in-bounds meaning
|
282
|
+
// that we will know that the zero-extended upper bits of `ptr` are
|
283
|
+
// guaranteed to be zero.
|
284
|
+
//
|
285
|
+
// This comment about 64-bit integers is also referred to below with
|
286
|
+
// "WRITEPTR64".
|
287
|
+
dst.write(ValRaw::i64(ptr as i64));
|
288
|
+
|
289
|
+
Ok(())
|
290
|
+
}
|
291
|
+
|
292
|
+
/// Lift the result of a function directly from the stack result.
|
293
|
+
///
|
294
|
+
/// This is only used when the result fits in the maximum number of stack
|
295
|
+
/// slots.
|
296
|
+
fn lift_stack_result(
|
297
|
+
cx: &LiftContext<'_>,
|
298
|
+
ty: InterfaceType,
|
299
|
+
dst: &Return::Lower,
|
300
|
+
) -> Result<Return> {
|
301
|
+
assert!(Return::flatten_count() <= MAX_FLAT_RESULTS);
|
302
|
+
Return::lift(cx, ty, dst)
|
303
|
+
}
|
304
|
+
|
305
|
+
/// Lift the result of a function where the result is stored indirectly on
|
306
|
+
/// the heap.
|
307
|
+
fn lift_heap_result(cx: &LiftContext<'_>, ty: InterfaceType, dst: &ValRaw) -> Result<Return> {
|
308
|
+
assert!(Return::flatten_count() > MAX_FLAT_RESULTS);
|
309
|
+
// FIXME: needs to read an i64 for memory64
|
310
|
+
let ptr = usize::try_from(dst.get_u32())?;
|
311
|
+
if ptr % usize::try_from(Return::ALIGN32)? != 0 {
|
312
|
+
bail!("return pointer not aligned");
|
313
|
+
}
|
314
|
+
|
315
|
+
let bytes = cx
|
316
|
+
.memory()
|
317
|
+
.get(ptr..)
|
318
|
+
.and_then(|b| b.get(..Return::SIZE32))
|
319
|
+
.ok_or_else(|| anyhow::anyhow!("pointer out of bounds of memory"))?;
|
320
|
+
Return::load(cx, ty, bytes)
|
321
|
+
}
|
322
|
+
|
323
|
+
/// See [`Func::post_return`]
|
324
|
+
pub fn post_return(&self, store: impl AsContextMut) -> Result<()> {
|
325
|
+
self.func.post_return(store)
|
326
|
+
}
|
327
|
+
|
328
|
+
/// See [`Func::post_return_async`]
|
329
|
+
#[cfg(feature = "async")]
|
330
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
331
|
+
pub async fn post_return_async<T: Send>(
|
332
|
+
&self,
|
333
|
+
store: impl AsContextMut<Data = T>,
|
334
|
+
) -> Result<()> {
|
335
|
+
self.func.post_return_async(store).await
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
339
|
+
/// A trait representing a static list of named types that can be passed to or
|
340
|
+
/// returned from a [`TypedFunc`].
|
341
|
+
///
|
342
|
+
/// This trait is implemented for a number of tuple types and is not expected
|
343
|
+
/// to be implemented externally. The contents of this trait are hidden as it's
|
344
|
+
/// intended to be an implementation detail of Wasmtime. The contents of this
|
345
|
+
/// trait are not covered by Wasmtime's stability guarantees.
|
346
|
+
///
|
347
|
+
/// For more information about this trait see [`Func::typed`] and
|
348
|
+
/// [`TypedFunc`].
|
349
|
+
//
|
350
|
+
// Note that this is an `unsafe` trait, and the unsafety means that
|
351
|
+
// implementations of this trait must be correct or otherwise [`TypedFunc`]
|
352
|
+
// would not be memory safe. The main reason this is `unsafe` is the
|
353
|
+
// `typecheck` function which must operate correctly relative to the `AsTuple`
|
354
|
+
// interpretation of the implementor.
|
355
|
+
pub unsafe trait ComponentNamedList: ComponentType {}
|
356
|
+
|
357
|
+
/// A trait representing types which can be passed to and read from components
|
358
|
+
/// with the canonical ABI.
|
359
|
+
///
|
360
|
+
/// This trait is implemented for Rust types which can be communicated to
|
361
|
+
/// components. This is implemented for Rust types which correspond to
|
362
|
+
/// interface types in the component model of WebAssembly. The [`Func::typed`]
|
363
|
+
/// and [`TypedFunc`] Rust items are the main consumers of this trait.
|
364
|
+
///
|
365
|
+
/// For more information on this trait see the examples in [`Func::typed`].
|
366
|
+
///
|
367
|
+
/// The contents of this trait are hidden as it's intended to be an
|
368
|
+
/// implementation detail of Wasmtime. The contents of this trait are not
|
369
|
+
/// covered by Wasmtime's stability guarantees.
|
370
|
+
//
|
371
|
+
// Note that this is an `unsafe` trait as `TypedFunc`'s safety heavily relies on
|
372
|
+
// the correctness of the implementations of this trait. Some ways in which this
|
373
|
+
// trait must be correct to be safe are:
|
374
|
+
//
|
375
|
+
// * The `Lower` associated type must be a `ValRaw` sequence. It doesn't have to
|
376
|
+
// literally be `[ValRaw; N]` but when laid out in memory it must be adjacent
|
377
|
+
// `ValRaw` values and have a multiple of the size of `ValRaw` and the same
|
378
|
+
// alignment.
|
379
|
+
//
|
380
|
+
// * The `lower` function must initialize the bits within `Lower` that are going
|
381
|
+
// to be read by the trampoline that's used to enter core wasm. A trampoline
|
382
|
+
// is passed `*mut Lower` and will read the canonical abi arguments in
|
383
|
+
// sequence, so all of the bits must be correctly initialized.
|
384
|
+
//
|
385
|
+
// * The `size` and `align` functions must be correct for this value stored in
|
386
|
+
// the canonical ABI. The `Cursor<T>` iteration of these bytes rely on this
|
387
|
+
// for correctness as they otherwise eschew bounds-checking.
|
388
|
+
//
|
389
|
+
// There are likely some other correctness issues which aren't documented as
|
390
|
+
// well, this isn't intended to be an exhaustive list. It suffices to say,
|
391
|
+
// though, that correctness bugs in this trait implementation are highly likely
|
392
|
+
// to lead to security bugs, which again leads to the `unsafe` in the trait.
|
393
|
+
//
|
394
|
+
// Also note that this trait specifically is not sealed because we have a proc
|
395
|
+
// macro that generates implementations of this trait for external types in a
|
396
|
+
// `#[derive]`-like fashion.
|
397
|
+
pub unsafe trait ComponentType {
|
398
|
+
/// Representation of the "lowered" form of this component value.
|
399
|
+
///
|
400
|
+
/// Lowerings lower into core wasm values which are represented by `ValRaw`.
|
401
|
+
/// This `Lower` type must be a list of `ValRaw` as either a literal array
|
402
|
+
/// or a struct where every field is a `ValRaw`. This must be `Copy` (as
|
403
|
+
/// `ValRaw` is `Copy`) and support all byte patterns. This being correct is
|
404
|
+
/// one reason why the trait is unsafe.
|
405
|
+
#[doc(hidden)]
|
406
|
+
type Lower: Copy;
|
407
|
+
|
408
|
+
/// The information about this type's canonical ABI (size/align/etc).
|
409
|
+
#[doc(hidden)]
|
410
|
+
const ABI: CanonicalAbiInfo;
|
411
|
+
|
412
|
+
#[doc(hidden)]
|
413
|
+
const SIZE32: usize = Self::ABI.size32 as usize;
|
414
|
+
#[doc(hidden)]
|
415
|
+
const ALIGN32: u32 = Self::ABI.align32;
|
416
|
+
|
417
|
+
#[doc(hidden)]
|
418
|
+
const IS_RUST_UNIT_TYPE: bool = false;
|
419
|
+
|
420
|
+
/// Returns the number of core wasm abi values will be used to represent
|
421
|
+
/// this type in its lowered form.
|
422
|
+
///
|
423
|
+
/// This divides the size of `Self::Lower` by the size of `ValRaw`.
|
424
|
+
#[doc(hidden)]
|
425
|
+
fn flatten_count() -> usize {
|
426
|
+
assert!(mem::size_of::<Self::Lower>() % mem::size_of::<ValRaw>() == 0);
|
427
|
+
assert!(mem::align_of::<Self::Lower>() == mem::align_of::<ValRaw>());
|
428
|
+
mem::size_of::<Self::Lower>() / mem::size_of::<ValRaw>()
|
429
|
+
}
|
430
|
+
|
431
|
+
/// Performs a type-check to see whether this component value type matches
|
432
|
+
/// the interface type `ty` provided.
|
433
|
+
#[doc(hidden)]
|
434
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()>;
|
435
|
+
}
|
436
|
+
|
437
|
+
#[doc(hidden)]
|
438
|
+
pub unsafe trait ComponentVariant: ComponentType {
|
439
|
+
const CASES: &'static [Option<CanonicalAbiInfo>];
|
440
|
+
const INFO: VariantInfo = VariantInfo::new_static(Self::CASES);
|
441
|
+
const PAYLOAD_OFFSET32: usize = Self::INFO.payload_offset32 as usize;
|
442
|
+
}
|
443
|
+
|
444
|
+
/// Host types which can be passed to WebAssembly components.
|
445
|
+
///
|
446
|
+
/// This trait is implemented for all types that can be passed to components
|
447
|
+
/// either as parameters of component exports or returns of component imports.
|
448
|
+
/// This trait represents the ability to convert from the native host
|
449
|
+
/// representation to the canonical ABI.
|
450
|
+
//
|
451
|
+
// TODO: #[derive(Lower)]
|
452
|
+
// TODO: more docs here
|
453
|
+
pub unsafe trait Lower: ComponentType {
|
454
|
+
/// Performs the "lower" function in the canonical ABI.
|
455
|
+
///
|
456
|
+
/// This method will lower the current value into a component. The `lower`
|
457
|
+
/// function performs a "flat" lowering into the `dst` specified which is
|
458
|
+
/// allowed to be uninitialized entering this method but is guaranteed to be
|
459
|
+
/// fully initialized if the method returns `Ok(())`.
|
460
|
+
///
|
461
|
+
/// The `cx` context provided is the context within which this lowering is
|
462
|
+
/// happening. This contains information such as canonical options specified
|
463
|
+
/// (e.g. string encodings, memories, etc), the store itself, along with
|
464
|
+
/// type information.
|
465
|
+
///
|
466
|
+
/// The `ty` parameter is the destination type that is being lowered into.
|
467
|
+
/// For example this is the component's "view" of the type that is being
|
468
|
+
/// lowered. This is guaranteed to have passed a `typecheck` earlier.
|
469
|
+
///
|
470
|
+
/// This will only be called if `typecheck` passes for `Op::Lower`.
|
471
|
+
#[doc(hidden)]
|
472
|
+
fn lower<T>(
|
473
|
+
&self,
|
474
|
+
cx: &mut LowerContext<'_, T>,
|
475
|
+
ty: InterfaceType,
|
476
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
477
|
+
) -> Result<()>;
|
478
|
+
|
479
|
+
/// Performs the "store" operation in the canonical ABI.
|
480
|
+
///
|
481
|
+
/// This function will store `self` into the linear memory described by
|
482
|
+
/// `cx` at the `offset` provided.
|
483
|
+
///
|
484
|
+
/// It is expected that `offset` is a valid offset in memory for
|
485
|
+
/// `Self::SIZE32` bytes. At this time that's not an unsafe contract as it's
|
486
|
+
/// always re-checked on all stores, but this is something that will need to
|
487
|
+
/// be improved in the future to remove extra bounds checks. For now this
|
488
|
+
/// function will panic if there's a bug and `offset` isn't valid within
|
489
|
+
/// memory.
|
490
|
+
///
|
491
|
+
/// The `ty` type information passed here is the same as the type
|
492
|
+
/// information passed to `lower` above, and is the component's own view of
|
493
|
+
/// what the resulting type should be.
|
494
|
+
///
|
495
|
+
/// This will only be called if `typecheck` passes for `Op::Lower`.
|
496
|
+
#[doc(hidden)]
|
497
|
+
fn store<T>(
|
498
|
+
&self,
|
499
|
+
cx: &mut LowerContext<'_, T>,
|
500
|
+
ty: InterfaceType,
|
501
|
+
offset: usize,
|
502
|
+
) -> Result<()>;
|
503
|
+
}
|
504
|
+
|
505
|
+
/// Host types which can be created from the canonical ABI.
|
506
|
+
//
|
507
|
+
// TODO: #[derive(Lower)]
|
508
|
+
// TODO: more docs here
|
509
|
+
pub unsafe trait Lift: Sized + ComponentType {
|
510
|
+
/// Performs the "lift" operation in the canonical ABI.
|
511
|
+
///
|
512
|
+
/// This function performs a "flat" lift operation from the `src` specified
|
513
|
+
/// which is a sequence of core wasm values. The lifting operation will
|
514
|
+
/// validate core wasm values and produce a `Self` on success.
|
515
|
+
///
|
516
|
+
/// The `cx` provided contains contextual information such as the store
|
517
|
+
/// that's being loaded from, canonical options, and type information.
|
518
|
+
///
|
519
|
+
/// The `ty` parameter is the origin component's specification for what the
|
520
|
+
/// type that is being lifted is. For example this is the record type or the
|
521
|
+
/// resource type that is being lifted.
|
522
|
+
///
|
523
|
+
/// Note that this has a default implementation but if `typecheck` passes
|
524
|
+
/// for `Op::Lift` this needs to be overridden.
|
525
|
+
#[doc(hidden)]
|
526
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self>;
|
527
|
+
|
528
|
+
/// Performs the "load" operation in the canonical ABI.
|
529
|
+
///
|
530
|
+
/// This will read the `bytes` provided, which are a sub-slice into the
|
531
|
+
/// linear memory described by `cx`. The `bytes` array provided is
|
532
|
+
/// guaranteed to be `Self::SIZE32` bytes large. All of memory is then also
|
533
|
+
/// available through `cx` for bounds-checks and such as necessary for
|
534
|
+
/// strings/lists.
|
535
|
+
///
|
536
|
+
/// The `ty` argument is the type that's being loaded, as described by the
|
537
|
+
/// original component.
|
538
|
+
///
|
539
|
+
/// Note that this has a default implementation but if `typecheck` passes
|
540
|
+
/// for `Op::Lift` this needs to be overridden.
|
541
|
+
#[doc(hidden)]
|
542
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self>;
|
543
|
+
}
|
544
|
+
|
545
|
+
// Macro to help generate "forwarding implementations" of `ComponentType` to
|
546
|
+
// another type, used for wrappers in Rust like `&T`, `Box<T>`, etc. Note that
|
547
|
+
// these wrappers only implement lowering because lifting native Rust types
|
548
|
+
// cannot be done.
|
549
|
+
macro_rules! forward_type_impls {
|
550
|
+
($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
|
551
|
+
unsafe impl <$($generics)*> ComponentType for $a {
|
552
|
+
type Lower = <$b as ComponentType>::Lower;
|
553
|
+
|
554
|
+
const ABI: CanonicalAbiInfo = <$b as ComponentType>::ABI;
|
555
|
+
|
556
|
+
#[inline]
|
557
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
|
558
|
+
<$b as ComponentType>::typecheck(ty, types)
|
559
|
+
}
|
560
|
+
}
|
561
|
+
)*)
|
562
|
+
}
|
563
|
+
|
564
|
+
forward_type_impls! {
|
565
|
+
(T: ComponentType + ?Sized) &'_ T => T,
|
566
|
+
(T: ComponentType + ?Sized) Box<T> => T,
|
567
|
+
(T: ComponentType + ?Sized) std::rc::Rc<T> => T,
|
568
|
+
(T: ComponentType + ?Sized) std::sync::Arc<T> => T,
|
569
|
+
() String => str,
|
570
|
+
(T: ComponentType) Vec<T> => [T],
|
571
|
+
}
|
572
|
+
|
573
|
+
macro_rules! forward_lowers {
|
574
|
+
($(($($generics:tt)*) $a:ty => $b:ty,)*) => ($(
|
575
|
+
unsafe impl <$($generics)*> Lower for $a {
|
576
|
+
fn lower<U>(
|
577
|
+
&self,
|
578
|
+
cx: &mut LowerContext<'_, U>,
|
579
|
+
ty: InterfaceType,
|
580
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
581
|
+
) -> Result<()> {
|
582
|
+
<$b as Lower>::lower(self, cx, ty, dst)
|
583
|
+
}
|
584
|
+
|
585
|
+
fn store<U>(
|
586
|
+
&self,
|
587
|
+
cx: &mut LowerContext<'_, U>,
|
588
|
+
ty: InterfaceType,
|
589
|
+
offset: usize,
|
590
|
+
) -> Result<()> {
|
591
|
+
<$b as Lower>::store(self, cx, ty, offset)
|
592
|
+
}
|
593
|
+
}
|
594
|
+
)*)
|
595
|
+
}
|
596
|
+
|
597
|
+
forward_lowers! {
|
598
|
+
(T: Lower + ?Sized) &'_ T => T,
|
599
|
+
(T: Lower + ?Sized) Box<T> => T,
|
600
|
+
(T: Lower + ?Sized) std::rc::Rc<T> => T,
|
601
|
+
(T: Lower + ?Sized) std::sync::Arc<T> => T,
|
602
|
+
() String => str,
|
603
|
+
(T: Lower) Vec<T> => [T],
|
604
|
+
}
|
605
|
+
|
606
|
+
macro_rules! forward_string_lifts {
|
607
|
+
($($a:ty,)*) => ($(
|
608
|
+
unsafe impl Lift for $a {
|
609
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
610
|
+
Ok(<WasmStr as Lift>::lift(cx, ty, src)?.to_str_from_store(cx.store)?.into())
|
611
|
+
}
|
612
|
+
|
613
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
614
|
+
Ok(<WasmStr as Lift>::load(cx, ty, bytes)?.to_str_from_store(cx.store)?.into())
|
615
|
+
}
|
616
|
+
}
|
617
|
+
)*)
|
618
|
+
}
|
619
|
+
|
620
|
+
forward_string_lifts! {
|
621
|
+
Box<str>,
|
622
|
+
std::rc::Rc<str>,
|
623
|
+
std::sync::Arc<str>,
|
624
|
+
String,
|
625
|
+
}
|
626
|
+
|
627
|
+
macro_rules! forward_list_lifts {
|
628
|
+
($($a:ty,)*) => ($(
|
629
|
+
unsafe impl <T: Lift> Lift for $a {
|
630
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
631
|
+
let list = <WasmList::<T> as Lift>::lift(cx, ty, src)?;
|
632
|
+
(0..list.len).map(|index| list.get_from_store(cx.store, index).unwrap()).collect()
|
633
|
+
}
|
634
|
+
|
635
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
636
|
+
let list = <WasmList::<T> as Lift>::load(cx, ty, bytes)?;
|
637
|
+
(0..list.len).map(|index| list.get_from_store(cx.store, index).unwrap()).collect()
|
638
|
+
}
|
639
|
+
}
|
640
|
+
)*)
|
641
|
+
}
|
642
|
+
|
643
|
+
forward_list_lifts! {
|
644
|
+
Box<[T]>,
|
645
|
+
std::rc::Rc<[T]>,
|
646
|
+
std::sync::Arc<[T]>,
|
647
|
+
Vec<T>,
|
648
|
+
}
|
649
|
+
|
650
|
+
// Macro to help generate `ComponentType` implementations for primitive types
|
651
|
+
// such as integers, char, bool, etc.
|
652
|
+
macro_rules! integers {
|
653
|
+
($($primitive:ident = $ty:ident in $field:ident/$get:ident with abi:$abi:ident,)*) => ($(
|
654
|
+
unsafe impl ComponentType for $primitive {
|
655
|
+
type Lower = ValRaw;
|
656
|
+
|
657
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
|
658
|
+
|
659
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
660
|
+
match ty {
|
661
|
+
InterfaceType::$ty => Ok(()),
|
662
|
+
other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
|
663
|
+
}
|
664
|
+
}
|
665
|
+
}
|
666
|
+
|
667
|
+
unsafe impl Lower for $primitive {
|
668
|
+
fn lower<T>(
|
669
|
+
&self,
|
670
|
+
_cx: &mut LowerContext<'_, T>,
|
671
|
+
ty: InterfaceType,
|
672
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
673
|
+
) -> Result<()> {
|
674
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
675
|
+
dst.write(ValRaw::$field(*self as $field));
|
676
|
+
Ok(())
|
677
|
+
}
|
678
|
+
|
679
|
+
fn store<T>(
|
680
|
+
&self,
|
681
|
+
cx: &mut LowerContext<'_, T>,
|
682
|
+
ty: InterfaceType,
|
683
|
+
offset: usize,
|
684
|
+
) -> Result<()> {
|
685
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
686
|
+
debug_assert!(offset % Self::SIZE32 == 0);
|
687
|
+
*cx.get(offset) = self.to_le_bytes();
|
688
|
+
Ok(())
|
689
|
+
}
|
690
|
+
}
|
691
|
+
|
692
|
+
unsafe impl Lift for $primitive {
|
693
|
+
#[inline]
|
694
|
+
fn lift(_cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
695
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
696
|
+
Ok(src.$get() as $primitive)
|
697
|
+
}
|
698
|
+
|
699
|
+
#[inline]
|
700
|
+
fn load(_cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
701
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
702
|
+
debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
|
703
|
+
Ok($primitive::from_le_bytes(bytes.try_into().unwrap()))
|
704
|
+
}
|
705
|
+
}
|
706
|
+
)*)
|
707
|
+
}
|
708
|
+
|
709
|
+
integers! {
|
710
|
+
i8 = S8 in i32/get_i32 with abi:SCALAR1,
|
711
|
+
u8 = U8 in u32/get_u32 with abi:SCALAR1,
|
712
|
+
i16 = S16 in i32/get_i32 with abi:SCALAR2,
|
713
|
+
u16 = U16 in u32/get_u32 with abi:SCALAR2,
|
714
|
+
i32 = S32 in i32/get_i32 with abi:SCALAR4,
|
715
|
+
u32 = U32 in u32/get_u32 with abi:SCALAR4,
|
716
|
+
i64 = S64 in i64/get_i64 with abi:SCALAR8,
|
717
|
+
u64 = U64 in u64/get_u64 with abi:SCALAR8,
|
718
|
+
}
|
719
|
+
|
720
|
+
macro_rules! floats {
|
721
|
+
($($float:ident/$get_float:ident = $ty:ident with abi:$abi:ident)*) => ($(const _: () = {
|
722
|
+
/// All floats in-and-out of the canonical abi always have their nan
|
723
|
+
/// payloads canonicalized. conveniently the `NAN` constant in rust has
|
724
|
+
/// the same representation as canonical nan, so we can use that for the
|
725
|
+
/// nan value.
|
726
|
+
#[inline]
|
727
|
+
fn canonicalize(float: $float) -> $float {
|
728
|
+
if float.is_nan() {
|
729
|
+
$float::NAN
|
730
|
+
} else {
|
731
|
+
float
|
732
|
+
}
|
733
|
+
}
|
734
|
+
|
735
|
+
unsafe impl ComponentType for $float {
|
736
|
+
type Lower = ValRaw;
|
737
|
+
|
738
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::$abi;
|
739
|
+
|
740
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
741
|
+
match ty {
|
742
|
+
InterfaceType::$ty => Ok(()),
|
743
|
+
other => bail!("expected `{}` found `{}`", desc(&InterfaceType::$ty), desc(other))
|
744
|
+
}
|
745
|
+
}
|
746
|
+
}
|
747
|
+
|
748
|
+
unsafe impl Lower for $float {
|
749
|
+
fn lower<T>(
|
750
|
+
&self,
|
751
|
+
_cx: &mut LowerContext<'_, T>,
|
752
|
+
ty: InterfaceType,
|
753
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
754
|
+
) -> Result<()> {
|
755
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
756
|
+
dst.write(ValRaw::$float(canonicalize(*self).to_bits()));
|
757
|
+
Ok(())
|
758
|
+
}
|
759
|
+
|
760
|
+
fn store<T>(
|
761
|
+
&self,
|
762
|
+
cx: &mut LowerContext<'_, T>,
|
763
|
+
ty: InterfaceType,
|
764
|
+
offset: usize,
|
765
|
+
) -> Result<()> {
|
766
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
767
|
+
debug_assert!(offset % Self::SIZE32 == 0);
|
768
|
+
let ptr = cx.get(offset);
|
769
|
+
*ptr = canonicalize(*self).to_bits().to_le_bytes();
|
770
|
+
Ok(())
|
771
|
+
}
|
772
|
+
}
|
773
|
+
|
774
|
+
unsafe impl Lift for $float {
|
775
|
+
#[inline]
|
776
|
+
fn lift(_cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
777
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
778
|
+
Ok(canonicalize($float::from_bits(src.$get_float())))
|
779
|
+
}
|
780
|
+
|
781
|
+
#[inline]
|
782
|
+
fn load(_cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
783
|
+
debug_assert!(matches!(ty, InterfaceType::$ty));
|
784
|
+
debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
|
785
|
+
Ok(canonicalize($float::from_le_bytes(bytes.try_into().unwrap())))
|
786
|
+
}
|
787
|
+
}
|
788
|
+
};)*)
|
789
|
+
}
|
790
|
+
|
791
|
+
floats! {
|
792
|
+
f32/get_f32 = Float32 with abi:SCALAR4
|
793
|
+
f64/get_f64 = Float64 with abi:SCALAR8
|
794
|
+
}
|
795
|
+
|
796
|
+
unsafe impl ComponentType for bool {
|
797
|
+
type Lower = ValRaw;
|
798
|
+
|
799
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR1;
|
800
|
+
|
801
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
802
|
+
match ty {
|
803
|
+
InterfaceType::Bool => Ok(()),
|
804
|
+
other => bail!("expected `bool` found `{}`", desc(other)),
|
805
|
+
}
|
806
|
+
}
|
807
|
+
}
|
808
|
+
|
809
|
+
unsafe impl Lower for bool {
|
810
|
+
fn lower<T>(
|
811
|
+
&self,
|
812
|
+
_cx: &mut LowerContext<'_, T>,
|
813
|
+
ty: InterfaceType,
|
814
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
815
|
+
) -> Result<()> {
|
816
|
+
debug_assert!(matches!(ty, InterfaceType::Bool));
|
817
|
+
dst.write(ValRaw::i32(*self as i32));
|
818
|
+
Ok(())
|
819
|
+
}
|
820
|
+
|
821
|
+
fn store<T>(
|
822
|
+
&self,
|
823
|
+
cx: &mut LowerContext<'_, T>,
|
824
|
+
ty: InterfaceType,
|
825
|
+
offset: usize,
|
826
|
+
) -> Result<()> {
|
827
|
+
debug_assert!(matches!(ty, InterfaceType::Bool));
|
828
|
+
debug_assert!(offset % Self::SIZE32 == 0);
|
829
|
+
cx.get::<1>(offset)[0] = *self as u8;
|
830
|
+
Ok(())
|
831
|
+
}
|
832
|
+
}
|
833
|
+
|
834
|
+
unsafe impl Lift for bool {
|
835
|
+
#[inline]
|
836
|
+
fn lift(_cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
837
|
+
debug_assert!(matches!(ty, InterfaceType::Bool));
|
838
|
+
match src.get_i32() {
|
839
|
+
0 => Ok(false),
|
840
|
+
_ => Ok(true),
|
841
|
+
}
|
842
|
+
}
|
843
|
+
|
844
|
+
#[inline]
|
845
|
+
fn load(_cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
846
|
+
debug_assert!(matches!(ty, InterfaceType::Bool));
|
847
|
+
match bytes[0] {
|
848
|
+
0 => Ok(false),
|
849
|
+
_ => Ok(true),
|
850
|
+
}
|
851
|
+
}
|
852
|
+
}
|
853
|
+
|
854
|
+
unsafe impl ComponentType for char {
|
855
|
+
type Lower = ValRaw;
|
856
|
+
|
857
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::SCALAR4;
|
858
|
+
|
859
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
860
|
+
match ty {
|
861
|
+
InterfaceType::Char => Ok(()),
|
862
|
+
other => bail!("expected `char` found `{}`", desc(other)),
|
863
|
+
}
|
864
|
+
}
|
865
|
+
}
|
866
|
+
|
867
|
+
unsafe impl Lower for char {
|
868
|
+
fn lower<T>(
|
869
|
+
&self,
|
870
|
+
_cx: &mut LowerContext<'_, T>,
|
871
|
+
ty: InterfaceType,
|
872
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
873
|
+
) -> Result<()> {
|
874
|
+
debug_assert!(matches!(ty, InterfaceType::Char));
|
875
|
+
dst.write(ValRaw::u32(u32::from(*self)));
|
876
|
+
Ok(())
|
877
|
+
}
|
878
|
+
|
879
|
+
fn store<T>(
|
880
|
+
&self,
|
881
|
+
cx: &mut LowerContext<'_, T>,
|
882
|
+
ty: InterfaceType,
|
883
|
+
offset: usize,
|
884
|
+
) -> Result<()> {
|
885
|
+
debug_assert!(matches!(ty, InterfaceType::Char));
|
886
|
+
debug_assert!(offset % Self::SIZE32 == 0);
|
887
|
+
*cx.get::<4>(offset) = u32::from(*self).to_le_bytes();
|
888
|
+
Ok(())
|
889
|
+
}
|
890
|
+
}
|
891
|
+
|
892
|
+
unsafe impl Lift for char {
|
893
|
+
#[inline]
|
894
|
+
fn lift(_cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
895
|
+
debug_assert!(matches!(ty, InterfaceType::Char));
|
896
|
+
Ok(char::try_from(src.get_u32())?)
|
897
|
+
}
|
898
|
+
|
899
|
+
#[inline]
|
900
|
+
fn load(_cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
901
|
+
debug_assert!(matches!(ty, InterfaceType::Char));
|
902
|
+
debug_assert!((bytes.as_ptr() as usize) % Self::SIZE32 == 0);
|
903
|
+
let bits = u32::from_le_bytes(bytes.try_into().unwrap());
|
904
|
+
Ok(char::try_from(bits)?)
|
905
|
+
}
|
906
|
+
}
|
907
|
+
|
908
|
+
// TODO: these probably need different constants for memory64
|
909
|
+
const UTF16_TAG: usize = 1 << 31;
|
910
|
+
const MAX_STRING_BYTE_LENGTH: usize = (1 << 31) - 1;
|
911
|
+
|
912
|
+
// Note that this is similar to `ComponentType for WasmStr` except it can only
|
913
|
+
// be used for lowering, not lifting.
|
914
|
+
unsafe impl ComponentType for str {
|
915
|
+
type Lower = [ValRaw; 2];
|
916
|
+
|
917
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
|
918
|
+
|
919
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
920
|
+
match ty {
|
921
|
+
InterfaceType::String => Ok(()),
|
922
|
+
other => bail!("expected `string` found `{}`", desc(other)),
|
923
|
+
}
|
924
|
+
}
|
925
|
+
}
|
926
|
+
|
927
|
+
unsafe impl Lower for str {
|
928
|
+
fn lower<T>(
|
929
|
+
&self,
|
930
|
+
cx: &mut LowerContext<'_, T>,
|
931
|
+
ty: InterfaceType,
|
932
|
+
dst: &mut MaybeUninit<[ValRaw; 2]>,
|
933
|
+
) -> Result<()> {
|
934
|
+
debug_assert!(matches!(ty, InterfaceType::String));
|
935
|
+
let (ptr, len) = lower_string(cx, self)?;
|
936
|
+
// See "WRITEPTR64" above for why this is always storing a 64-bit
|
937
|
+
// integer.
|
938
|
+
map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
|
939
|
+
map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
|
940
|
+
Ok(())
|
941
|
+
}
|
942
|
+
|
943
|
+
fn store<T>(
|
944
|
+
&self,
|
945
|
+
cx: &mut LowerContext<'_, T>,
|
946
|
+
ty: InterfaceType,
|
947
|
+
offset: usize,
|
948
|
+
) -> Result<()> {
|
949
|
+
debug_assert!(matches!(ty, InterfaceType::String));
|
950
|
+
debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
|
951
|
+
let (ptr, len) = lower_string(cx, self)?;
|
952
|
+
// FIXME: needs memory64 handling
|
953
|
+
*cx.get(offset + 0) = (ptr as i32).to_le_bytes();
|
954
|
+
*cx.get(offset + 4) = (len as i32).to_le_bytes();
|
955
|
+
Ok(())
|
956
|
+
}
|
957
|
+
}
|
958
|
+
|
959
|
+
fn lower_string<T>(cx: &mut LowerContext<'_, T>, string: &str) -> Result<(usize, usize)> {
|
960
|
+
// Note that in general the wasm module can't assume anything about what the
|
961
|
+
// host strings are encoded as. Additionally hosts are allowed to have
|
962
|
+
// differently-encoded strings at runtime. Finally when copying a string
|
963
|
+
// into wasm it's somewhat strict in the sense that the various patterns of
|
964
|
+
// allocation and such are already dictated for us.
|
965
|
+
//
|
966
|
+
// In general what this means is that when copying a string from the host
|
967
|
+
// into the destination we need to follow one of the cases of copying into
|
968
|
+
// WebAssembly. It doesn't particularly matter which case as long as it ends
|
969
|
+
// up in the right encoding. For example a destination encoding of
|
970
|
+
// latin1+utf16 has a number of ways to get copied into and we do something
|
971
|
+
// here that isn't the default "utf8 to latin1+utf16" since we have access
|
972
|
+
// to simd-accelerated helpers in the `encoding_rs` crate. This is ok though
|
973
|
+
// because we can fake that the host string was already stored in latin1
|
974
|
+
// format and follow that copy pattern instead.
|
975
|
+
match cx.options.string_encoding() {
|
976
|
+
// This corresponds to `store_string_copy` in the canonical ABI where
|
977
|
+
// the host's representation is utf-8 and the wasm module wants utf-8 so
|
978
|
+
// a copy is all that's needed (and the `realloc` can be precise for the
|
979
|
+
// initial memory allocation).
|
980
|
+
StringEncoding::Utf8 => {
|
981
|
+
if string.len() > MAX_STRING_BYTE_LENGTH {
|
982
|
+
bail!(
|
983
|
+
"string length of {} too large to copy into wasm",
|
984
|
+
string.len()
|
985
|
+
);
|
986
|
+
}
|
987
|
+
let ptr = cx.realloc(0, 0, 1, string.len())?;
|
988
|
+
cx.as_slice_mut()[ptr..][..string.len()].copy_from_slice(string.as_bytes());
|
989
|
+
Ok((ptr, string.len()))
|
990
|
+
}
|
991
|
+
|
992
|
+
// This corresponds to `store_utf8_to_utf16` in the canonical ABI. Here
|
993
|
+
// an over-large allocation is performed and then shrunk afterwards if
|
994
|
+
// necessary.
|
995
|
+
StringEncoding::Utf16 => {
|
996
|
+
let size = string.len() * 2;
|
997
|
+
if size > MAX_STRING_BYTE_LENGTH {
|
998
|
+
bail!(
|
999
|
+
"string length of {} too large to copy into wasm",
|
1000
|
+
string.len()
|
1001
|
+
);
|
1002
|
+
}
|
1003
|
+
let mut ptr = cx.realloc(0, 0, 2, size)?;
|
1004
|
+
let mut copied = 0;
|
1005
|
+
let bytes = &mut cx.as_slice_mut()[ptr..][..size];
|
1006
|
+
for (u, bytes) in string.encode_utf16().zip(bytes.chunks_mut(2)) {
|
1007
|
+
let u_bytes = u.to_le_bytes();
|
1008
|
+
bytes[0] = u_bytes[0];
|
1009
|
+
bytes[1] = u_bytes[1];
|
1010
|
+
copied += 1;
|
1011
|
+
}
|
1012
|
+
if (copied * 2) < size {
|
1013
|
+
ptr = cx.realloc(ptr, size, 2, copied * 2)?;
|
1014
|
+
}
|
1015
|
+
Ok((ptr, copied))
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
StringEncoding::CompactUtf16 => {
|
1019
|
+
// This corresponds to `store_string_to_latin1_or_utf16`
|
1020
|
+
let bytes = string.as_bytes();
|
1021
|
+
let mut iter = string.char_indices();
|
1022
|
+
let mut ptr = cx.realloc(0, 0, 2, bytes.len())?;
|
1023
|
+
let mut dst = &mut cx.as_slice_mut()[ptr..][..bytes.len()];
|
1024
|
+
let mut result = 0;
|
1025
|
+
while let Some((i, ch)) = iter.next() {
|
1026
|
+
// Test if this `char` fits into the latin1 encoding.
|
1027
|
+
if let Ok(byte) = u8::try_from(u32::from(ch)) {
|
1028
|
+
dst[result] = byte;
|
1029
|
+
result += 1;
|
1030
|
+
continue;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
// .. if utf16 is forced to be used then the allocation is
|
1034
|
+
// bumped up to the maximum size.
|
1035
|
+
let worst_case = bytes
|
1036
|
+
.len()
|
1037
|
+
.checked_mul(2)
|
1038
|
+
.ok_or_else(|| anyhow!("byte length overflow"))?;
|
1039
|
+
if worst_case > MAX_STRING_BYTE_LENGTH {
|
1040
|
+
bail!("byte length too large");
|
1041
|
+
}
|
1042
|
+
ptr = cx.realloc(ptr, bytes.len(), 2, worst_case)?;
|
1043
|
+
dst = &mut cx.as_slice_mut()[ptr..][..worst_case];
|
1044
|
+
|
1045
|
+
// Previously encoded latin1 bytes are inflated to their 16-bit
|
1046
|
+
// size for utf16
|
1047
|
+
for i in (0..result).rev() {
|
1048
|
+
dst[2 * i] = dst[i];
|
1049
|
+
dst[2 * i + 1] = 0;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
// and then the remainder of the string is encoded.
|
1053
|
+
for (u, bytes) in string[i..]
|
1054
|
+
.encode_utf16()
|
1055
|
+
.zip(dst[2 * result..].chunks_mut(2))
|
1056
|
+
{
|
1057
|
+
let u_bytes = u.to_le_bytes();
|
1058
|
+
bytes[0] = u_bytes[0];
|
1059
|
+
bytes[1] = u_bytes[1];
|
1060
|
+
result += 1;
|
1061
|
+
}
|
1062
|
+
if worst_case > 2 * result {
|
1063
|
+
ptr = cx.realloc(ptr, worst_case, 2, 2 * result)?;
|
1064
|
+
}
|
1065
|
+
return Ok((ptr, result | UTF16_TAG));
|
1066
|
+
}
|
1067
|
+
if result < bytes.len() {
|
1068
|
+
ptr = cx.realloc(ptr, bytes.len(), 2, result)?;
|
1069
|
+
}
|
1070
|
+
Ok((ptr, result))
|
1071
|
+
}
|
1072
|
+
}
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
/// Representation of a string located in linear memory in a WebAssembly
|
1076
|
+
/// instance.
|
1077
|
+
///
|
1078
|
+
/// This type is used with [`TypedFunc`], for example, when WebAssembly returns
|
1079
|
+
/// a string. This type cannot be used to give a string to WebAssembly, instead
|
1080
|
+
/// `&str` should be used for that (since it's coming from the host).
|
1081
|
+
///
|
1082
|
+
/// Note that this type represents an in-bounds string in linear memory, but it
|
1083
|
+
/// does not represent a valid string (e.g. valid utf-8). Validation happens
|
1084
|
+
/// when [`WasmStr::to_str`] is called.
|
1085
|
+
//
|
1086
|
+
// TODO: should probably expand this with examples
|
1087
|
+
pub struct WasmStr {
|
1088
|
+
ptr: usize,
|
1089
|
+
len: usize,
|
1090
|
+
options: Options,
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
impl WasmStr {
|
1094
|
+
fn new(ptr: usize, len: usize, cx: &LiftContext<'_>) -> Result<WasmStr> {
|
1095
|
+
let byte_len = match cx.options.string_encoding() {
|
1096
|
+
StringEncoding::Utf8 => Some(len),
|
1097
|
+
StringEncoding::Utf16 => len.checked_mul(2),
|
1098
|
+
StringEncoding::CompactUtf16 => {
|
1099
|
+
if len & UTF16_TAG == 0 {
|
1100
|
+
Some(len)
|
1101
|
+
} else {
|
1102
|
+
(len ^ UTF16_TAG).checked_mul(2)
|
1103
|
+
}
|
1104
|
+
}
|
1105
|
+
};
|
1106
|
+
match byte_len.and_then(|len| ptr.checked_add(len)) {
|
1107
|
+
Some(n) if n <= cx.memory().len() => {}
|
1108
|
+
_ => bail!("string pointer/length out of bounds of memory"),
|
1109
|
+
}
|
1110
|
+
Ok(WasmStr {
|
1111
|
+
ptr,
|
1112
|
+
len,
|
1113
|
+
options: *cx.options,
|
1114
|
+
})
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
/// Returns the underlying string that this cursor points to.
|
1118
|
+
///
|
1119
|
+
/// Note that this will internally decode the string from the wasm's
|
1120
|
+
/// encoding to utf-8 and additionally perform validation.
|
1121
|
+
///
|
1122
|
+
/// The `store` provided must be the store where this string lives to
|
1123
|
+
/// access the correct memory.
|
1124
|
+
///
|
1125
|
+
/// # Errors
|
1126
|
+
///
|
1127
|
+
/// Returns an error if the string wasn't encoded correctly (e.g. invalid
|
1128
|
+
/// utf-8).
|
1129
|
+
///
|
1130
|
+
/// # Panics
|
1131
|
+
///
|
1132
|
+
/// Panics if this string is not owned by `store`.
|
1133
|
+
//
|
1134
|
+
// TODO: should add accessors for specifically utf-8 and utf-16 that perhaps
|
1135
|
+
// in an opt-in basis don't do validation. Additionally there should be some
|
1136
|
+
// method that returns `[u16]` after validating to avoid the utf16-to-utf8
|
1137
|
+
// transcode.
|
1138
|
+
pub fn to_str<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> Result<Cow<'a, str>> {
|
1139
|
+
self.to_str_from_store(store.into().0)
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
fn to_str_from_store<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
|
1143
|
+
match self.options.string_encoding() {
|
1144
|
+
StringEncoding::Utf8 => self.decode_utf8(store),
|
1145
|
+
StringEncoding::Utf16 => self.decode_utf16(store, self.len),
|
1146
|
+
StringEncoding::CompactUtf16 => {
|
1147
|
+
if self.len & UTF16_TAG == 0 {
|
1148
|
+
self.decode_latin1(store)
|
1149
|
+
} else {
|
1150
|
+
self.decode_utf16(store, self.len ^ UTF16_TAG)
|
1151
|
+
}
|
1152
|
+
}
|
1153
|
+
}
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
fn decode_utf8<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
|
1157
|
+
let memory = self.options.memory(store);
|
1158
|
+
// Note that bounds-checking already happen in construction of `WasmStr`
|
1159
|
+
// so this is never expected to panic. This could theoretically be
|
1160
|
+
// unchecked indexing if we're feeling wild enough.
|
1161
|
+
Ok(str::from_utf8(&memory[self.ptr..][..self.len])?.into())
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
fn decode_utf16<'a>(&self, store: &'a StoreOpaque, len: usize) -> Result<Cow<'a, str>> {
|
1165
|
+
let memory = self.options.memory(store);
|
1166
|
+
// See notes in `decode_utf8` for why this is panicking indexing.
|
1167
|
+
let memory = &memory[self.ptr..][..len * 2];
|
1168
|
+
Ok(std::char::decode_utf16(
|
1169
|
+
memory
|
1170
|
+
.chunks(2)
|
1171
|
+
.map(|chunk| u16::from_le_bytes(chunk.try_into().unwrap())),
|
1172
|
+
)
|
1173
|
+
.collect::<Result<String, _>>()?
|
1174
|
+
.into())
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
fn decode_latin1<'a>(&self, store: &'a StoreOpaque) -> Result<Cow<'a, str>> {
|
1178
|
+
// See notes in `decode_utf8` for why this is panicking indexing.
|
1179
|
+
let memory = self.options.memory(store);
|
1180
|
+
Ok(encoding_rs::mem::decode_latin1(
|
1181
|
+
&memory[self.ptr..][..self.len],
|
1182
|
+
))
|
1183
|
+
}
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
// Note that this is similar to `ComponentType for str` except it can only be
|
1187
|
+
// used for lifting, not lowering.
|
1188
|
+
unsafe impl ComponentType for WasmStr {
|
1189
|
+
type Lower = <str as ComponentType>::Lower;
|
1190
|
+
|
1191
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
|
1192
|
+
|
1193
|
+
fn typecheck(ty: &InterfaceType, _types: &ComponentTypes) -> Result<()> {
|
1194
|
+
match ty {
|
1195
|
+
InterfaceType::String => Ok(()),
|
1196
|
+
other => bail!("expected `string` found `{}`", desc(other)),
|
1197
|
+
}
|
1198
|
+
}
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
unsafe impl Lift for WasmStr {
|
1202
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
1203
|
+
debug_assert!(matches!(ty, InterfaceType::String));
|
1204
|
+
// FIXME: needs memory64 treatment
|
1205
|
+
let ptr = src[0].get_u32();
|
1206
|
+
let len = src[1].get_u32();
|
1207
|
+
let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
|
1208
|
+
WasmStr::new(ptr, len, cx)
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
1212
|
+
debug_assert!(matches!(ty, InterfaceType::String));
|
1213
|
+
debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
|
1214
|
+
// FIXME: needs memory64 treatment
|
1215
|
+
let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
|
1216
|
+
let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
|
1217
|
+
let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
|
1218
|
+
WasmStr::new(ptr, len, cx)
|
1219
|
+
}
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
unsafe impl<T> ComponentType for [T]
|
1223
|
+
where
|
1224
|
+
T: ComponentType,
|
1225
|
+
{
|
1226
|
+
type Lower = [ValRaw; 2];
|
1227
|
+
|
1228
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
|
1229
|
+
|
1230
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
|
1231
|
+
match ty {
|
1232
|
+
InterfaceType::List(t) => T::typecheck(&types[*t].element, types),
|
1233
|
+
other => bail!("expected `list` found `{}`", desc(other)),
|
1234
|
+
}
|
1235
|
+
}
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
unsafe impl<T> Lower for [T]
|
1239
|
+
where
|
1240
|
+
T: Lower,
|
1241
|
+
{
|
1242
|
+
fn lower<U>(
|
1243
|
+
&self,
|
1244
|
+
cx: &mut LowerContext<'_, U>,
|
1245
|
+
ty: InterfaceType,
|
1246
|
+
dst: &mut MaybeUninit<[ValRaw; 2]>,
|
1247
|
+
) -> Result<()> {
|
1248
|
+
let elem = match ty {
|
1249
|
+
InterfaceType::List(i) => cx.types[i].element,
|
1250
|
+
_ => bad_type_info(),
|
1251
|
+
};
|
1252
|
+
let (ptr, len) = lower_list(cx, elem, self)?;
|
1253
|
+
// See "WRITEPTR64" above for why this is always storing a 64-bit
|
1254
|
+
// integer.
|
1255
|
+
map_maybe_uninit!(dst[0]).write(ValRaw::i64(ptr as i64));
|
1256
|
+
map_maybe_uninit!(dst[1]).write(ValRaw::i64(len as i64));
|
1257
|
+
Ok(())
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
fn store<U>(
|
1261
|
+
&self,
|
1262
|
+
cx: &mut LowerContext<'_, U>,
|
1263
|
+
ty: InterfaceType,
|
1264
|
+
offset: usize,
|
1265
|
+
) -> Result<()> {
|
1266
|
+
let elem = match ty {
|
1267
|
+
InterfaceType::List(i) => cx.types[i].element,
|
1268
|
+
_ => bad_type_info(),
|
1269
|
+
};
|
1270
|
+
debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
|
1271
|
+
let (ptr, len) = lower_list(cx, elem, self)?;
|
1272
|
+
*cx.get(offset + 0) = (ptr as i32).to_le_bytes();
|
1273
|
+
*cx.get(offset + 4) = (len as i32).to_le_bytes();
|
1274
|
+
Ok(())
|
1275
|
+
}
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
// FIXME: this is not a memcpy for `T` where `T` is something like `u8`.
|
1279
|
+
//
|
1280
|
+
// Some attempts to fix this have proved not fruitful. In isolation an attempt
|
1281
|
+
// was made where:
|
1282
|
+
//
|
1283
|
+
// * `MemoryMut` stored a `*mut [u8]` as its "last view" of memory to avoid
|
1284
|
+
// reloading the base pointer constantly. This view is reset on `realloc`.
|
1285
|
+
// * The bounds-checks in `MemoryMut::get` were removed (replaced with unsafe
|
1286
|
+
// indexing)
|
1287
|
+
//
|
1288
|
+
// Even then though this didn't correctly vectorized for `Vec<u8>`. It's not
|
1289
|
+
// entirely clear why but it appeared that it's related to reloading the base
|
1290
|
+
// pointer fo memory (I guess from `MemoryMut` itself?). Overall I'm not really
|
1291
|
+
// clear on what's happening there, but this is surely going to be a performance
|
1292
|
+
// bottleneck in the future.
|
1293
|
+
fn lower_list<T, U>(
|
1294
|
+
cx: &mut LowerContext<'_, U>,
|
1295
|
+
ty: InterfaceType,
|
1296
|
+
list: &[T],
|
1297
|
+
) -> Result<(usize, usize)>
|
1298
|
+
where
|
1299
|
+
T: Lower,
|
1300
|
+
{
|
1301
|
+
let elem_size = T::SIZE32;
|
1302
|
+
let size = list
|
1303
|
+
.len()
|
1304
|
+
.checked_mul(elem_size)
|
1305
|
+
.ok_or_else(|| anyhow!("size overflow copying a list"))?;
|
1306
|
+
let ptr = cx.realloc(0, 0, T::ALIGN32, size)?;
|
1307
|
+
let mut cur = ptr;
|
1308
|
+
for item in list {
|
1309
|
+
item.store(cx, ty, cur)?;
|
1310
|
+
cur += elem_size;
|
1311
|
+
}
|
1312
|
+
Ok((ptr, list.len()))
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
/// Representation of a list of values that are owned by a WebAssembly instance.
|
1316
|
+
///
|
1317
|
+
/// This type is used whenever a `(list T)` is returned from a [`TypedFunc`],
|
1318
|
+
/// for example. This type represents a list of values that are stored in linear
|
1319
|
+
/// memory which are waiting to be read.
|
1320
|
+
///
|
1321
|
+
/// Note that this type represents only a valid range of bytes for the list
|
1322
|
+
/// itself, it does not represent validity of the elements themselves and that's
|
1323
|
+
/// performed when they're iterated.
|
1324
|
+
pub struct WasmList<T> {
|
1325
|
+
ptr: usize,
|
1326
|
+
len: usize,
|
1327
|
+
options: Options,
|
1328
|
+
elem: InterfaceType,
|
1329
|
+
// NB: it would probably be more efficient to store a non-atomic index-style
|
1330
|
+
// reference to something inside a `StoreOpaque`, but that's not easily
|
1331
|
+
// available at this time, so it's left as a future exercise.
|
1332
|
+
types: Arc<ComponentTypes>,
|
1333
|
+
_marker: marker::PhantomData<T>,
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
impl<T: Lift> WasmList<T> {
|
1337
|
+
fn new(
|
1338
|
+
ptr: usize,
|
1339
|
+
len: usize,
|
1340
|
+
cx: &LiftContext<'_>,
|
1341
|
+
elem: InterfaceType,
|
1342
|
+
) -> Result<WasmList<T>> {
|
1343
|
+
match len
|
1344
|
+
.checked_mul(T::SIZE32)
|
1345
|
+
.and_then(|len| ptr.checked_add(len))
|
1346
|
+
{
|
1347
|
+
Some(n) if n <= cx.memory().len() => {}
|
1348
|
+
_ => bail!("list pointer/length out of bounds of memory"),
|
1349
|
+
}
|
1350
|
+
if ptr % usize::try_from(T::ALIGN32)? != 0 {
|
1351
|
+
bail!("list pointer is not aligned")
|
1352
|
+
}
|
1353
|
+
Ok(WasmList {
|
1354
|
+
ptr,
|
1355
|
+
len,
|
1356
|
+
options: *cx.options,
|
1357
|
+
elem,
|
1358
|
+
types: cx.types.clone(),
|
1359
|
+
_marker: marker::PhantomData,
|
1360
|
+
})
|
1361
|
+
}
|
1362
|
+
|
1363
|
+
/// Returns the item length of this vector
|
1364
|
+
#[inline]
|
1365
|
+
pub fn len(&self) -> usize {
|
1366
|
+
self.len
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
/// Gets the `n`th element of this list.
|
1370
|
+
///
|
1371
|
+
/// Returns `None` if `index` is out of bounds. Returns `Some(Err(..))` if
|
1372
|
+
/// the value couldn't be decoded (it was invalid). Returns `Some(Ok(..))`
|
1373
|
+
/// if the value is valid.
|
1374
|
+
//
|
1375
|
+
// TODO: given that interface values are intended to be consumed in one go
|
1376
|
+
// should we even expose a random access iteration API? In theory all
|
1377
|
+
// consumers should be validating through the iterator.
|
1378
|
+
pub fn get(&self, store: impl AsContext, index: usize) -> Option<Result<T>> {
|
1379
|
+
self.get_from_store(store.as_context().0, index)
|
1380
|
+
}
|
1381
|
+
|
1382
|
+
fn get_from_store(&self, store: &StoreOpaque, index: usize) -> Option<Result<T>> {
|
1383
|
+
if index >= self.len {
|
1384
|
+
return None;
|
1385
|
+
}
|
1386
|
+
let cx = LiftContext {
|
1387
|
+
store,
|
1388
|
+
options: &self.options,
|
1389
|
+
types: &self.types,
|
1390
|
+
};
|
1391
|
+
// Note that this is using panicking indexing and this is expected to
|
1392
|
+
// never fail. The bounds-checking here happened during the construction
|
1393
|
+
// of the `WasmList` itself which means these should always be in-bounds
|
1394
|
+
// (and wasm memory can only grow). This could theoretically be
|
1395
|
+
// unchecked indexing if we're confident enough and it's actually a perf
|
1396
|
+
// issue one day.
|
1397
|
+
let bytes = &cx.memory()[self.ptr + index * T::SIZE32..][..T::SIZE32];
|
1398
|
+
Some(T::load(&cx, self.elem, bytes))
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
/// Returns an iterator over the elements of this list.
|
1402
|
+
///
|
1403
|
+
/// Each item of the list may fail to decode and is represented through the
|
1404
|
+
/// `Result` value of the iterator.
|
1405
|
+
pub fn iter<'a, U: 'a>(
|
1406
|
+
&'a self,
|
1407
|
+
store: impl Into<StoreContext<'a, U>>,
|
1408
|
+
) -> impl ExactSizeIterator<Item = Result<T>> + 'a {
|
1409
|
+
let store = store.into().0;
|
1410
|
+
(0..self.len).map(move |i| self.get_from_store(store, i).unwrap())
|
1411
|
+
}
|
1412
|
+
}
|
1413
|
+
|
1414
|
+
macro_rules! raw_wasm_list_accessors {
|
1415
|
+
($($i:ident)*) => ($(
|
1416
|
+
impl WasmList<$i> {
|
1417
|
+
/// Get access to the raw underlying memory for this list.
|
1418
|
+
///
|
1419
|
+
/// This method will return a direct slice into the original wasm
|
1420
|
+
/// module's linear memory where the data for this slice is stored.
|
1421
|
+
/// This allows the embedder to have efficient access to the
|
1422
|
+
/// underlying memory if needed and avoid copies and such if
|
1423
|
+
/// desired.
|
1424
|
+
///
|
1425
|
+
/// Note that multi-byte integers are stored in little-endian format
|
1426
|
+
/// so portable processing of this slice must be aware of the host's
|
1427
|
+
/// byte-endianness. The `from_le` constructors in the Rust standard
|
1428
|
+
/// library should be suitable for converting from little-endian.
|
1429
|
+
///
|
1430
|
+
/// # Panics
|
1431
|
+
///
|
1432
|
+
/// Panics if the `store` provided is not the one from which this
|
1433
|
+
/// slice originated.
|
1434
|
+
pub fn as_le_slice<'a, T: 'a>(&self, store: impl Into<StoreContext<'a, T>>) -> &'a [$i] {
|
1435
|
+
// See comments in `WasmList::get` for the panicking indexing
|
1436
|
+
let byte_size = self.len * mem::size_of::<$i>();
|
1437
|
+
let bytes = &self.options.memory(store.into().0)[self.ptr..][..byte_size];
|
1438
|
+
|
1439
|
+
// The canonical ABI requires that everything is aligned to its
|
1440
|
+
// own size, so this should be an aligned array. Furthermore the
|
1441
|
+
// alignment of primitive integers for hosts should be smaller
|
1442
|
+
// than or equal to the size of the primitive itself, meaning
|
1443
|
+
// that a wasm canonical-abi-aligned list is also aligned for
|
1444
|
+
// the host. That should mean that the head/tail slices here are
|
1445
|
+
// empty.
|
1446
|
+
//
|
1447
|
+
// Also note that the `unsafe` here is needed since the type
|
1448
|
+
// we're aligning to isn't guaranteed to be valid, but in our
|
1449
|
+
// case it's just integers and bytes so this should be safe.
|
1450
|
+
unsafe {
|
1451
|
+
let (head, body, tail) = bytes.align_to::<$i>();
|
1452
|
+
assert!(head.is_empty() && tail.is_empty());
|
1453
|
+
body
|
1454
|
+
}
|
1455
|
+
}
|
1456
|
+
}
|
1457
|
+
)*)
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
raw_wasm_list_accessors! {
|
1461
|
+
i8 i16 i32 i64
|
1462
|
+
u8 u16 u32 u64
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
// Note that this is similar to `ComponentType for str` except it can only be
|
1466
|
+
// used for lifting, not lowering.
|
1467
|
+
unsafe impl<T: ComponentType> ComponentType for WasmList<T> {
|
1468
|
+
type Lower = <[T] as ComponentType>::Lower;
|
1469
|
+
|
1470
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::POINTER_PAIR;
|
1471
|
+
|
1472
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
|
1473
|
+
<[T] as ComponentType>::typecheck(ty, types)
|
1474
|
+
}
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
unsafe impl<T: Lift> Lift for WasmList<T> {
|
1478
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
1479
|
+
let elem = match ty {
|
1480
|
+
InterfaceType::List(i) => cx.types[i].element,
|
1481
|
+
_ => bad_type_info(),
|
1482
|
+
};
|
1483
|
+
// FIXME: needs memory64 treatment
|
1484
|
+
let ptr = src[0].get_u32();
|
1485
|
+
let len = src[1].get_u32();
|
1486
|
+
let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
|
1487
|
+
WasmList::new(ptr, len, cx, elem)
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
1491
|
+
let elem = match ty {
|
1492
|
+
InterfaceType::List(i) => cx.types[i].element,
|
1493
|
+
_ => bad_type_info(),
|
1494
|
+
};
|
1495
|
+
debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
|
1496
|
+
// FIXME: needs memory64 treatment
|
1497
|
+
let ptr = u32::from_le_bytes(bytes[..4].try_into().unwrap());
|
1498
|
+
let len = u32::from_le_bytes(bytes[4..].try_into().unwrap());
|
1499
|
+
let (ptr, len) = (usize::try_from(ptr)?, usize::try_from(len)?);
|
1500
|
+
WasmList::new(ptr, len, cx, elem)
|
1501
|
+
}
|
1502
|
+
}
|
1503
|
+
|
1504
|
+
/// Verify that the given wasm type is a tuple with the expected fields in the right order.
|
1505
|
+
fn typecheck_tuple(
|
1506
|
+
ty: &InterfaceType,
|
1507
|
+
types: &ComponentTypes,
|
1508
|
+
expected: &[fn(&InterfaceType, &ComponentTypes) -> Result<()>],
|
1509
|
+
) -> Result<()> {
|
1510
|
+
match ty {
|
1511
|
+
InterfaceType::Tuple(t) => {
|
1512
|
+
let tuple = &types[*t];
|
1513
|
+
if tuple.types.len() != expected.len() {
|
1514
|
+
bail!(
|
1515
|
+
"expected {}-tuple, found {}-tuple",
|
1516
|
+
expected.len(),
|
1517
|
+
tuple.types.len()
|
1518
|
+
);
|
1519
|
+
}
|
1520
|
+
for (ty, check) in tuple.types.iter().zip(expected) {
|
1521
|
+
check(ty, types)?;
|
1522
|
+
}
|
1523
|
+
Ok(())
|
1524
|
+
}
|
1525
|
+
other => bail!("expected `tuple` found `{}`", desc(other)),
|
1526
|
+
}
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
/// Verify that the given wasm type is a record with the expected fields in the right order and with the right
|
1530
|
+
/// names.
|
1531
|
+
pub fn typecheck_record(
|
1532
|
+
ty: &InterfaceType,
|
1533
|
+
types: &ComponentTypes,
|
1534
|
+
expected: &[(&str, fn(&InterfaceType, &ComponentTypes) -> Result<()>)],
|
1535
|
+
) -> Result<()> {
|
1536
|
+
match ty {
|
1537
|
+
InterfaceType::Record(index) => {
|
1538
|
+
let fields = &types[*index].fields;
|
1539
|
+
|
1540
|
+
if fields.len() != expected.len() {
|
1541
|
+
bail!(
|
1542
|
+
"expected record of {} fields, found {} fields",
|
1543
|
+
expected.len(),
|
1544
|
+
fields.len()
|
1545
|
+
);
|
1546
|
+
}
|
1547
|
+
|
1548
|
+
for (field, &(name, check)) in fields.iter().zip(expected) {
|
1549
|
+
check(&field.ty, types)
|
1550
|
+
.with_context(|| format!("type mismatch for field {}", name))?;
|
1551
|
+
|
1552
|
+
if field.name != name {
|
1553
|
+
bail!("expected record field named {}, found {}", name, field.name);
|
1554
|
+
}
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
Ok(())
|
1558
|
+
}
|
1559
|
+
other => bail!("expected `record` found `{}`", desc(other)),
|
1560
|
+
}
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
/// Verify that the given wasm type is a variant with the expected cases in the right order and with the right
|
1564
|
+
/// names.
|
1565
|
+
pub fn typecheck_variant(
|
1566
|
+
ty: &InterfaceType,
|
1567
|
+
types: &ComponentTypes,
|
1568
|
+
expected: &[(
|
1569
|
+
&str,
|
1570
|
+
Option<fn(&InterfaceType, &ComponentTypes) -> Result<()>>,
|
1571
|
+
)],
|
1572
|
+
) -> Result<()> {
|
1573
|
+
match ty {
|
1574
|
+
InterfaceType::Variant(index) => {
|
1575
|
+
let cases = &types[*index].cases;
|
1576
|
+
|
1577
|
+
if cases.len() != expected.len() {
|
1578
|
+
bail!(
|
1579
|
+
"expected variant of {} cases, found {} cases",
|
1580
|
+
expected.len(),
|
1581
|
+
cases.len()
|
1582
|
+
);
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
for (case, &(name, check)) in cases.iter().zip(expected) {
|
1586
|
+
if case.name != name {
|
1587
|
+
bail!("expected variant case named {name}, found {}", case.name);
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
match (check, &case.ty) {
|
1591
|
+
(Some(check), Some(ty)) => check(ty, types)
|
1592
|
+
.with_context(|| format!("type mismatch for case {name}"))?,
|
1593
|
+
(None, None) => {}
|
1594
|
+
(Some(_), None) => {
|
1595
|
+
bail!("case `{name}` has no type but one was expected")
|
1596
|
+
}
|
1597
|
+
(None, Some(_)) => {
|
1598
|
+
bail!("case `{name}` has a type but none was expected")
|
1599
|
+
}
|
1600
|
+
}
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
Ok(())
|
1604
|
+
}
|
1605
|
+
other => bail!("expected `variant` found `{}`", desc(other)),
|
1606
|
+
}
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
/// Verify that the given wasm type is a enum with the expected cases in the right order and with the right
|
1610
|
+
/// names.
|
1611
|
+
pub fn typecheck_enum(ty: &InterfaceType, types: &ComponentTypes, expected: &[&str]) -> Result<()> {
|
1612
|
+
match ty {
|
1613
|
+
InterfaceType::Enum(index) => {
|
1614
|
+
let names = &types[*index].names;
|
1615
|
+
|
1616
|
+
if names.len() != expected.len() {
|
1617
|
+
bail!(
|
1618
|
+
"expected enum of {} names, found {} names",
|
1619
|
+
expected.len(),
|
1620
|
+
names.len()
|
1621
|
+
);
|
1622
|
+
}
|
1623
|
+
|
1624
|
+
for (name, expected) in names.iter().zip(expected) {
|
1625
|
+
if name != expected {
|
1626
|
+
bail!("expected enum case named {}, found {}", expected, name);
|
1627
|
+
}
|
1628
|
+
}
|
1629
|
+
|
1630
|
+
Ok(())
|
1631
|
+
}
|
1632
|
+
other => bail!("expected `enum` found `{}`", desc(other)),
|
1633
|
+
}
|
1634
|
+
}
|
1635
|
+
|
1636
|
+
/// Verify that the given wasm type is a union with the expected cases in the right order.
|
1637
|
+
pub fn typecheck_union(
|
1638
|
+
ty: &InterfaceType,
|
1639
|
+
types: &ComponentTypes,
|
1640
|
+
expected: &[fn(&InterfaceType, &ComponentTypes) -> Result<()>],
|
1641
|
+
) -> Result<()> {
|
1642
|
+
match ty {
|
1643
|
+
InterfaceType::Union(index) => {
|
1644
|
+
let union_types = &types[*index].types;
|
1645
|
+
|
1646
|
+
if union_types.len() != expected.len() {
|
1647
|
+
bail!(
|
1648
|
+
"expected union of {} types, found {} types",
|
1649
|
+
expected.len(),
|
1650
|
+
union_types.len()
|
1651
|
+
);
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
for (index, (ty, check)) in union_types.iter().zip(expected).enumerate() {
|
1655
|
+
check(ty, types).with_context(|| format!("type mismatch for case {}", index))?;
|
1656
|
+
}
|
1657
|
+
|
1658
|
+
Ok(())
|
1659
|
+
}
|
1660
|
+
other => bail!("expected `union` found `{}`", desc(other)),
|
1661
|
+
}
|
1662
|
+
}
|
1663
|
+
|
1664
|
+
/// Verify that the given wasm type is a flags type with the expected flags in the right order and with the right
|
1665
|
+
/// names.
|
1666
|
+
pub fn typecheck_flags(
|
1667
|
+
ty: &InterfaceType,
|
1668
|
+
types: &ComponentTypes,
|
1669
|
+
expected: &[&str],
|
1670
|
+
) -> Result<()> {
|
1671
|
+
match ty {
|
1672
|
+
InterfaceType::Flags(index) => {
|
1673
|
+
let names = &types[*index].names;
|
1674
|
+
|
1675
|
+
if names.len() != expected.len() {
|
1676
|
+
bail!(
|
1677
|
+
"expected flags type with {} names, found {} names",
|
1678
|
+
expected.len(),
|
1679
|
+
names.len()
|
1680
|
+
);
|
1681
|
+
}
|
1682
|
+
|
1683
|
+
for (name, expected) in names.iter().zip(expected) {
|
1684
|
+
if name != expected {
|
1685
|
+
bail!("expected flag named {}, found {}", expected, name);
|
1686
|
+
}
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
Ok(())
|
1690
|
+
}
|
1691
|
+
other => bail!("expected `flags` found `{}`", desc(other)),
|
1692
|
+
}
|
1693
|
+
}
|
1694
|
+
|
1695
|
+
/// Format the specified bitflags using the specified names for debugging
|
1696
|
+
pub fn format_flags(bits: &[u32], names: &[&str], f: &mut fmt::Formatter) -> fmt::Result {
|
1697
|
+
f.write_str("(")?;
|
1698
|
+
let mut wrote = false;
|
1699
|
+
for (index, name) in names.iter().enumerate() {
|
1700
|
+
if ((bits[index / 32] >> (index % 32)) & 1) != 0 {
|
1701
|
+
if wrote {
|
1702
|
+
f.write_str("|")?;
|
1703
|
+
} else {
|
1704
|
+
wrote = true;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
f.write_str(name)?;
|
1708
|
+
}
|
1709
|
+
}
|
1710
|
+
f.write_str(")")
|
1711
|
+
}
|
1712
|
+
|
1713
|
+
unsafe impl<T> ComponentType for Option<T>
|
1714
|
+
where
|
1715
|
+
T: ComponentType,
|
1716
|
+
{
|
1717
|
+
type Lower = TupleLower2<<u32 as ComponentType>::Lower, T::Lower>;
|
1718
|
+
|
1719
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[None, Some(T::ABI)]);
|
1720
|
+
|
1721
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
|
1722
|
+
match ty {
|
1723
|
+
InterfaceType::Option(t) => T::typecheck(&types[*t].ty, types),
|
1724
|
+
other => bail!("expected `option` found `{}`", desc(other)),
|
1725
|
+
}
|
1726
|
+
}
|
1727
|
+
}
|
1728
|
+
|
1729
|
+
unsafe impl<T> ComponentVariant for Option<T>
|
1730
|
+
where
|
1731
|
+
T: ComponentType,
|
1732
|
+
{
|
1733
|
+
const CASES: &'static [Option<CanonicalAbiInfo>] = &[None, Some(T::ABI)];
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
unsafe impl<T> Lower for Option<T>
|
1737
|
+
where
|
1738
|
+
T: Lower,
|
1739
|
+
{
|
1740
|
+
fn lower<U>(
|
1741
|
+
&self,
|
1742
|
+
cx: &mut LowerContext<'_, U>,
|
1743
|
+
ty: InterfaceType,
|
1744
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
1745
|
+
) -> Result<()> {
|
1746
|
+
let payload = match ty {
|
1747
|
+
InterfaceType::Option(ty) => cx.types[ty].ty,
|
1748
|
+
_ => bad_type_info(),
|
1749
|
+
};
|
1750
|
+
match self {
|
1751
|
+
None => {
|
1752
|
+
map_maybe_uninit!(dst.A1).write(ValRaw::i32(0));
|
1753
|
+
// Note that this is unsafe as we're writing an arbitrary
|
1754
|
+
// bit-pattern to an arbitrary type, but part of the unsafe
|
1755
|
+
// contract of the `ComponentType` trait is that we can assign
|
1756
|
+
// any bit-pattern. By writing all zeros here we're ensuring
|
1757
|
+
// that the core wasm arguments this translates to will all be
|
1758
|
+
// zeros (as the canonical ABI requires).
|
1759
|
+
unsafe {
|
1760
|
+
map_maybe_uninit!(dst.A2).as_mut_ptr().write_bytes(0u8, 1);
|
1761
|
+
}
|
1762
|
+
}
|
1763
|
+
Some(val) => {
|
1764
|
+
map_maybe_uninit!(dst.A1).write(ValRaw::i32(1));
|
1765
|
+
val.lower(cx, payload, map_maybe_uninit!(dst.A2))?;
|
1766
|
+
}
|
1767
|
+
}
|
1768
|
+
Ok(())
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
fn store<U>(
|
1772
|
+
&self,
|
1773
|
+
cx: &mut LowerContext<'_, U>,
|
1774
|
+
ty: InterfaceType,
|
1775
|
+
offset: usize,
|
1776
|
+
) -> Result<()> {
|
1777
|
+
debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
|
1778
|
+
let payload = match ty {
|
1779
|
+
InterfaceType::Option(ty) => cx.types[ty].ty,
|
1780
|
+
_ => bad_type_info(),
|
1781
|
+
};
|
1782
|
+
match self {
|
1783
|
+
None => {
|
1784
|
+
cx.get::<1>(offset)[0] = 0;
|
1785
|
+
}
|
1786
|
+
Some(val) => {
|
1787
|
+
cx.get::<1>(offset)[0] = 1;
|
1788
|
+
val.store(cx, payload, offset + (Self::INFO.payload_offset32 as usize))?;
|
1789
|
+
}
|
1790
|
+
}
|
1791
|
+
Ok(())
|
1792
|
+
}
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
unsafe impl<T> Lift for Option<T>
|
1796
|
+
where
|
1797
|
+
T: Lift,
|
1798
|
+
{
|
1799
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
1800
|
+
let payload = match ty {
|
1801
|
+
InterfaceType::Option(ty) => cx.types[ty].ty,
|
1802
|
+
_ => bad_type_info(),
|
1803
|
+
};
|
1804
|
+
Ok(match src.A1.get_i32() {
|
1805
|
+
0 => None,
|
1806
|
+
1 => Some(T::lift(cx, payload, &src.A2)?),
|
1807
|
+
_ => bail!("invalid option discriminant"),
|
1808
|
+
})
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
1812
|
+
debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
|
1813
|
+
let payload_ty = match ty {
|
1814
|
+
InterfaceType::Option(ty) => cx.types[ty].ty,
|
1815
|
+
_ => bad_type_info(),
|
1816
|
+
};
|
1817
|
+
let discrim = bytes[0];
|
1818
|
+
let payload = &bytes[Self::INFO.payload_offset32 as usize..];
|
1819
|
+
match discrim {
|
1820
|
+
0 => Ok(None),
|
1821
|
+
1 => Ok(Some(T::load(cx, payload_ty, payload)?)),
|
1822
|
+
_ => bail!("invalid option discriminant"),
|
1823
|
+
}
|
1824
|
+
}
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
#[derive(Clone, Copy)]
|
1828
|
+
#[repr(C)]
|
1829
|
+
pub struct ResultLower<T: Copy, E: Copy> {
|
1830
|
+
tag: ValRaw,
|
1831
|
+
payload: ResultLowerPayload<T, E>,
|
1832
|
+
}
|
1833
|
+
|
1834
|
+
#[derive(Clone, Copy)]
|
1835
|
+
#[repr(C)]
|
1836
|
+
union ResultLowerPayload<T: Copy, E: Copy> {
|
1837
|
+
ok: T,
|
1838
|
+
err: E,
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
unsafe impl<T, E> ComponentType for Result<T, E>
|
1842
|
+
where
|
1843
|
+
T: ComponentType,
|
1844
|
+
E: ComponentType,
|
1845
|
+
{
|
1846
|
+
type Lower = ResultLower<T::Lower, E::Lower>;
|
1847
|
+
|
1848
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::variant_static(&[Some(T::ABI), Some(E::ABI)]);
|
1849
|
+
|
1850
|
+
fn typecheck(ty: &InterfaceType, types: &ComponentTypes) -> Result<()> {
|
1851
|
+
match ty {
|
1852
|
+
InterfaceType::Result(r) => {
|
1853
|
+
let result = &types[*r];
|
1854
|
+
match &result.ok {
|
1855
|
+
Some(ty) => T::typecheck(ty, types)?,
|
1856
|
+
None if T::IS_RUST_UNIT_TYPE => {}
|
1857
|
+
None => bail!("expected no `ok` type"),
|
1858
|
+
}
|
1859
|
+
match &result.err {
|
1860
|
+
Some(ty) => E::typecheck(ty, types)?,
|
1861
|
+
None if E::IS_RUST_UNIT_TYPE => {}
|
1862
|
+
None => bail!("expected no `err` type"),
|
1863
|
+
}
|
1864
|
+
Ok(())
|
1865
|
+
}
|
1866
|
+
other => bail!("expected `result` found `{}`", desc(other)),
|
1867
|
+
}
|
1868
|
+
}
|
1869
|
+
}
|
1870
|
+
|
1871
|
+
/// Lowers the payload of a variant into the storage for the entire payload,
|
1872
|
+
/// handling writing zeros at the end of the representation if this payload is
|
1873
|
+
/// smaller than the entire flat representation.
|
1874
|
+
///
|
1875
|
+
/// * `payload` - the flat storage space for the entire payload of the variant
|
1876
|
+
/// * `typed_payload` - projection from the payload storage space to the
|
1877
|
+
/// individaul storage space for this variant.
|
1878
|
+
/// * `lower` - lowering operation used to initialize the `typed_payload` return
|
1879
|
+
/// value.
|
1880
|
+
///
|
1881
|
+
/// For more information on this se the comments in the `Lower for Result`
|
1882
|
+
/// implementation below.
|
1883
|
+
pub unsafe fn lower_payload<P, T>(
|
1884
|
+
payload: &mut MaybeUninit<P>,
|
1885
|
+
typed_payload: impl FnOnce(&mut MaybeUninit<P>) -> &mut MaybeUninit<T>,
|
1886
|
+
lower: impl FnOnce(&mut MaybeUninit<T>) -> Result<()>,
|
1887
|
+
) -> Result<()> {
|
1888
|
+
let typed = typed_payload(payload);
|
1889
|
+
lower(typed)?;
|
1890
|
+
|
1891
|
+
let typed_len = storage_as_slice(typed).len();
|
1892
|
+
let payload = storage_as_slice_mut(payload);
|
1893
|
+
for slot in payload[typed_len..].iter_mut() {
|
1894
|
+
*slot = ValRaw::u64(0);
|
1895
|
+
}
|
1896
|
+
Ok(())
|
1897
|
+
}
|
1898
|
+
|
1899
|
+
unsafe impl<T, E> ComponentVariant for Result<T, E>
|
1900
|
+
where
|
1901
|
+
T: ComponentType,
|
1902
|
+
E: ComponentType,
|
1903
|
+
{
|
1904
|
+
const CASES: &'static [Option<CanonicalAbiInfo>] = &[Some(T::ABI), Some(E::ABI)];
|
1905
|
+
}
|
1906
|
+
|
1907
|
+
unsafe impl<T, E> Lower for Result<T, E>
|
1908
|
+
where
|
1909
|
+
T: Lower,
|
1910
|
+
E: Lower,
|
1911
|
+
{
|
1912
|
+
fn lower<U>(
|
1913
|
+
&self,
|
1914
|
+
cx: &mut LowerContext<'_, U>,
|
1915
|
+
ty: InterfaceType,
|
1916
|
+
dst: &mut MaybeUninit<Self::Lower>,
|
1917
|
+
) -> Result<()> {
|
1918
|
+
let (ok, err) = match ty {
|
1919
|
+
InterfaceType::Result(ty) => {
|
1920
|
+
let ty = &cx.types[ty];
|
1921
|
+
(ty.ok, ty.err)
|
1922
|
+
}
|
1923
|
+
_ => bad_type_info(),
|
1924
|
+
};
|
1925
|
+
|
1926
|
+
// This implementation of `Lower::lower`, if you're reading these from
|
1927
|
+
// the top of this file, is the first location that the "join" logic of
|
1928
|
+
// the component model's canonical ABI encountered. The rough problem is
|
1929
|
+
// that let's say we have a component model type of the form:
|
1930
|
+
//
|
1931
|
+
// (result u64 (error (tuple f32 u16)))
|
1932
|
+
//
|
1933
|
+
// The flat representation of this is actually pretty tricky. Currently
|
1934
|
+
// it is:
|
1935
|
+
//
|
1936
|
+
// i32 i64 i32
|
1937
|
+
//
|
1938
|
+
// The first `i32` is the discriminant for the `result`, and the payload
|
1939
|
+
// is represented by `i64 i32`. The "ok" variant will only use the `i64`
|
1940
|
+
// and the "err" variant will use both `i64` and `i32`.
|
1941
|
+
//
|
1942
|
+
// In the "ok" variant the first issue is encountered. The size of one
|
1943
|
+
// variant may not match the size of the other variants. All variants
|
1944
|
+
// start at the "front" but when lowering a type we need to be sure to
|
1945
|
+
// initialize the later variants (lest we leak random host memory into
|
1946
|
+
// the guest module). Due to how the `Lower` type is represented as a
|
1947
|
+
// `union` of all the variants what ends up happening here is that
|
1948
|
+
// internally within the `lower_payload` after the typed payload is
|
1949
|
+
// lowered the remaining bits of the payload that weren't initialized
|
1950
|
+
// are all set to zero. This will guarantee that we'll write to all the
|
1951
|
+
// slots for each variant.
|
1952
|
+
//
|
1953
|
+
// The "err" variant encounters the second issue, however, which is that
|
1954
|
+
// the flat representation for each type may differ between payloads. In
|
1955
|
+
// the "ok" arm an `i64` is written, but the `lower` implementation for
|
1956
|
+
// the "err" arm will write an `f32` and then an `i32`. For this
|
1957
|
+
// implementation of `lower` to be valid the `f32` needs to get inflated
|
1958
|
+
// to an `i64` with zero-padding in the upper bits. What may be
|
1959
|
+
// surprising, however, is that none of this is handled in this file.
|
1960
|
+
// This implementation looks like it's blindly deferring to `E::lower`
|
1961
|
+
// and hoping it does the right thing.
|
1962
|
+
//
|
1963
|
+
// In reality, however, the correctness of variant lowering relies on
|
1964
|
+
// two subtle details of the `ValRaw` implementation in Wasmtime:
|
1965
|
+
//
|
1966
|
+
// 1. First the `ValRaw` value always contains little-endian values.
|
1967
|
+
// This means that if a `u32` is written, a `u64` is read, and then
|
1968
|
+
// the `u64` has its upper bits truncated the original value will
|
1969
|
+
// always be retained. This is primarily here for big-endian
|
1970
|
+
// platforms where if it weren't little endian then the opposite
|
1971
|
+
// would occur and the wrong value would be read.
|
1972
|
+
//
|
1973
|
+
// 2. Second, and perhaps even more subtly, the `ValRaw` constructors
|
1974
|
+
// for 32-bit types actually always initialize 64-bits of the
|
1975
|
+
// `ValRaw`. In the component model flat ABI only 32 and 64-bit types
|
1976
|
+
// are used so 64-bits is big enough to contain everything. This
|
1977
|
+
// means that when a `ValRaw` is written into the destination it will
|
1978
|
+
// always, whether it's needed or not, be "ready" to get extended up
|
1979
|
+
// to 64-bits.
|
1980
|
+
//
|
1981
|
+
// Put together these two subtle guarantees means that all `Lower`
|
1982
|
+
// implementations can be written "naturally" as one might naively
|
1983
|
+
// expect. Variants will, on each arm, zero out remaining fields and all
|
1984
|
+
// writes to the flat representation will automatically be 64-bit writes
|
1985
|
+
// meaning that if the value is read as a 64-bit value, which isn't
|
1986
|
+
// known at the time of the write, it'll still be correct.
|
1987
|
+
match self {
|
1988
|
+
Ok(e) => {
|
1989
|
+
map_maybe_uninit!(dst.tag).write(ValRaw::i32(0));
|
1990
|
+
unsafe {
|
1991
|
+
lower_payload(
|
1992
|
+
map_maybe_uninit!(dst.payload),
|
1993
|
+
|payload| map_maybe_uninit!(payload.ok),
|
1994
|
+
|dst| match ok {
|
1995
|
+
Some(ok) => e.lower(cx, ok, dst),
|
1996
|
+
None => Ok(()),
|
1997
|
+
},
|
1998
|
+
)
|
1999
|
+
}
|
2000
|
+
}
|
2001
|
+
Err(e) => {
|
2002
|
+
map_maybe_uninit!(dst.tag).write(ValRaw::i32(1));
|
2003
|
+
unsafe {
|
2004
|
+
lower_payload(
|
2005
|
+
map_maybe_uninit!(dst.payload),
|
2006
|
+
|payload| map_maybe_uninit!(payload.err),
|
2007
|
+
|dst| match err {
|
2008
|
+
Some(err) => e.lower(cx, err, dst),
|
2009
|
+
None => Ok(()),
|
2010
|
+
},
|
2011
|
+
)
|
2012
|
+
}
|
2013
|
+
}
|
2014
|
+
}
|
2015
|
+
}
|
2016
|
+
|
2017
|
+
fn store<U>(
|
2018
|
+
&self,
|
2019
|
+
cx: &mut LowerContext<'_, U>,
|
2020
|
+
ty: InterfaceType,
|
2021
|
+
offset: usize,
|
2022
|
+
) -> Result<()> {
|
2023
|
+
let (ok, err) = match ty {
|
2024
|
+
InterfaceType::Result(ty) => {
|
2025
|
+
let ty = &cx.types[ty];
|
2026
|
+
(ty.ok, ty.err)
|
2027
|
+
}
|
2028
|
+
_ => bad_type_info(),
|
2029
|
+
};
|
2030
|
+
debug_assert!(offset % (Self::ALIGN32 as usize) == 0);
|
2031
|
+
let payload_offset = Self::INFO.payload_offset32 as usize;
|
2032
|
+
match self {
|
2033
|
+
Ok(e) => {
|
2034
|
+
cx.get::<1>(offset)[0] = 0;
|
2035
|
+
if let Some(ok) = ok {
|
2036
|
+
e.store(cx, ok, offset + payload_offset)?;
|
2037
|
+
}
|
2038
|
+
}
|
2039
|
+
Err(e) => {
|
2040
|
+
cx.get::<1>(offset)[0] = 1;
|
2041
|
+
if let Some(err) = err {
|
2042
|
+
e.store(cx, err, offset + payload_offset)?;
|
2043
|
+
}
|
2044
|
+
}
|
2045
|
+
}
|
2046
|
+
Ok(())
|
2047
|
+
}
|
2048
|
+
}
|
2049
|
+
|
2050
|
+
unsafe impl<T, E> Lift for Result<T, E>
|
2051
|
+
where
|
2052
|
+
T: Lift,
|
2053
|
+
E: Lift,
|
2054
|
+
{
|
2055
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, src: &Self::Lower) -> Result<Self> {
|
2056
|
+
let (ok, err) = match ty {
|
2057
|
+
InterfaceType::Result(ty) => {
|
2058
|
+
let ty = &cx.types[ty];
|
2059
|
+
(ty.ok, ty.err)
|
2060
|
+
}
|
2061
|
+
_ => bad_type_info(),
|
2062
|
+
};
|
2063
|
+
// Note that this implementation specifically isn't trying to actually
|
2064
|
+
// reinterpret or alter the bits of `lower` depending on which variant
|
2065
|
+
// we're lifting. This ends up all working out because the value is
|
2066
|
+
// stored in little-endian format.
|
2067
|
+
//
|
2068
|
+
// When stored in little-endian format the `{T,E}::Lower`, when each
|
2069
|
+
// individual `ValRaw` is read, means that if an i64 value, extended
|
2070
|
+
// from an i32 value, was stored then when the i32 value is read it'll
|
2071
|
+
// automatically ignore the upper bits.
|
2072
|
+
//
|
2073
|
+
// This "trick" allows us to seamlessly pass through the `Self::Lower`
|
2074
|
+
// representation into the lifting/lowering without trying to handle
|
2075
|
+
// "join"ed types as per the canonical ABI. It just so happens that i64
|
2076
|
+
// bits will naturally be reinterpreted as f64. Additionally if the
|
2077
|
+
// joined type is i64 but only the lower bits are read that's ok and we
|
2078
|
+
// don't need to validate the upper bits.
|
2079
|
+
//
|
2080
|
+
// This is largely enabled by WebAssembly/component-model#35 where no
|
2081
|
+
// validation needs to be performed for ignored bits and bytes here.
|
2082
|
+
Ok(match src.tag.get_i32() {
|
2083
|
+
0 => Ok(unsafe { lift_option(cx, ok, &src.payload.ok)? }),
|
2084
|
+
1 => Err(unsafe { lift_option(cx, err, &src.payload.err)? }),
|
2085
|
+
_ => bail!("invalid expected discriminant"),
|
2086
|
+
})
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
2090
|
+
debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
|
2091
|
+
let discrim = bytes[0];
|
2092
|
+
let payload = &bytes[Self::INFO.payload_offset32 as usize..];
|
2093
|
+
let (ok, err) = match ty {
|
2094
|
+
InterfaceType::Result(ty) => {
|
2095
|
+
let ty = &cx.types[ty];
|
2096
|
+
(ty.ok, ty.err)
|
2097
|
+
}
|
2098
|
+
_ => bad_type_info(),
|
2099
|
+
};
|
2100
|
+
match discrim {
|
2101
|
+
0 => Ok(Ok(load_option(cx, ok, &payload[..T::SIZE32])?)),
|
2102
|
+
1 => Ok(Err(load_option(cx, err, &payload[..E::SIZE32])?)),
|
2103
|
+
_ => bail!("invalid expected discriminant"),
|
2104
|
+
}
|
2105
|
+
}
|
2106
|
+
}
|
2107
|
+
|
2108
|
+
fn lift_option<T>(cx: &LiftContext<'_>, ty: Option<InterfaceType>, src: &T::Lower) -> Result<T>
|
2109
|
+
where
|
2110
|
+
T: Lift,
|
2111
|
+
{
|
2112
|
+
match ty {
|
2113
|
+
Some(ty) => T::lift(cx, ty, src),
|
2114
|
+
None => Ok(empty_lift()),
|
2115
|
+
}
|
2116
|
+
}
|
2117
|
+
|
2118
|
+
fn load_option<T>(cx: &LiftContext<'_>, ty: Option<InterfaceType>, bytes: &[u8]) -> Result<T>
|
2119
|
+
where
|
2120
|
+
T: Lift,
|
2121
|
+
{
|
2122
|
+
match ty {
|
2123
|
+
Some(ty) => T::load(cx, ty, bytes),
|
2124
|
+
None => Ok(empty_lift()),
|
2125
|
+
}
|
2126
|
+
}
|
2127
|
+
|
2128
|
+
fn empty_lift<T>() -> T
|
2129
|
+
where
|
2130
|
+
T: Lift,
|
2131
|
+
{
|
2132
|
+
assert!(T::IS_RUST_UNIT_TYPE);
|
2133
|
+
assert_eq!(mem::size_of::<T>(), 0);
|
2134
|
+
unsafe { MaybeUninit::uninit().assume_init() }
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
macro_rules! impl_component_ty_for_tuples {
|
2138
|
+
($n:tt $($t:ident)*) => {paste::paste!{
|
2139
|
+
#[allow(non_snake_case)]
|
2140
|
+
#[doc(hidden)]
|
2141
|
+
#[derive(Clone, Copy)]
|
2142
|
+
#[repr(C)]
|
2143
|
+
pub struct [<TupleLower$n>]<$($t),*> {
|
2144
|
+
$($t: $t,)*
|
2145
|
+
_align_tuple_lower0_correctly: [ValRaw; 0],
|
2146
|
+
}
|
2147
|
+
|
2148
|
+
#[allow(non_snake_case)]
|
2149
|
+
unsafe impl<$($t,)*> ComponentType for ($($t,)*)
|
2150
|
+
where $($t: ComponentType),*
|
2151
|
+
{
|
2152
|
+
type Lower = [<TupleLower$n>]<$($t::Lower),*>;
|
2153
|
+
|
2154
|
+
const ABI: CanonicalAbiInfo = CanonicalAbiInfo::record_static(&[
|
2155
|
+
$($t::ABI),*
|
2156
|
+
]);
|
2157
|
+
|
2158
|
+
const IS_RUST_UNIT_TYPE: bool = {
|
2159
|
+
let mut _is_unit = true;
|
2160
|
+
$(
|
2161
|
+
let _anything_to_bind_the_macro_variable = $t::IS_RUST_UNIT_TYPE;
|
2162
|
+
_is_unit = false;
|
2163
|
+
)*
|
2164
|
+
_is_unit
|
2165
|
+
};
|
2166
|
+
|
2167
|
+
fn typecheck(
|
2168
|
+
ty: &InterfaceType,
|
2169
|
+
types: &ComponentTypes,
|
2170
|
+
) -> Result<()> {
|
2171
|
+
typecheck_tuple(ty, types, &[$($t::typecheck),*])
|
2172
|
+
}
|
2173
|
+
}
|
2174
|
+
|
2175
|
+
#[allow(non_snake_case)]
|
2176
|
+
unsafe impl<$($t,)*> Lower for ($($t,)*)
|
2177
|
+
where $($t: Lower),*
|
2178
|
+
{
|
2179
|
+
fn lower<U>(
|
2180
|
+
&self,
|
2181
|
+
cx: &mut LowerContext<'_, U>,
|
2182
|
+
ty: InterfaceType,
|
2183
|
+
_dst: &mut MaybeUninit<Self::Lower>,
|
2184
|
+
) -> Result<()> {
|
2185
|
+
let types = match ty {
|
2186
|
+
InterfaceType::Tuple(t) => &cx.types[t].types,
|
2187
|
+
_ => bad_type_info(),
|
2188
|
+
};
|
2189
|
+
let ($($t,)*) = self;
|
2190
|
+
let mut _types = types.iter();
|
2191
|
+
$(
|
2192
|
+
let ty = *_types.next().unwrap_or_else(bad_type_info);
|
2193
|
+
$t.lower(cx, ty, map_maybe_uninit!(_dst.$t))?;
|
2194
|
+
)*
|
2195
|
+
Ok(())
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
fn store<U>(
|
2199
|
+
&self,
|
2200
|
+
cx: &mut LowerContext<'_, U>,
|
2201
|
+
ty: InterfaceType,
|
2202
|
+
mut _offset: usize,
|
2203
|
+
) -> Result<()> {
|
2204
|
+
debug_assert!(_offset % (Self::ALIGN32 as usize) == 0);
|
2205
|
+
let types = match ty {
|
2206
|
+
InterfaceType::Tuple(t) => &cx.types[t].types,
|
2207
|
+
_ => bad_type_info(),
|
2208
|
+
};
|
2209
|
+
let ($($t,)*) = self;
|
2210
|
+
let mut _types = types.iter();
|
2211
|
+
$(
|
2212
|
+
let ty = *_types.next().unwrap_or_else(bad_type_info);
|
2213
|
+
$t.store(cx, ty, $t::ABI.next_field32_size(&mut _offset))?;
|
2214
|
+
)*
|
2215
|
+
Ok(())
|
2216
|
+
}
|
2217
|
+
}
|
2218
|
+
|
2219
|
+
#[allow(non_snake_case)]
|
2220
|
+
unsafe impl<$($t,)*> Lift for ($($t,)*)
|
2221
|
+
where $($t: Lift),*
|
2222
|
+
{
|
2223
|
+
fn lift(cx: &LiftContext<'_>, ty: InterfaceType, _src: &Self::Lower) -> Result<Self> {
|
2224
|
+
let types = match ty {
|
2225
|
+
InterfaceType::Tuple(t) => &cx.types[t].types,
|
2226
|
+
_ => bad_type_info(),
|
2227
|
+
};
|
2228
|
+
let mut _types = types.iter();
|
2229
|
+
Ok(($(
|
2230
|
+
$t::lift(
|
2231
|
+
cx,
|
2232
|
+
*_types.next().unwrap_or_else(bad_type_info),
|
2233
|
+
&_src.$t,
|
2234
|
+
)?,
|
2235
|
+
)*))
|
2236
|
+
}
|
2237
|
+
|
2238
|
+
fn load(cx: &LiftContext<'_>, ty: InterfaceType, bytes: &[u8]) -> Result<Self> {
|
2239
|
+
debug_assert!((bytes.as_ptr() as usize) % (Self::ALIGN32 as usize) == 0);
|
2240
|
+
let types = match ty {
|
2241
|
+
InterfaceType::Tuple(t) => &cx.types[t].types,
|
2242
|
+
_ => bad_type_info(),
|
2243
|
+
};
|
2244
|
+
let mut _types = types.iter();
|
2245
|
+
let mut _offset = 0;
|
2246
|
+
$(
|
2247
|
+
let ty = *_types.next().unwrap_or_else(bad_type_info);
|
2248
|
+
let $t = $t::load(cx, ty, &bytes[$t::ABI.next_field32_size(&mut _offset)..][..$t::SIZE32])?;
|
2249
|
+
)*
|
2250
|
+
Ok(($($t,)*))
|
2251
|
+
}
|
2252
|
+
}
|
2253
|
+
|
2254
|
+
#[allow(non_snake_case)]
|
2255
|
+
unsafe impl<$($t,)*> ComponentNamedList for ($($t,)*)
|
2256
|
+
where $($t: ComponentType),*
|
2257
|
+
{}
|
2258
|
+
}};
|
2259
|
+
}
|
2260
|
+
|
2261
|
+
for_each_function_signature!(impl_component_ty_for_tuples);
|
2262
|
+
|
2263
|
+
fn desc(ty: &InterfaceType) -> &'static str {
|
2264
|
+
match ty {
|
2265
|
+
InterfaceType::U8 => "u8",
|
2266
|
+
InterfaceType::S8 => "s8",
|
2267
|
+
InterfaceType::U16 => "u16",
|
2268
|
+
InterfaceType::S16 => "s16",
|
2269
|
+
InterfaceType::U32 => "u32",
|
2270
|
+
InterfaceType::S32 => "s32",
|
2271
|
+
InterfaceType::U64 => "u64",
|
2272
|
+
InterfaceType::S64 => "s64",
|
2273
|
+
InterfaceType::Float32 => "f32",
|
2274
|
+
InterfaceType::Float64 => "f64",
|
2275
|
+
InterfaceType::Bool => "bool",
|
2276
|
+
InterfaceType::Char => "char",
|
2277
|
+
InterfaceType::String => "string",
|
2278
|
+
InterfaceType::List(_) => "list",
|
2279
|
+
InterfaceType::Tuple(_) => "tuple",
|
2280
|
+
InterfaceType::Option(_) => "option",
|
2281
|
+
InterfaceType::Result(_) => "result",
|
2282
|
+
|
2283
|
+
InterfaceType::Record(_) => "record",
|
2284
|
+
InterfaceType::Variant(_) => "variant",
|
2285
|
+
InterfaceType::Flags(_) => "flags",
|
2286
|
+
InterfaceType::Enum(_) => "enum",
|
2287
|
+
InterfaceType::Union(_) => "union",
|
2288
|
+
}
|
2289
|
+
}
|
2290
|
+
|
2291
|
+
#[cold]
|
2292
|
+
#[doc(hidden)]
|
2293
|
+
pub fn bad_type_info<T>() -> T {
|
2294
|
+
// NB: should consider something like `unreachable_unchecked` here if this
|
2295
|
+
// becomes a performance bottleneck at some point, but that also comes with
|
2296
|
+
// a tradeoff of propagating a lot of unsafety, so it may not be worth it.
|
2297
|
+
panic!("bad type information detected");
|
2298
|
+
}
|