wasmtime 10.0.1 → 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/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 +2291 -2262
- 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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-common-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-10.0.1/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasmtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-10.0.1/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/component.rs +0 -382
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/host.rs +0 -423
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/options.rs +0 -237
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/typed.rs +0 -2059
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func.rs +0 -684
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/types.rs +0 -545
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/values.rs +0 -1219
- data/ext/cargo-vendor/wasmtime-10.0.1/src/config.rs +0 -2066
- data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/bindgen.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/component.rs +0 -1199
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/tests/codegen.rs +0 -24
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler/component.rs +0 -578
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler.rs +0 -1200
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/func_environ.rs +0 -2206
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/lib.rs +0 -178
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/examples/factc.rs +0 -212
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/info.rs +0 -514
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/inline.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate.rs +0 -1070
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/types.rs +0 -1916
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/trampoline.rs +0 -3157
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/code_memory.rs +0 -309
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks.rs +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/ctx.rs +0 -206
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/poll.rs +0 -84
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched.rs +0 -105
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/lib.rs +0 -1631
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/rust.rs +0 -473
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/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.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-10.0.1/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.8.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.8.1/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/abi/mod.rs +0 -237
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/call.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/context.rs +0 -270
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/env.rs +0 -52
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/mod.rs +0 -214
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/abi.rs +0 -243
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/asm.rs +0 -300
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/masm.rs +0 -230
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/mod.rs +0 -215
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/abi.rs +0 -369
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/asm.rs +0 -576
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/masm.rs +0 -288
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/regs.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/masm.rs +0 -255
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/stack.rs +0 -235
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/trampoline.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-0.8.1/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.1 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → 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.1 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → 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.1 → wiggle-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → 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,3054 @@
|
|
1
|
+
//! PE/COFF definitions.
|
2
|
+
//!
|
3
|
+
//! These definitions are independent of read/write support, although we do implement
|
4
|
+
//! some traits useful for those.
|
5
|
+
//!
|
6
|
+
//! This module is based heavily on "winnt.h" (10.0.17763.0).
|
7
|
+
|
8
|
+
#![allow(missing_docs)]
|
9
|
+
|
10
|
+
use core::convert::TryInto;
|
11
|
+
|
12
|
+
use crate::endian::{I32Bytes, LittleEndian as LE, U16Bytes, U32Bytes, I32, U16, U32, U64};
|
13
|
+
use crate::pod::Pod;
|
14
|
+
|
15
|
+
/// MZ
|
16
|
+
pub const IMAGE_DOS_SIGNATURE: u16 = 0x5A4D;
|
17
|
+
/// NE
|
18
|
+
pub const IMAGE_OS2_SIGNATURE: u16 = 0x454E;
|
19
|
+
/// LE
|
20
|
+
pub const IMAGE_OS2_SIGNATURE_LE: u16 = 0x454C;
|
21
|
+
/// LE
|
22
|
+
pub const IMAGE_VXD_SIGNATURE: u16 = 0x454C;
|
23
|
+
/// PE00
|
24
|
+
pub const IMAGE_NT_SIGNATURE: u32 = 0x0000_4550;
|
25
|
+
|
26
|
+
/// DOS .EXE header
|
27
|
+
#[derive(Debug, Clone, Copy)]
|
28
|
+
#[repr(C)]
|
29
|
+
pub struct ImageDosHeader {
|
30
|
+
/// Magic number
|
31
|
+
pub e_magic: U16<LE>,
|
32
|
+
/// Bytes on last page of file
|
33
|
+
pub e_cblp: U16<LE>,
|
34
|
+
/// Pages in file
|
35
|
+
pub e_cp: U16<LE>,
|
36
|
+
/// Relocations
|
37
|
+
pub e_crlc: U16<LE>,
|
38
|
+
/// Size of header in paragraphs
|
39
|
+
pub e_cparhdr: U16<LE>,
|
40
|
+
/// Minimum extra paragraphs needed
|
41
|
+
pub e_minalloc: U16<LE>,
|
42
|
+
/// Maximum extra paragraphs needed
|
43
|
+
pub e_maxalloc: U16<LE>,
|
44
|
+
/// Initial (relative) SS value
|
45
|
+
pub e_ss: U16<LE>,
|
46
|
+
/// Initial SP value
|
47
|
+
pub e_sp: U16<LE>,
|
48
|
+
/// Checksum
|
49
|
+
pub e_csum: U16<LE>,
|
50
|
+
/// Initial IP value
|
51
|
+
pub e_ip: U16<LE>,
|
52
|
+
/// Initial (relative) CS value
|
53
|
+
pub e_cs: U16<LE>,
|
54
|
+
/// File address of relocation table
|
55
|
+
pub e_lfarlc: U16<LE>,
|
56
|
+
/// Overlay number
|
57
|
+
pub e_ovno: U16<LE>,
|
58
|
+
/// Reserved words
|
59
|
+
pub e_res: [U16<LE>; 4],
|
60
|
+
/// OEM identifier (for e_oeminfo)
|
61
|
+
pub e_oemid: U16<LE>,
|
62
|
+
/// OEM information; e_oemid specific
|
63
|
+
pub e_oeminfo: U16<LE>,
|
64
|
+
/// Reserved words
|
65
|
+
pub e_res2: [U16<LE>; 10],
|
66
|
+
/// File address of new exe header
|
67
|
+
pub e_lfanew: U32<LE>,
|
68
|
+
}
|
69
|
+
|
70
|
+
/// OS/2 .EXE header
|
71
|
+
#[derive(Debug, Clone, Copy)]
|
72
|
+
#[repr(C)]
|
73
|
+
pub struct ImageOs2Header {
|
74
|
+
/// Magic number
|
75
|
+
pub ne_magic: U16<LE>,
|
76
|
+
/// Version number
|
77
|
+
pub ne_ver: i8,
|
78
|
+
/// Revision number
|
79
|
+
pub ne_rev: i8,
|
80
|
+
/// Offset of Entry Table
|
81
|
+
pub ne_enttab: U16<LE>,
|
82
|
+
/// Number of bytes in Entry Table
|
83
|
+
pub ne_cbenttab: U16<LE>,
|
84
|
+
/// Checksum of whole file
|
85
|
+
pub ne_crc: I32<LE>,
|
86
|
+
/// Flag word
|
87
|
+
pub ne_flags: U16<LE>,
|
88
|
+
/// Automatic data segment number
|
89
|
+
pub ne_autodata: U16<LE>,
|
90
|
+
/// Initial heap allocation
|
91
|
+
pub ne_heap: U16<LE>,
|
92
|
+
/// Initial stack allocation
|
93
|
+
pub ne_stack: U16<LE>,
|
94
|
+
/// Initial CS:IP setting
|
95
|
+
pub ne_csip: I32<LE>,
|
96
|
+
/// Initial SS:SP setting
|
97
|
+
pub ne_sssp: I32<LE>,
|
98
|
+
/// Count of file segments
|
99
|
+
pub ne_cseg: U16<LE>,
|
100
|
+
/// Entries in Module Reference Table
|
101
|
+
pub ne_cmod: U16<LE>,
|
102
|
+
/// Size of non-resident name table
|
103
|
+
pub ne_cbnrestab: U16<LE>,
|
104
|
+
/// Offset of Segment Table
|
105
|
+
pub ne_segtab: U16<LE>,
|
106
|
+
/// Offset of Resource Table
|
107
|
+
pub ne_rsrctab: U16<LE>,
|
108
|
+
/// Offset of resident name table
|
109
|
+
pub ne_restab: U16<LE>,
|
110
|
+
/// Offset of Module Reference Table
|
111
|
+
pub ne_modtab: U16<LE>,
|
112
|
+
/// Offset of Imported Names Table
|
113
|
+
pub ne_imptab: U16<LE>,
|
114
|
+
/// Offset of Non-resident Names Table
|
115
|
+
pub ne_nrestab: I32<LE>,
|
116
|
+
/// Count of movable entries
|
117
|
+
pub ne_cmovent: U16<LE>,
|
118
|
+
/// Segment alignment shift count
|
119
|
+
pub ne_align: U16<LE>,
|
120
|
+
/// Count of resource segments
|
121
|
+
pub ne_cres: U16<LE>,
|
122
|
+
/// Target Operating system
|
123
|
+
pub ne_exetyp: u8,
|
124
|
+
/// Other .EXE flags
|
125
|
+
pub ne_flagsothers: u8,
|
126
|
+
/// offset to return thunks
|
127
|
+
pub ne_pretthunks: U16<LE>,
|
128
|
+
/// offset to segment ref. bytes
|
129
|
+
pub ne_psegrefbytes: U16<LE>,
|
130
|
+
/// Minimum code swap area size
|
131
|
+
pub ne_swaparea: U16<LE>,
|
132
|
+
/// Expected Windows version number
|
133
|
+
pub ne_expver: U16<LE>,
|
134
|
+
}
|
135
|
+
|
136
|
+
/// Windows VXD header
|
137
|
+
#[derive(Debug, Clone, Copy)]
|
138
|
+
#[repr(C)]
|
139
|
+
pub struct ImageVxdHeader {
|
140
|
+
/// Magic number
|
141
|
+
pub e32_magic: U16<LE>,
|
142
|
+
/// The byte ordering for the VXD
|
143
|
+
pub e32_border: u8,
|
144
|
+
/// The word ordering for the VXD
|
145
|
+
pub e32_worder: u8,
|
146
|
+
/// The EXE format level for now = 0
|
147
|
+
pub e32_level: U32<LE>,
|
148
|
+
/// The CPU type
|
149
|
+
pub e32_cpu: U16<LE>,
|
150
|
+
/// The OS type
|
151
|
+
pub e32_os: U16<LE>,
|
152
|
+
/// Module version
|
153
|
+
pub e32_ver: U32<LE>,
|
154
|
+
/// Module flags
|
155
|
+
pub e32_mflags: U32<LE>,
|
156
|
+
/// Module # pages
|
157
|
+
pub e32_mpages: U32<LE>,
|
158
|
+
/// Object # for instruction pointer
|
159
|
+
pub e32_startobj: U32<LE>,
|
160
|
+
/// Extended instruction pointer
|
161
|
+
pub e32_eip: U32<LE>,
|
162
|
+
/// Object # for stack pointer
|
163
|
+
pub e32_stackobj: U32<LE>,
|
164
|
+
/// Extended stack pointer
|
165
|
+
pub e32_esp: U32<LE>,
|
166
|
+
/// VXD page size
|
167
|
+
pub e32_pagesize: U32<LE>,
|
168
|
+
/// Last page size in VXD
|
169
|
+
pub e32_lastpagesize: U32<LE>,
|
170
|
+
/// Fixup section size
|
171
|
+
pub e32_fixupsize: U32<LE>,
|
172
|
+
/// Fixup section checksum
|
173
|
+
pub e32_fixupsum: U32<LE>,
|
174
|
+
/// Loader section size
|
175
|
+
pub e32_ldrsize: U32<LE>,
|
176
|
+
/// Loader section checksum
|
177
|
+
pub e32_ldrsum: U32<LE>,
|
178
|
+
/// Object table offset
|
179
|
+
pub e32_objtab: U32<LE>,
|
180
|
+
/// Number of objects in module
|
181
|
+
pub e32_objcnt: U32<LE>,
|
182
|
+
/// Object page map offset
|
183
|
+
pub e32_objmap: U32<LE>,
|
184
|
+
/// Object iterated data map offset
|
185
|
+
pub e32_itermap: U32<LE>,
|
186
|
+
/// Offset of Resource Table
|
187
|
+
pub e32_rsrctab: U32<LE>,
|
188
|
+
/// Number of resource entries
|
189
|
+
pub e32_rsrccnt: U32<LE>,
|
190
|
+
/// Offset of resident name table
|
191
|
+
pub e32_restab: U32<LE>,
|
192
|
+
/// Offset of Entry Table
|
193
|
+
pub e32_enttab: U32<LE>,
|
194
|
+
/// Offset of Module Directive Table
|
195
|
+
pub e32_dirtab: U32<LE>,
|
196
|
+
/// Number of module directives
|
197
|
+
pub e32_dircnt: U32<LE>,
|
198
|
+
/// Offset of Fixup Page Table
|
199
|
+
pub e32_fpagetab: U32<LE>,
|
200
|
+
/// Offset of Fixup Record Table
|
201
|
+
pub e32_frectab: U32<LE>,
|
202
|
+
/// Offset of Import Module Name Table
|
203
|
+
pub e32_impmod: U32<LE>,
|
204
|
+
/// Number of entries in Import Module Name Table
|
205
|
+
pub e32_impmodcnt: U32<LE>,
|
206
|
+
/// Offset of Import Procedure Name Table
|
207
|
+
pub e32_impproc: U32<LE>,
|
208
|
+
/// Offset of Per-Page Checksum Table
|
209
|
+
pub e32_pagesum: U32<LE>,
|
210
|
+
/// Offset of Enumerated Data Pages
|
211
|
+
pub e32_datapage: U32<LE>,
|
212
|
+
/// Number of preload pages
|
213
|
+
pub e32_preload: U32<LE>,
|
214
|
+
/// Offset of Non-resident Names Table
|
215
|
+
pub e32_nrestab: U32<LE>,
|
216
|
+
/// Size of Non-resident Name Table
|
217
|
+
pub e32_cbnrestab: U32<LE>,
|
218
|
+
/// Non-resident Name Table Checksum
|
219
|
+
pub e32_nressum: U32<LE>,
|
220
|
+
/// Object # for automatic data object
|
221
|
+
pub e32_autodata: U32<LE>,
|
222
|
+
/// Offset of the debugging information
|
223
|
+
pub e32_debuginfo: U32<LE>,
|
224
|
+
/// The length of the debugging info. in bytes
|
225
|
+
pub e32_debuglen: U32<LE>,
|
226
|
+
/// Number of instance pages in preload section of VXD file
|
227
|
+
pub e32_instpreload: U32<LE>,
|
228
|
+
/// Number of instance pages in demand load section of VXD file
|
229
|
+
pub e32_instdemand: U32<LE>,
|
230
|
+
/// Size of heap - for 16-bit apps
|
231
|
+
pub e32_heapsize: U32<LE>,
|
232
|
+
/// Reserved words
|
233
|
+
pub e32_res3: [u8; 12],
|
234
|
+
pub e32_winresoff: U32<LE>,
|
235
|
+
pub e32_winreslen: U32<LE>,
|
236
|
+
/// Device ID for VxD
|
237
|
+
pub e32_devid: U16<LE>,
|
238
|
+
/// DDK version for VxD
|
239
|
+
pub e32_ddkver: U16<LE>,
|
240
|
+
}
|
241
|
+
|
242
|
+
/// A PE rich header entry.
|
243
|
+
///
|
244
|
+
/// Rich headers have no official documentation, but have been heavily
|
245
|
+
/// reversed-engineered and documented in the wild, e.g.:
|
246
|
+
/// * `http://www.ntcore.com/files/richsign.htm`
|
247
|
+
/// * `https://www.researchgate.net/figure/Structure-of-the-Rich-Header_fig1_318145388`
|
248
|
+
///
|
249
|
+
/// This data is "masked", i.e. XORed with a checksum derived from the file data.
|
250
|
+
#[derive(Debug, Clone, Copy)]
|
251
|
+
#[repr(C)]
|
252
|
+
pub struct MaskedRichHeaderEntry {
|
253
|
+
pub masked_comp_id: U32<LE>,
|
254
|
+
pub masked_count: U32<LE>,
|
255
|
+
}
|
256
|
+
|
257
|
+
//
|
258
|
+
// File header format.
|
259
|
+
//
|
260
|
+
|
261
|
+
#[derive(Debug, Clone, Copy)]
|
262
|
+
#[repr(C)]
|
263
|
+
pub struct ImageFileHeader {
|
264
|
+
pub machine: U16<LE>,
|
265
|
+
pub number_of_sections: U16<LE>,
|
266
|
+
pub time_date_stamp: U32<LE>,
|
267
|
+
pub pointer_to_symbol_table: U32<LE>,
|
268
|
+
pub number_of_symbols: U32<LE>,
|
269
|
+
pub size_of_optional_header: U16<LE>,
|
270
|
+
pub characteristics: U16<LE>,
|
271
|
+
}
|
272
|
+
|
273
|
+
pub const IMAGE_SIZEOF_FILE_HEADER: usize = 20;
|
274
|
+
|
275
|
+
/// Relocation info stripped from file.
|
276
|
+
pub const IMAGE_FILE_RELOCS_STRIPPED: u16 = 0x0001;
|
277
|
+
/// File is executable (i.e. no unresolved external references).
|
278
|
+
pub const IMAGE_FILE_EXECUTABLE_IMAGE: u16 = 0x0002;
|
279
|
+
/// Line numbers stripped from file.
|
280
|
+
pub const IMAGE_FILE_LINE_NUMS_STRIPPED: u16 = 0x0004;
|
281
|
+
/// Local symbols stripped from file.
|
282
|
+
pub const IMAGE_FILE_LOCAL_SYMS_STRIPPED: u16 = 0x0008;
|
283
|
+
/// Aggressively trim working set
|
284
|
+
pub const IMAGE_FILE_AGGRESIVE_WS_TRIM: u16 = 0x0010;
|
285
|
+
/// App can handle >2gb addresses
|
286
|
+
pub const IMAGE_FILE_LARGE_ADDRESS_AWARE: u16 = 0x0020;
|
287
|
+
/// Bytes of machine word are reversed.
|
288
|
+
pub const IMAGE_FILE_BYTES_REVERSED_LO: u16 = 0x0080;
|
289
|
+
/// 32 bit word machine.
|
290
|
+
pub const IMAGE_FILE_32BIT_MACHINE: u16 = 0x0100;
|
291
|
+
/// Debugging info stripped from file in .DBG file
|
292
|
+
pub const IMAGE_FILE_DEBUG_STRIPPED: u16 = 0x0200;
|
293
|
+
/// If Image is on removable media, copy and run from the swap file.
|
294
|
+
pub const IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP: u16 = 0x0400;
|
295
|
+
/// If Image is on Net, copy and run from the swap file.
|
296
|
+
pub const IMAGE_FILE_NET_RUN_FROM_SWAP: u16 = 0x0800;
|
297
|
+
/// System File.
|
298
|
+
pub const IMAGE_FILE_SYSTEM: u16 = 0x1000;
|
299
|
+
/// File is a DLL.
|
300
|
+
pub const IMAGE_FILE_DLL: u16 = 0x2000;
|
301
|
+
/// File should only be run on a UP machine
|
302
|
+
pub const IMAGE_FILE_UP_SYSTEM_ONLY: u16 = 0x4000;
|
303
|
+
/// Bytes of machine word are reversed.
|
304
|
+
pub const IMAGE_FILE_BYTES_REVERSED_HI: u16 = 0x8000;
|
305
|
+
|
306
|
+
pub const IMAGE_FILE_MACHINE_UNKNOWN: u16 = 0;
|
307
|
+
/// Useful for indicating we want to interact with the host and not a WoW guest.
|
308
|
+
pub const IMAGE_FILE_MACHINE_TARGET_HOST: u16 = 0x0001;
|
309
|
+
/// Intel 386.
|
310
|
+
pub const IMAGE_FILE_MACHINE_I386: u16 = 0x014c;
|
311
|
+
/// MIPS little-endian, 0x160 big-endian
|
312
|
+
pub const IMAGE_FILE_MACHINE_R3000: u16 = 0x0162;
|
313
|
+
/// MIPS little-endian
|
314
|
+
pub const IMAGE_FILE_MACHINE_R4000: u16 = 0x0166;
|
315
|
+
/// MIPS little-endian
|
316
|
+
pub const IMAGE_FILE_MACHINE_R10000: u16 = 0x0168;
|
317
|
+
/// MIPS little-endian WCE v2
|
318
|
+
pub const IMAGE_FILE_MACHINE_WCEMIPSV2: u16 = 0x0169;
|
319
|
+
/// Alpha_AXP
|
320
|
+
pub const IMAGE_FILE_MACHINE_ALPHA: u16 = 0x0184;
|
321
|
+
/// SH3 little-endian
|
322
|
+
pub const IMAGE_FILE_MACHINE_SH3: u16 = 0x01a2;
|
323
|
+
pub const IMAGE_FILE_MACHINE_SH3DSP: u16 = 0x01a3;
|
324
|
+
/// SH3E little-endian
|
325
|
+
pub const IMAGE_FILE_MACHINE_SH3E: u16 = 0x01a4;
|
326
|
+
/// SH4 little-endian
|
327
|
+
pub const IMAGE_FILE_MACHINE_SH4: u16 = 0x01a6;
|
328
|
+
/// SH5
|
329
|
+
pub const IMAGE_FILE_MACHINE_SH5: u16 = 0x01a8;
|
330
|
+
/// ARM Little-Endian
|
331
|
+
pub const IMAGE_FILE_MACHINE_ARM: u16 = 0x01c0;
|
332
|
+
/// ARM Thumb/Thumb-2 Little-Endian
|
333
|
+
pub const IMAGE_FILE_MACHINE_THUMB: u16 = 0x01c2;
|
334
|
+
/// ARM Thumb-2 Little-Endian
|
335
|
+
pub const IMAGE_FILE_MACHINE_ARMNT: u16 = 0x01c4;
|
336
|
+
pub const IMAGE_FILE_MACHINE_AM33: u16 = 0x01d3;
|
337
|
+
/// IBM PowerPC Little-Endian
|
338
|
+
pub const IMAGE_FILE_MACHINE_POWERPC: u16 = 0x01F0;
|
339
|
+
pub const IMAGE_FILE_MACHINE_POWERPCFP: u16 = 0x01f1;
|
340
|
+
/// Intel 64
|
341
|
+
pub const IMAGE_FILE_MACHINE_IA64: u16 = 0x0200;
|
342
|
+
/// MIPS
|
343
|
+
pub const IMAGE_FILE_MACHINE_MIPS16: u16 = 0x0266;
|
344
|
+
/// ALPHA64
|
345
|
+
pub const IMAGE_FILE_MACHINE_ALPHA64: u16 = 0x0284;
|
346
|
+
/// MIPS
|
347
|
+
pub const IMAGE_FILE_MACHINE_MIPSFPU: u16 = 0x0366;
|
348
|
+
/// MIPS
|
349
|
+
pub const IMAGE_FILE_MACHINE_MIPSFPU16: u16 = 0x0466;
|
350
|
+
pub const IMAGE_FILE_MACHINE_AXP64: u16 = IMAGE_FILE_MACHINE_ALPHA64;
|
351
|
+
/// Infineon
|
352
|
+
pub const IMAGE_FILE_MACHINE_TRICORE: u16 = 0x0520;
|
353
|
+
pub const IMAGE_FILE_MACHINE_CEF: u16 = 0x0CEF;
|
354
|
+
/// EFI Byte Code
|
355
|
+
pub const IMAGE_FILE_MACHINE_EBC: u16 = 0x0EBC;
|
356
|
+
/// AMD64 (K8)
|
357
|
+
pub const IMAGE_FILE_MACHINE_AMD64: u16 = 0x8664;
|
358
|
+
/// M32R little-endian
|
359
|
+
pub const IMAGE_FILE_MACHINE_M32R: u16 = 0x9041;
|
360
|
+
/// ARM64 Little-Endian
|
361
|
+
pub const IMAGE_FILE_MACHINE_ARM64: u16 = 0xAA64;
|
362
|
+
pub const IMAGE_FILE_MACHINE_CEE: u16 = 0xC0EE;
|
363
|
+
/// RISCV32
|
364
|
+
pub const IMAGE_FILE_MACHINE_RISCV32: u16 = 0x5032;
|
365
|
+
/// RISCV64
|
366
|
+
pub const IMAGE_FILE_MACHINE_RISCV64: u16 = 0x5064;
|
367
|
+
/// RISCV128
|
368
|
+
pub const IMAGE_FILE_MACHINE_RISCV128: u16 = 0x5128;
|
369
|
+
|
370
|
+
//
|
371
|
+
// Directory format.
|
372
|
+
//
|
373
|
+
|
374
|
+
#[derive(Debug, Clone, Copy)]
|
375
|
+
#[repr(C)]
|
376
|
+
pub struct ImageDataDirectory {
|
377
|
+
pub virtual_address: U32<LE>,
|
378
|
+
pub size: U32<LE>,
|
379
|
+
}
|
380
|
+
|
381
|
+
pub const IMAGE_NUMBEROF_DIRECTORY_ENTRIES: usize = 16;
|
382
|
+
|
383
|
+
//
|
384
|
+
// Optional header format.
|
385
|
+
//
|
386
|
+
|
387
|
+
#[derive(Debug, Clone, Copy)]
|
388
|
+
#[repr(C)]
|
389
|
+
pub struct ImageOptionalHeader32 {
|
390
|
+
// Standard fields.
|
391
|
+
pub magic: U16<LE>,
|
392
|
+
pub major_linker_version: u8,
|
393
|
+
pub minor_linker_version: u8,
|
394
|
+
pub size_of_code: U32<LE>,
|
395
|
+
pub size_of_initialized_data: U32<LE>,
|
396
|
+
pub size_of_uninitialized_data: U32<LE>,
|
397
|
+
pub address_of_entry_point: U32<LE>,
|
398
|
+
pub base_of_code: U32<LE>,
|
399
|
+
pub base_of_data: U32<LE>,
|
400
|
+
|
401
|
+
// NT additional fields.
|
402
|
+
pub image_base: U32<LE>,
|
403
|
+
pub section_alignment: U32<LE>,
|
404
|
+
pub file_alignment: U32<LE>,
|
405
|
+
pub major_operating_system_version: U16<LE>,
|
406
|
+
pub minor_operating_system_version: U16<LE>,
|
407
|
+
pub major_image_version: U16<LE>,
|
408
|
+
pub minor_image_version: U16<LE>,
|
409
|
+
pub major_subsystem_version: U16<LE>,
|
410
|
+
pub minor_subsystem_version: U16<LE>,
|
411
|
+
pub win32_version_value: U32<LE>,
|
412
|
+
pub size_of_image: U32<LE>,
|
413
|
+
pub size_of_headers: U32<LE>,
|
414
|
+
pub check_sum: U32<LE>,
|
415
|
+
pub subsystem: U16<LE>,
|
416
|
+
pub dll_characteristics: U16<LE>,
|
417
|
+
pub size_of_stack_reserve: U32<LE>,
|
418
|
+
pub size_of_stack_commit: U32<LE>,
|
419
|
+
pub size_of_heap_reserve: U32<LE>,
|
420
|
+
pub size_of_heap_commit: U32<LE>,
|
421
|
+
pub loader_flags: U32<LE>,
|
422
|
+
pub number_of_rva_and_sizes: U32<LE>,
|
423
|
+
//pub data_directory: [ImageDataDirectory; IMAGE_NUMBEROF_DIRECTORY_ENTRIES],
|
424
|
+
}
|
425
|
+
|
426
|
+
#[derive(Debug, Clone, Copy)]
|
427
|
+
#[repr(C)]
|
428
|
+
pub struct ImageRomOptionalHeader {
|
429
|
+
pub magic: U16<LE>,
|
430
|
+
pub major_linker_version: u8,
|
431
|
+
pub minor_linker_version: u8,
|
432
|
+
pub size_of_code: U32<LE>,
|
433
|
+
pub size_of_initialized_data: U32<LE>,
|
434
|
+
pub size_of_uninitialized_data: U32<LE>,
|
435
|
+
pub address_of_entry_point: U32<LE>,
|
436
|
+
pub base_of_code: U32<LE>,
|
437
|
+
pub base_of_data: U32<LE>,
|
438
|
+
pub base_of_bss: U32<LE>,
|
439
|
+
pub gpr_mask: U32<LE>,
|
440
|
+
pub cpr_mask: [U32<LE>; 4],
|
441
|
+
pub gp_value: U32<LE>,
|
442
|
+
}
|
443
|
+
|
444
|
+
#[derive(Debug, Clone, Copy)]
|
445
|
+
#[repr(C)]
|
446
|
+
pub struct ImageOptionalHeader64 {
|
447
|
+
pub magic: U16<LE>,
|
448
|
+
pub major_linker_version: u8,
|
449
|
+
pub minor_linker_version: u8,
|
450
|
+
pub size_of_code: U32<LE>,
|
451
|
+
pub size_of_initialized_data: U32<LE>,
|
452
|
+
pub size_of_uninitialized_data: U32<LE>,
|
453
|
+
pub address_of_entry_point: U32<LE>,
|
454
|
+
pub base_of_code: U32<LE>,
|
455
|
+
pub image_base: U64<LE>,
|
456
|
+
pub section_alignment: U32<LE>,
|
457
|
+
pub file_alignment: U32<LE>,
|
458
|
+
pub major_operating_system_version: U16<LE>,
|
459
|
+
pub minor_operating_system_version: U16<LE>,
|
460
|
+
pub major_image_version: U16<LE>,
|
461
|
+
pub minor_image_version: U16<LE>,
|
462
|
+
pub major_subsystem_version: U16<LE>,
|
463
|
+
pub minor_subsystem_version: U16<LE>,
|
464
|
+
pub win32_version_value: U32<LE>,
|
465
|
+
pub size_of_image: U32<LE>,
|
466
|
+
pub size_of_headers: U32<LE>,
|
467
|
+
pub check_sum: U32<LE>,
|
468
|
+
pub subsystem: U16<LE>,
|
469
|
+
pub dll_characteristics: U16<LE>,
|
470
|
+
pub size_of_stack_reserve: U64<LE>,
|
471
|
+
pub size_of_stack_commit: U64<LE>,
|
472
|
+
pub size_of_heap_reserve: U64<LE>,
|
473
|
+
pub size_of_heap_commit: U64<LE>,
|
474
|
+
pub loader_flags: U32<LE>,
|
475
|
+
pub number_of_rva_and_sizes: U32<LE>,
|
476
|
+
//pub data_directory: [ImageDataDirectory; IMAGE_NUMBEROF_DIRECTORY_ENTRIES],
|
477
|
+
}
|
478
|
+
|
479
|
+
pub const IMAGE_NT_OPTIONAL_HDR32_MAGIC: u16 = 0x10b;
|
480
|
+
pub const IMAGE_NT_OPTIONAL_HDR64_MAGIC: u16 = 0x20b;
|
481
|
+
pub const IMAGE_ROM_OPTIONAL_HDR_MAGIC: u16 = 0x107;
|
482
|
+
|
483
|
+
#[derive(Debug, Clone, Copy)]
|
484
|
+
#[repr(C)]
|
485
|
+
pub struct ImageNtHeaders64 {
|
486
|
+
pub signature: U32<LE>,
|
487
|
+
pub file_header: ImageFileHeader,
|
488
|
+
pub optional_header: ImageOptionalHeader64,
|
489
|
+
}
|
490
|
+
|
491
|
+
#[derive(Debug, Clone, Copy)]
|
492
|
+
#[repr(C)]
|
493
|
+
pub struct ImageNtHeaders32 {
|
494
|
+
pub signature: U32<LE>,
|
495
|
+
pub file_header: ImageFileHeader,
|
496
|
+
pub optional_header: ImageOptionalHeader32,
|
497
|
+
}
|
498
|
+
|
499
|
+
#[derive(Debug, Clone, Copy)]
|
500
|
+
#[repr(C)]
|
501
|
+
pub struct ImageRomHeaders {
|
502
|
+
pub file_header: ImageFileHeader,
|
503
|
+
pub optional_header: ImageRomOptionalHeader,
|
504
|
+
}
|
505
|
+
|
506
|
+
// Values for `ImageOptionalHeader*::subsystem`.
|
507
|
+
|
508
|
+
/// Unknown subsystem.
|
509
|
+
pub const IMAGE_SUBSYSTEM_UNKNOWN: u16 = 0;
|
510
|
+
/// Image doesn't require a subsystem.
|
511
|
+
pub const IMAGE_SUBSYSTEM_NATIVE: u16 = 1;
|
512
|
+
/// Image runs in the Windows GUI subsystem.
|
513
|
+
pub const IMAGE_SUBSYSTEM_WINDOWS_GUI: u16 = 2;
|
514
|
+
/// Image runs in the Windows character subsystem.
|
515
|
+
pub const IMAGE_SUBSYSTEM_WINDOWS_CUI: u16 = 3;
|
516
|
+
/// image runs in the OS/2 character subsystem.
|
517
|
+
pub const IMAGE_SUBSYSTEM_OS2_CUI: u16 = 5;
|
518
|
+
/// image runs in the Posix character subsystem.
|
519
|
+
pub const IMAGE_SUBSYSTEM_POSIX_CUI: u16 = 7;
|
520
|
+
/// image is a native Win9x driver.
|
521
|
+
pub const IMAGE_SUBSYSTEM_NATIVE_WINDOWS: u16 = 8;
|
522
|
+
/// Image runs in the Windows CE subsystem.
|
523
|
+
pub const IMAGE_SUBSYSTEM_WINDOWS_CE_GUI: u16 = 9;
|
524
|
+
pub const IMAGE_SUBSYSTEM_EFI_APPLICATION: u16 = 10;
|
525
|
+
pub const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER: u16 = 11;
|
526
|
+
pub const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER: u16 = 12;
|
527
|
+
pub const IMAGE_SUBSYSTEM_EFI_ROM: u16 = 13;
|
528
|
+
pub const IMAGE_SUBSYSTEM_XBOX: u16 = 14;
|
529
|
+
pub const IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION: u16 = 16;
|
530
|
+
pub const IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG: u16 = 17;
|
531
|
+
|
532
|
+
// Values for `ImageOptionalHeader*::dll_characteristics`.
|
533
|
+
|
534
|
+
// IMAGE_LIBRARY_PROCESS_INIT 0x0001 // Reserved.
|
535
|
+
// IMAGE_LIBRARY_PROCESS_TERM 0x0002 // Reserved.
|
536
|
+
// IMAGE_LIBRARY_THREAD_INIT 0x0004 // Reserved.
|
537
|
+
// IMAGE_LIBRARY_THREAD_TERM 0x0008 // Reserved.
|
538
|
+
/// Image can handle a high entropy 64-bit virtual address space.
|
539
|
+
pub const IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA: u16 = 0x0020;
|
540
|
+
/// DLL can move.
|
541
|
+
pub const IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE: u16 = 0x0040;
|
542
|
+
/// Code Integrity Image
|
543
|
+
pub const IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY: u16 = 0x0080;
|
544
|
+
/// Image is NX compatible
|
545
|
+
pub const IMAGE_DLLCHARACTERISTICS_NX_COMPAT: u16 = 0x0100;
|
546
|
+
/// Image understands isolation and doesn't want it
|
547
|
+
pub const IMAGE_DLLCHARACTERISTICS_NO_ISOLATION: u16 = 0x0200;
|
548
|
+
/// Image does not use SEH. No SE handler may reside in this image
|
549
|
+
pub const IMAGE_DLLCHARACTERISTICS_NO_SEH: u16 = 0x0400;
|
550
|
+
/// Do not bind this image.
|
551
|
+
pub const IMAGE_DLLCHARACTERISTICS_NO_BIND: u16 = 0x0800;
|
552
|
+
/// Image should execute in an AppContainer
|
553
|
+
pub const IMAGE_DLLCHARACTERISTICS_APPCONTAINER: u16 = 0x1000;
|
554
|
+
/// Driver uses WDM model
|
555
|
+
pub const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER: u16 = 0x2000;
|
556
|
+
/// Image supports Control Flow Guard.
|
557
|
+
pub const IMAGE_DLLCHARACTERISTICS_GUARD_CF: u16 = 0x4000;
|
558
|
+
pub const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE: u16 = 0x8000;
|
559
|
+
|
560
|
+
// Indices for `ImageOptionalHeader*::data_directory`.
|
561
|
+
|
562
|
+
/// Export Directory
|
563
|
+
pub const IMAGE_DIRECTORY_ENTRY_EXPORT: usize = 0;
|
564
|
+
/// Import Directory
|
565
|
+
pub const IMAGE_DIRECTORY_ENTRY_IMPORT: usize = 1;
|
566
|
+
/// Resource Directory
|
567
|
+
pub const IMAGE_DIRECTORY_ENTRY_RESOURCE: usize = 2;
|
568
|
+
/// Exception Directory
|
569
|
+
pub const IMAGE_DIRECTORY_ENTRY_EXCEPTION: usize = 3;
|
570
|
+
/// Security Directory
|
571
|
+
pub const IMAGE_DIRECTORY_ENTRY_SECURITY: usize = 4;
|
572
|
+
/// Base Relocation Table
|
573
|
+
pub const IMAGE_DIRECTORY_ENTRY_BASERELOC: usize = 5;
|
574
|
+
/// Debug Directory
|
575
|
+
pub const IMAGE_DIRECTORY_ENTRY_DEBUG: usize = 6;
|
576
|
+
// IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7 // (X86 usage)
|
577
|
+
/// Architecture Specific Data
|
578
|
+
pub const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE: usize = 7;
|
579
|
+
/// RVA of GP
|
580
|
+
pub const IMAGE_DIRECTORY_ENTRY_GLOBALPTR: usize = 8;
|
581
|
+
/// TLS Directory
|
582
|
+
pub const IMAGE_DIRECTORY_ENTRY_TLS: usize = 9;
|
583
|
+
/// Load Configuration Directory
|
584
|
+
pub const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG: usize = 10;
|
585
|
+
/// Bound Import Directory in headers
|
586
|
+
pub const IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT: usize = 11;
|
587
|
+
/// Import Address Table
|
588
|
+
pub const IMAGE_DIRECTORY_ENTRY_IAT: usize = 12;
|
589
|
+
/// Delay Load Import Descriptors
|
590
|
+
pub const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT: usize = 13;
|
591
|
+
/// COM Runtime descriptor
|
592
|
+
pub const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR: usize = 14;
|
593
|
+
|
594
|
+
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
595
|
+
#[repr(C)]
|
596
|
+
pub struct Guid(pub [u8; 16]);
|
597
|
+
|
598
|
+
impl Guid {
|
599
|
+
#[inline]
|
600
|
+
pub fn data1(self) -> U32<LE> {
|
601
|
+
U32::from_bytes(self.0[0..4].try_into().unwrap())
|
602
|
+
}
|
603
|
+
|
604
|
+
#[inline]
|
605
|
+
pub fn data2(self) -> U16<LE> {
|
606
|
+
U16::from_bytes(self.0[4..6].try_into().unwrap())
|
607
|
+
}
|
608
|
+
|
609
|
+
#[inline]
|
610
|
+
pub fn data3(self) -> U16<LE> {
|
611
|
+
U16::from_bytes(self.0[6..8].try_into().unwrap())
|
612
|
+
}
|
613
|
+
|
614
|
+
#[inline]
|
615
|
+
pub fn data4(self) -> [u8; 8] {
|
616
|
+
self.0[8..16].try_into().unwrap()
|
617
|
+
}
|
618
|
+
}
|
619
|
+
|
620
|
+
pub use Guid as ClsId;
|
621
|
+
|
622
|
+
/// Non-COFF Object file header
|
623
|
+
#[derive(Debug, Clone, Copy)]
|
624
|
+
#[repr(C)]
|
625
|
+
pub struct AnonObjectHeader {
|
626
|
+
/// Must be IMAGE_FILE_MACHINE_UNKNOWN
|
627
|
+
pub sig1: U16<LE>,
|
628
|
+
/// Must be 0xffff
|
629
|
+
pub sig2: U16<LE>,
|
630
|
+
/// >= 1 (implies the ClsId field is present)
|
631
|
+
pub version: U16<LE>,
|
632
|
+
pub machine: U16<LE>,
|
633
|
+
pub time_date_stamp: U32<LE>,
|
634
|
+
/// Used to invoke CoCreateInstance
|
635
|
+
pub class_id: ClsId,
|
636
|
+
/// Size of data that follows the header
|
637
|
+
pub size_of_data: U32<LE>,
|
638
|
+
}
|
639
|
+
|
640
|
+
#[derive(Debug, Clone, Copy)]
|
641
|
+
#[repr(C)]
|
642
|
+
pub struct AnonObjectHeaderV2 {
|
643
|
+
/// Must be IMAGE_FILE_MACHINE_UNKNOWN
|
644
|
+
pub sig1: U16<LE>,
|
645
|
+
/// Must be 0xffff
|
646
|
+
pub sig2: U16<LE>,
|
647
|
+
/// >= 2 (implies the Flags field is present - otherwise V1)
|
648
|
+
pub version: U16<LE>,
|
649
|
+
pub machine: U16<LE>,
|
650
|
+
pub time_date_stamp: U32<LE>,
|
651
|
+
/// Used to invoke CoCreateInstance
|
652
|
+
pub class_id: ClsId,
|
653
|
+
/// Size of data that follows the header
|
654
|
+
pub size_of_data: U32<LE>,
|
655
|
+
/// 0x1 -> contains metadata
|
656
|
+
pub flags: U32<LE>,
|
657
|
+
/// Size of CLR metadata
|
658
|
+
pub meta_data_size: U32<LE>,
|
659
|
+
/// Offset of CLR metadata
|
660
|
+
pub meta_data_offset: U32<LE>,
|
661
|
+
}
|
662
|
+
|
663
|
+
/// The required value of `AnonObjectHeaderBigobj::class_id`.
|
664
|
+
pub const ANON_OBJECT_HEADER_BIGOBJ_CLASS_ID: ClsId = ClsId([
|
665
|
+
0xC7, 0xA1, 0xBA, 0xD1, 0xEE, 0xBA, 0xA9, 0x4B, 0xAF, 0x20, 0xFA, 0xF6, 0x6A, 0xA4, 0xDC, 0xB8,
|
666
|
+
]);
|
667
|
+
|
668
|
+
#[derive(Debug, Clone, Copy)]
|
669
|
+
#[repr(C)]
|
670
|
+
pub struct AnonObjectHeaderBigobj {
|
671
|
+
/* same as ANON_OBJECT_HEADER_V2 */
|
672
|
+
/// Must be IMAGE_FILE_MACHINE_UNKNOWN
|
673
|
+
pub sig1: U16<LE>,
|
674
|
+
/// Must be 0xffff
|
675
|
+
pub sig2: U16<LE>,
|
676
|
+
/// >= 2 (implies the Flags field is present)
|
677
|
+
pub version: U16<LE>,
|
678
|
+
/// Actual machine - IMAGE_FILE_MACHINE_xxx
|
679
|
+
pub machine: U16<LE>,
|
680
|
+
pub time_date_stamp: U32<LE>,
|
681
|
+
/// Must be `ANON_OBJECT_HEADER_BIGOBJ_CLASS_ID`.
|
682
|
+
pub class_id: ClsId,
|
683
|
+
/// Size of data that follows the header
|
684
|
+
pub size_of_data: U32<LE>,
|
685
|
+
/// 0x1 -> contains metadata
|
686
|
+
pub flags: U32<LE>,
|
687
|
+
/// Size of CLR metadata
|
688
|
+
pub meta_data_size: U32<LE>,
|
689
|
+
/// Offset of CLR metadata
|
690
|
+
pub meta_data_offset: U32<LE>,
|
691
|
+
|
692
|
+
/* bigobj specifics */
|
693
|
+
/// extended from WORD
|
694
|
+
pub number_of_sections: U32<LE>,
|
695
|
+
pub pointer_to_symbol_table: U32<LE>,
|
696
|
+
pub number_of_symbols: U32<LE>,
|
697
|
+
}
|
698
|
+
|
699
|
+
pub const IMAGE_SIZEOF_SHORT_NAME: usize = 8;
|
700
|
+
|
701
|
+
//
|
702
|
+
// Section header format.
|
703
|
+
//
|
704
|
+
|
705
|
+
#[derive(Debug, Default, Clone, Copy)]
|
706
|
+
#[repr(C)]
|
707
|
+
pub struct ImageSectionHeader {
|
708
|
+
pub name: [u8; IMAGE_SIZEOF_SHORT_NAME],
|
709
|
+
pub virtual_size: U32<LE>,
|
710
|
+
pub virtual_address: U32<LE>,
|
711
|
+
pub size_of_raw_data: U32<LE>,
|
712
|
+
pub pointer_to_raw_data: U32<LE>,
|
713
|
+
pub pointer_to_relocations: U32<LE>,
|
714
|
+
pub pointer_to_linenumbers: U32<LE>,
|
715
|
+
pub number_of_relocations: U16<LE>,
|
716
|
+
pub number_of_linenumbers: U16<LE>,
|
717
|
+
pub characteristics: U32<LE>,
|
718
|
+
}
|
719
|
+
|
720
|
+
pub const IMAGE_SIZEOF_SECTION_HEADER: usize = 40;
|
721
|
+
|
722
|
+
// Values for `ImageSectionHeader::characteristics`.
|
723
|
+
|
724
|
+
// IMAGE_SCN_TYPE_REG 0x00000000 // Reserved.
|
725
|
+
// IMAGE_SCN_TYPE_DSECT 0x00000001 // Reserved.
|
726
|
+
// IMAGE_SCN_TYPE_NOLOAD 0x00000002 // Reserved.
|
727
|
+
// IMAGE_SCN_TYPE_GROUP 0x00000004 // Reserved.
|
728
|
+
/// Reserved.
|
729
|
+
pub const IMAGE_SCN_TYPE_NO_PAD: u32 = 0x0000_0008;
|
730
|
+
// IMAGE_SCN_TYPE_COPY 0x00000010 // Reserved.
|
731
|
+
|
732
|
+
/// Section contains code.
|
733
|
+
pub const IMAGE_SCN_CNT_CODE: u32 = 0x0000_0020;
|
734
|
+
/// Section contains initialized data.
|
735
|
+
pub const IMAGE_SCN_CNT_INITIALIZED_DATA: u32 = 0x0000_0040;
|
736
|
+
/// Section contains uninitialized data.
|
737
|
+
pub const IMAGE_SCN_CNT_UNINITIALIZED_DATA: u32 = 0x0000_0080;
|
738
|
+
|
739
|
+
/// Reserved.
|
740
|
+
pub const IMAGE_SCN_LNK_OTHER: u32 = 0x0000_0100;
|
741
|
+
/// Section contains comments or some other type of information.
|
742
|
+
pub const IMAGE_SCN_LNK_INFO: u32 = 0x0000_0200;
|
743
|
+
// IMAGE_SCN_TYPE_OVER 0x00000400 // Reserved.
|
744
|
+
/// Section contents will not become part of image.
|
745
|
+
pub const IMAGE_SCN_LNK_REMOVE: u32 = 0x0000_0800;
|
746
|
+
/// Section contents comdat.
|
747
|
+
pub const IMAGE_SCN_LNK_COMDAT: u32 = 0x0000_1000;
|
748
|
+
// 0x00002000 // Reserved.
|
749
|
+
// IMAGE_SCN_MEM_PROTECTED - Obsolete 0x00004000
|
750
|
+
/// Reset speculative exceptions handling bits in the TLB entries for this section.
|
751
|
+
pub const IMAGE_SCN_NO_DEFER_SPEC_EXC: u32 = 0x0000_4000;
|
752
|
+
/// Section content can be accessed relative to GP
|
753
|
+
pub const IMAGE_SCN_GPREL: u32 = 0x0000_8000;
|
754
|
+
pub const IMAGE_SCN_MEM_FARDATA: u32 = 0x0000_8000;
|
755
|
+
// IMAGE_SCN_MEM_SYSHEAP - Obsolete 0x00010000
|
756
|
+
pub const IMAGE_SCN_MEM_PURGEABLE: u32 = 0x0002_0000;
|
757
|
+
pub const IMAGE_SCN_MEM_16BIT: u32 = 0x0002_0000;
|
758
|
+
pub const IMAGE_SCN_MEM_LOCKED: u32 = 0x0004_0000;
|
759
|
+
pub const IMAGE_SCN_MEM_PRELOAD: u32 = 0x0008_0000;
|
760
|
+
|
761
|
+
pub const IMAGE_SCN_ALIGN_1BYTES: u32 = 0x0010_0000;
|
762
|
+
pub const IMAGE_SCN_ALIGN_2BYTES: u32 = 0x0020_0000;
|
763
|
+
pub const IMAGE_SCN_ALIGN_4BYTES: u32 = 0x0030_0000;
|
764
|
+
pub const IMAGE_SCN_ALIGN_8BYTES: u32 = 0x0040_0000;
|
765
|
+
/// Default alignment if no others are specified.
|
766
|
+
pub const IMAGE_SCN_ALIGN_16BYTES: u32 = 0x0050_0000;
|
767
|
+
pub const IMAGE_SCN_ALIGN_32BYTES: u32 = 0x0060_0000;
|
768
|
+
pub const IMAGE_SCN_ALIGN_64BYTES: u32 = 0x0070_0000;
|
769
|
+
pub const IMAGE_SCN_ALIGN_128BYTES: u32 = 0x0080_0000;
|
770
|
+
pub const IMAGE_SCN_ALIGN_256BYTES: u32 = 0x0090_0000;
|
771
|
+
pub const IMAGE_SCN_ALIGN_512BYTES: u32 = 0x00A0_0000;
|
772
|
+
pub const IMAGE_SCN_ALIGN_1024BYTES: u32 = 0x00B0_0000;
|
773
|
+
pub const IMAGE_SCN_ALIGN_2048BYTES: u32 = 0x00C0_0000;
|
774
|
+
pub const IMAGE_SCN_ALIGN_4096BYTES: u32 = 0x00D0_0000;
|
775
|
+
pub const IMAGE_SCN_ALIGN_8192BYTES: u32 = 0x00E0_0000;
|
776
|
+
// Unused 0x00F0_0000
|
777
|
+
pub const IMAGE_SCN_ALIGN_MASK: u32 = 0x00F0_0000;
|
778
|
+
|
779
|
+
/// Section contains extended relocations.
|
780
|
+
pub const IMAGE_SCN_LNK_NRELOC_OVFL: u32 = 0x0100_0000;
|
781
|
+
/// Section can be discarded.
|
782
|
+
pub const IMAGE_SCN_MEM_DISCARDABLE: u32 = 0x0200_0000;
|
783
|
+
/// Section is not cacheable.
|
784
|
+
pub const IMAGE_SCN_MEM_NOT_CACHED: u32 = 0x0400_0000;
|
785
|
+
/// Section is not pageable.
|
786
|
+
pub const IMAGE_SCN_MEM_NOT_PAGED: u32 = 0x0800_0000;
|
787
|
+
/// Section is shareable.
|
788
|
+
pub const IMAGE_SCN_MEM_SHARED: u32 = 0x1000_0000;
|
789
|
+
/// Section is executable.
|
790
|
+
pub const IMAGE_SCN_MEM_EXECUTE: u32 = 0x2000_0000;
|
791
|
+
/// Section is readable.
|
792
|
+
pub const IMAGE_SCN_MEM_READ: u32 = 0x4000_0000;
|
793
|
+
/// Section is writeable.
|
794
|
+
pub const IMAGE_SCN_MEM_WRITE: u32 = 0x8000_0000;
|
795
|
+
|
796
|
+
//
|
797
|
+
// TLS Characteristic Flags
|
798
|
+
//
|
799
|
+
/// Tls index is scaled
|
800
|
+
pub const IMAGE_SCN_SCALE_INDEX: u32 = 0x0000_0001;
|
801
|
+
|
802
|
+
//
|
803
|
+
// Symbol format.
|
804
|
+
//
|
805
|
+
|
806
|
+
// This struct has alignment 1.
|
807
|
+
#[derive(Debug, Clone, Copy)]
|
808
|
+
#[repr(C)]
|
809
|
+
pub struct ImageSymbol {
|
810
|
+
/// If first 4 bytes are 0, then second 4 bytes are offset into string table.
|
811
|
+
pub name: [u8; 8],
|
812
|
+
pub value: U32Bytes<LE>,
|
813
|
+
pub section_number: U16Bytes<LE>,
|
814
|
+
pub typ: U16Bytes<LE>,
|
815
|
+
pub storage_class: u8,
|
816
|
+
pub number_of_aux_symbols: u8,
|
817
|
+
}
|
818
|
+
|
819
|
+
pub const IMAGE_SIZEOF_SYMBOL: usize = 18;
|
820
|
+
|
821
|
+
#[derive(Debug, Clone, Copy)]
|
822
|
+
#[repr(C)]
|
823
|
+
pub struct ImageSymbolBytes(pub [u8; IMAGE_SIZEOF_SYMBOL]);
|
824
|
+
|
825
|
+
// This struct has alignment 1.
|
826
|
+
#[derive(Debug, Clone, Copy)]
|
827
|
+
#[repr(C)]
|
828
|
+
pub struct ImageSymbolEx {
|
829
|
+
/// If first 4 bytes are 0, then second 4 bytes are offset into string table.
|
830
|
+
pub name: [u8; 8],
|
831
|
+
pub value: U32Bytes<LE>,
|
832
|
+
pub section_number: I32Bytes<LE>,
|
833
|
+
pub typ: U16Bytes<LE>,
|
834
|
+
pub storage_class: u8,
|
835
|
+
pub number_of_aux_symbols: u8,
|
836
|
+
}
|
837
|
+
|
838
|
+
pub const IMAGE_SIZEOF_SYMBOL_EX: usize = 20;
|
839
|
+
|
840
|
+
#[derive(Debug, Clone, Copy)]
|
841
|
+
#[repr(C)]
|
842
|
+
pub struct ImageSymbolExBytes(pub [u8; IMAGE_SIZEOF_SYMBOL_EX]);
|
843
|
+
|
844
|
+
// Values for `ImageSymbol::section_number`.
|
845
|
+
//
|
846
|
+
// Symbols have a section number of the section in which they are
|
847
|
+
// defined. Otherwise, section numbers have the following meanings:
|
848
|
+
|
849
|
+
/// Symbol is undefined or is common.
|
850
|
+
pub const IMAGE_SYM_UNDEFINED: i32 = 0;
|
851
|
+
/// Symbol is an absolute value.
|
852
|
+
pub const IMAGE_SYM_ABSOLUTE: i32 = -1;
|
853
|
+
/// Symbol is a special debug item.
|
854
|
+
pub const IMAGE_SYM_DEBUG: i32 = -2;
|
855
|
+
/// Values 0xFF00-0xFFFF are special
|
856
|
+
pub const IMAGE_SYM_SECTION_MAX: u16 = 0xFEFF;
|
857
|
+
pub const IMAGE_SYM_SECTION_MAX_EX: u32 = 0x7fff_ffff;
|
858
|
+
|
859
|
+
// Values for `ImageSymbol::typ` (basic component).
|
860
|
+
|
861
|
+
/// no type.
|
862
|
+
pub const IMAGE_SYM_TYPE_NULL: u16 = 0x0000;
|
863
|
+
pub const IMAGE_SYM_TYPE_VOID: u16 = 0x0001;
|
864
|
+
/// type character.
|
865
|
+
pub const IMAGE_SYM_TYPE_CHAR: u16 = 0x0002;
|
866
|
+
/// type short integer.
|
867
|
+
pub const IMAGE_SYM_TYPE_SHORT: u16 = 0x0003;
|
868
|
+
pub const IMAGE_SYM_TYPE_INT: u16 = 0x0004;
|
869
|
+
pub const IMAGE_SYM_TYPE_LONG: u16 = 0x0005;
|
870
|
+
pub const IMAGE_SYM_TYPE_FLOAT: u16 = 0x0006;
|
871
|
+
pub const IMAGE_SYM_TYPE_DOUBLE: u16 = 0x0007;
|
872
|
+
pub const IMAGE_SYM_TYPE_STRUCT: u16 = 0x0008;
|
873
|
+
pub const IMAGE_SYM_TYPE_UNION: u16 = 0x0009;
|
874
|
+
/// enumeration.
|
875
|
+
pub const IMAGE_SYM_TYPE_ENUM: u16 = 0x000A;
|
876
|
+
/// member of enumeration.
|
877
|
+
pub const IMAGE_SYM_TYPE_MOE: u16 = 0x000B;
|
878
|
+
pub const IMAGE_SYM_TYPE_BYTE: u16 = 0x000C;
|
879
|
+
pub const IMAGE_SYM_TYPE_WORD: u16 = 0x000D;
|
880
|
+
pub const IMAGE_SYM_TYPE_UINT: u16 = 0x000E;
|
881
|
+
pub const IMAGE_SYM_TYPE_DWORD: u16 = 0x000F;
|
882
|
+
pub const IMAGE_SYM_TYPE_PCODE: u16 = 0x8000;
|
883
|
+
|
884
|
+
// Values for `ImageSymbol::typ` (derived component).
|
885
|
+
|
886
|
+
/// no derived type.
|
887
|
+
pub const IMAGE_SYM_DTYPE_NULL: u16 = 0;
|
888
|
+
/// pointer.
|
889
|
+
pub const IMAGE_SYM_DTYPE_POINTER: u16 = 1;
|
890
|
+
/// function.
|
891
|
+
pub const IMAGE_SYM_DTYPE_FUNCTION: u16 = 2;
|
892
|
+
/// array.
|
893
|
+
pub const IMAGE_SYM_DTYPE_ARRAY: u16 = 3;
|
894
|
+
|
895
|
+
// Values for `ImageSymbol::storage_class`.
|
896
|
+
pub const IMAGE_SYM_CLASS_END_OF_FUNCTION: u8 = 0xff;
|
897
|
+
pub const IMAGE_SYM_CLASS_NULL: u8 = 0x00;
|
898
|
+
pub const IMAGE_SYM_CLASS_AUTOMATIC: u8 = 0x01;
|
899
|
+
pub const IMAGE_SYM_CLASS_EXTERNAL: u8 = 0x02;
|
900
|
+
pub const IMAGE_SYM_CLASS_STATIC: u8 = 0x03;
|
901
|
+
pub const IMAGE_SYM_CLASS_REGISTER: u8 = 0x04;
|
902
|
+
pub const IMAGE_SYM_CLASS_EXTERNAL_DEF: u8 = 0x05;
|
903
|
+
pub const IMAGE_SYM_CLASS_LABEL: u8 = 0x06;
|
904
|
+
pub const IMAGE_SYM_CLASS_UNDEFINED_LABEL: u8 = 0x07;
|
905
|
+
pub const IMAGE_SYM_CLASS_MEMBER_OF_STRUCT: u8 = 0x08;
|
906
|
+
pub const IMAGE_SYM_CLASS_ARGUMENT: u8 = 0x09;
|
907
|
+
pub const IMAGE_SYM_CLASS_STRUCT_TAG: u8 = 0x0A;
|
908
|
+
pub const IMAGE_SYM_CLASS_MEMBER_OF_UNION: u8 = 0x0B;
|
909
|
+
pub const IMAGE_SYM_CLASS_UNION_TAG: u8 = 0x0C;
|
910
|
+
pub const IMAGE_SYM_CLASS_TYPE_DEFINITION: u8 = 0x0D;
|
911
|
+
pub const IMAGE_SYM_CLASS_UNDEFINED_STATIC: u8 = 0x0E;
|
912
|
+
pub const IMAGE_SYM_CLASS_ENUM_TAG: u8 = 0x0F;
|
913
|
+
pub const IMAGE_SYM_CLASS_MEMBER_OF_ENUM: u8 = 0x10;
|
914
|
+
pub const IMAGE_SYM_CLASS_REGISTER_PARAM: u8 = 0x11;
|
915
|
+
pub const IMAGE_SYM_CLASS_BIT_FIELD: u8 = 0x12;
|
916
|
+
|
917
|
+
pub const IMAGE_SYM_CLASS_FAR_EXTERNAL: u8 = 0x44;
|
918
|
+
|
919
|
+
pub const IMAGE_SYM_CLASS_BLOCK: u8 = 0x64;
|
920
|
+
pub const IMAGE_SYM_CLASS_FUNCTION: u8 = 0x65;
|
921
|
+
pub const IMAGE_SYM_CLASS_END_OF_STRUCT: u8 = 0x66;
|
922
|
+
pub const IMAGE_SYM_CLASS_FILE: u8 = 0x67;
|
923
|
+
// new
|
924
|
+
pub const IMAGE_SYM_CLASS_SECTION: u8 = 0x68;
|
925
|
+
pub const IMAGE_SYM_CLASS_WEAK_EXTERNAL: u8 = 0x69;
|
926
|
+
|
927
|
+
pub const IMAGE_SYM_CLASS_CLR_TOKEN: u8 = 0x6B;
|
928
|
+
|
929
|
+
// type packing constants
|
930
|
+
|
931
|
+
pub const N_BTMASK: u16 = 0x000F;
|
932
|
+
pub const N_TMASK: u16 = 0x0030;
|
933
|
+
pub const N_TMASK1: u16 = 0x00C0;
|
934
|
+
pub const N_TMASK2: u16 = 0x00F0;
|
935
|
+
pub const N_BTSHFT: usize = 4;
|
936
|
+
pub const N_TSHIFT: usize = 2;
|
937
|
+
|
938
|
+
pub const IMAGE_SYM_DTYPE_SHIFT: usize = N_BTSHFT;
|
939
|
+
|
940
|
+
//
|
941
|
+
// Auxiliary entry format.
|
942
|
+
//
|
943
|
+
|
944
|
+
// Used for both ImageSymbol and ImageSymbolEx (with padding).
|
945
|
+
// This struct has alignment 1.
|
946
|
+
#[derive(Debug, Clone, Copy)]
|
947
|
+
#[repr(C)]
|
948
|
+
pub struct ImageAuxSymbolTokenDef {
|
949
|
+
/// IMAGE_AUX_SYMBOL_TYPE
|
950
|
+
pub aux_type: u8,
|
951
|
+
/// Must be 0
|
952
|
+
pub reserved1: u8,
|
953
|
+
pub symbol_table_index: U32Bytes<LE>,
|
954
|
+
/// Must be 0
|
955
|
+
pub reserved2: [u8; 12],
|
956
|
+
}
|
957
|
+
|
958
|
+
pub const IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF: u16 = 1;
|
959
|
+
|
960
|
+
/// Auxiliary symbol format 1: function definitions.
|
961
|
+
// This struct has alignment 1.
|
962
|
+
#[derive(Debug, Clone, Copy)]
|
963
|
+
#[repr(C)]
|
964
|
+
pub struct ImageAuxSymbolFunction {
|
965
|
+
pub tag_index: U32Bytes<LE>,
|
966
|
+
pub total_size: U32Bytes<LE>,
|
967
|
+
pub pointer_to_linenumber: U32Bytes<LE>,
|
968
|
+
pub pointer_to_next_function: U32Bytes<LE>,
|
969
|
+
pub unused: [u8; 2],
|
970
|
+
}
|
971
|
+
|
972
|
+
/// Auxiliary symbol format 2: .bf and .ef symbols.
|
973
|
+
// This struct has alignment 1.
|
974
|
+
#[derive(Debug, Clone, Copy)]
|
975
|
+
#[repr(C)]
|
976
|
+
pub struct ImageAuxSymbolFunctionBeginEnd {
|
977
|
+
pub unused1: [u8; 4],
|
978
|
+
/// declaration line number
|
979
|
+
pub linenumber: U16Bytes<LE>,
|
980
|
+
pub unused2: [u8; 6],
|
981
|
+
pub pointer_to_next_function: U32Bytes<LE>,
|
982
|
+
pub unused3: [u8; 2],
|
983
|
+
}
|
984
|
+
|
985
|
+
/// Auxiliary symbol format 3: weak externals.
|
986
|
+
///
|
987
|
+
/// Used for both `ImageSymbol` and `ImageSymbolEx` (both with padding).
|
988
|
+
// This struct has alignment 1.
|
989
|
+
#[derive(Debug, Clone, Copy)]
|
990
|
+
#[repr(C)]
|
991
|
+
pub struct ImageAuxSymbolWeak {
|
992
|
+
/// the weak extern default symbol index
|
993
|
+
pub weak_default_sym_index: U32Bytes<LE>,
|
994
|
+
pub weak_search_type: U32Bytes<LE>,
|
995
|
+
}
|
996
|
+
|
997
|
+
/// Auxiliary symbol format 5: sections.
|
998
|
+
///
|
999
|
+
/// Used for both `ImageSymbol` and `ImageSymbolEx` (with padding).
|
1000
|
+
// This struct has alignment 1.
|
1001
|
+
#[derive(Debug, Clone, Copy)]
|
1002
|
+
#[repr(C)]
|
1003
|
+
pub struct ImageAuxSymbolSection {
|
1004
|
+
/// section length
|
1005
|
+
pub length: U32Bytes<LE>,
|
1006
|
+
/// number of relocation entries
|
1007
|
+
pub number_of_relocations: U16Bytes<LE>,
|
1008
|
+
/// number of line numbers
|
1009
|
+
pub number_of_linenumbers: U16Bytes<LE>,
|
1010
|
+
/// checksum for communal
|
1011
|
+
pub check_sum: U32Bytes<LE>,
|
1012
|
+
/// section number to associate with
|
1013
|
+
pub number: U16Bytes<LE>,
|
1014
|
+
/// communal selection type
|
1015
|
+
pub selection: u8,
|
1016
|
+
pub reserved: u8,
|
1017
|
+
/// high bits of the section number
|
1018
|
+
pub high_number: U16Bytes<LE>,
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
// Used for both ImageSymbol and ImageSymbolEx (both with padding).
|
1022
|
+
// This struct has alignment 1.
|
1023
|
+
#[derive(Debug, Clone, Copy)]
|
1024
|
+
#[repr(C)]
|
1025
|
+
pub struct ImageAuxSymbolCrc {
|
1026
|
+
pub crc: U32Bytes<LE>,
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
//
|
1030
|
+
// Communal selection types.
|
1031
|
+
//
|
1032
|
+
|
1033
|
+
pub const IMAGE_COMDAT_SELECT_NODUPLICATES: u8 = 1;
|
1034
|
+
pub const IMAGE_COMDAT_SELECT_ANY: u8 = 2;
|
1035
|
+
pub const IMAGE_COMDAT_SELECT_SAME_SIZE: u8 = 3;
|
1036
|
+
pub const IMAGE_COMDAT_SELECT_EXACT_MATCH: u8 = 4;
|
1037
|
+
pub const IMAGE_COMDAT_SELECT_ASSOCIATIVE: u8 = 5;
|
1038
|
+
pub const IMAGE_COMDAT_SELECT_LARGEST: u8 = 6;
|
1039
|
+
pub const IMAGE_COMDAT_SELECT_NEWEST: u8 = 7;
|
1040
|
+
|
1041
|
+
pub const IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY: u16 = 1;
|
1042
|
+
pub const IMAGE_WEAK_EXTERN_SEARCH_LIBRARY: u16 = 2;
|
1043
|
+
pub const IMAGE_WEAK_EXTERN_SEARCH_ALIAS: u16 = 3;
|
1044
|
+
pub const IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY: u16 = 4;
|
1045
|
+
|
1046
|
+
//
|
1047
|
+
// Relocation format.
|
1048
|
+
//
|
1049
|
+
|
1050
|
+
// This struct has alignment 1.
|
1051
|
+
#[derive(Debug, Clone, Copy)]
|
1052
|
+
#[repr(C)]
|
1053
|
+
pub struct ImageRelocation {
|
1054
|
+
/// Also `RelocCount` when IMAGE_SCN_LNK_NRELOC_OVFL is set
|
1055
|
+
pub virtual_address: U32Bytes<LE>,
|
1056
|
+
pub symbol_table_index: U32Bytes<LE>,
|
1057
|
+
pub typ: U16Bytes<LE>,
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
//
|
1061
|
+
// I386 relocation types.
|
1062
|
+
//
|
1063
|
+
/// Reference is absolute, no relocation is necessary
|
1064
|
+
pub const IMAGE_REL_I386_ABSOLUTE: u16 = 0x0000;
|
1065
|
+
/// Direct 16-bit reference to the symbols virtual address
|
1066
|
+
pub const IMAGE_REL_I386_DIR16: u16 = 0x0001;
|
1067
|
+
/// PC-relative 16-bit reference to the symbols virtual address
|
1068
|
+
pub const IMAGE_REL_I386_REL16: u16 = 0x0002;
|
1069
|
+
/// Direct 32-bit reference to the symbols virtual address
|
1070
|
+
pub const IMAGE_REL_I386_DIR32: u16 = 0x0006;
|
1071
|
+
/// Direct 32-bit reference to the symbols virtual address, base not included
|
1072
|
+
pub const IMAGE_REL_I386_DIR32NB: u16 = 0x0007;
|
1073
|
+
/// Direct 16-bit reference to the segment-selector bits of a 32-bit virtual address
|
1074
|
+
pub const IMAGE_REL_I386_SEG12: u16 = 0x0009;
|
1075
|
+
pub const IMAGE_REL_I386_SECTION: u16 = 0x000A;
|
1076
|
+
pub const IMAGE_REL_I386_SECREL: u16 = 0x000B;
|
1077
|
+
/// clr token
|
1078
|
+
pub const IMAGE_REL_I386_TOKEN: u16 = 0x000C;
|
1079
|
+
/// 7 bit offset from base of section containing target
|
1080
|
+
pub const IMAGE_REL_I386_SECREL7: u16 = 0x000D;
|
1081
|
+
/// PC-relative 32-bit reference to the symbols virtual address
|
1082
|
+
pub const IMAGE_REL_I386_REL32: u16 = 0x0014;
|
1083
|
+
|
1084
|
+
//
|
1085
|
+
// MIPS relocation types.
|
1086
|
+
//
|
1087
|
+
/// Reference is absolute, no relocation is necessary
|
1088
|
+
pub const IMAGE_REL_MIPS_ABSOLUTE: u16 = 0x0000;
|
1089
|
+
pub const IMAGE_REL_MIPS_REFHALF: u16 = 0x0001;
|
1090
|
+
pub const IMAGE_REL_MIPS_REFWORD: u16 = 0x0002;
|
1091
|
+
pub const IMAGE_REL_MIPS_JMPADDR: u16 = 0x0003;
|
1092
|
+
pub const IMAGE_REL_MIPS_REFHI: u16 = 0x0004;
|
1093
|
+
pub const IMAGE_REL_MIPS_REFLO: u16 = 0x0005;
|
1094
|
+
pub const IMAGE_REL_MIPS_GPREL: u16 = 0x0006;
|
1095
|
+
pub const IMAGE_REL_MIPS_LITERAL: u16 = 0x0007;
|
1096
|
+
pub const IMAGE_REL_MIPS_SECTION: u16 = 0x000A;
|
1097
|
+
pub const IMAGE_REL_MIPS_SECREL: u16 = 0x000B;
|
1098
|
+
/// Low 16-bit section relative reference (used for >32k TLS)
|
1099
|
+
pub const IMAGE_REL_MIPS_SECRELLO: u16 = 0x000C;
|
1100
|
+
/// High 16-bit section relative reference (used for >32k TLS)
|
1101
|
+
pub const IMAGE_REL_MIPS_SECRELHI: u16 = 0x000D;
|
1102
|
+
/// clr token
|
1103
|
+
pub const IMAGE_REL_MIPS_TOKEN: u16 = 0x000E;
|
1104
|
+
pub const IMAGE_REL_MIPS_JMPADDR16: u16 = 0x0010;
|
1105
|
+
pub const IMAGE_REL_MIPS_REFWORDNB: u16 = 0x0022;
|
1106
|
+
pub const IMAGE_REL_MIPS_PAIR: u16 = 0x0025;
|
1107
|
+
|
1108
|
+
//
|
1109
|
+
// Alpha Relocation types.
|
1110
|
+
//
|
1111
|
+
pub const IMAGE_REL_ALPHA_ABSOLUTE: u16 = 0x0000;
|
1112
|
+
pub const IMAGE_REL_ALPHA_REFLONG: u16 = 0x0001;
|
1113
|
+
pub const IMAGE_REL_ALPHA_REFQUAD: u16 = 0x0002;
|
1114
|
+
pub const IMAGE_REL_ALPHA_GPREL32: u16 = 0x0003;
|
1115
|
+
pub const IMAGE_REL_ALPHA_LITERAL: u16 = 0x0004;
|
1116
|
+
pub const IMAGE_REL_ALPHA_LITUSE: u16 = 0x0005;
|
1117
|
+
pub const IMAGE_REL_ALPHA_GPDISP: u16 = 0x0006;
|
1118
|
+
pub const IMAGE_REL_ALPHA_BRADDR: u16 = 0x0007;
|
1119
|
+
pub const IMAGE_REL_ALPHA_HINT: u16 = 0x0008;
|
1120
|
+
pub const IMAGE_REL_ALPHA_INLINE_REFLONG: u16 = 0x0009;
|
1121
|
+
pub const IMAGE_REL_ALPHA_REFHI: u16 = 0x000A;
|
1122
|
+
pub const IMAGE_REL_ALPHA_REFLO: u16 = 0x000B;
|
1123
|
+
pub const IMAGE_REL_ALPHA_PAIR: u16 = 0x000C;
|
1124
|
+
pub const IMAGE_REL_ALPHA_MATCH: u16 = 0x000D;
|
1125
|
+
pub const IMAGE_REL_ALPHA_SECTION: u16 = 0x000E;
|
1126
|
+
pub const IMAGE_REL_ALPHA_SECREL: u16 = 0x000F;
|
1127
|
+
pub const IMAGE_REL_ALPHA_REFLONGNB: u16 = 0x0010;
|
1128
|
+
/// Low 16-bit section relative reference
|
1129
|
+
pub const IMAGE_REL_ALPHA_SECRELLO: u16 = 0x0011;
|
1130
|
+
/// High 16-bit section relative reference
|
1131
|
+
pub const IMAGE_REL_ALPHA_SECRELHI: u16 = 0x0012;
|
1132
|
+
/// High 16 bits of 48 bit reference
|
1133
|
+
pub const IMAGE_REL_ALPHA_REFQ3: u16 = 0x0013;
|
1134
|
+
/// Middle 16 bits of 48 bit reference
|
1135
|
+
pub const IMAGE_REL_ALPHA_REFQ2: u16 = 0x0014;
|
1136
|
+
/// Low 16 bits of 48 bit reference
|
1137
|
+
pub const IMAGE_REL_ALPHA_REFQ1: u16 = 0x0015;
|
1138
|
+
/// Low 16-bit GP relative reference
|
1139
|
+
pub const IMAGE_REL_ALPHA_GPRELLO: u16 = 0x0016;
|
1140
|
+
/// High 16-bit GP relative reference
|
1141
|
+
pub const IMAGE_REL_ALPHA_GPRELHI: u16 = 0x0017;
|
1142
|
+
|
1143
|
+
//
|
1144
|
+
// IBM PowerPC relocation types.
|
1145
|
+
//
|
1146
|
+
/// NOP
|
1147
|
+
pub const IMAGE_REL_PPC_ABSOLUTE: u16 = 0x0000;
|
1148
|
+
/// 64-bit address
|
1149
|
+
pub const IMAGE_REL_PPC_ADDR64: u16 = 0x0001;
|
1150
|
+
/// 32-bit address
|
1151
|
+
pub const IMAGE_REL_PPC_ADDR32: u16 = 0x0002;
|
1152
|
+
/// 26-bit address, shifted left 2 (branch absolute)
|
1153
|
+
pub const IMAGE_REL_PPC_ADDR24: u16 = 0x0003;
|
1154
|
+
/// 16-bit address
|
1155
|
+
pub const IMAGE_REL_PPC_ADDR16: u16 = 0x0004;
|
1156
|
+
/// 16-bit address, shifted left 2 (load doubleword)
|
1157
|
+
pub const IMAGE_REL_PPC_ADDR14: u16 = 0x0005;
|
1158
|
+
/// 26-bit PC-relative offset, shifted left 2 (branch relative)
|
1159
|
+
pub const IMAGE_REL_PPC_REL24: u16 = 0x0006;
|
1160
|
+
/// 16-bit PC-relative offset, shifted left 2 (br cond relative)
|
1161
|
+
pub const IMAGE_REL_PPC_REL14: u16 = 0x0007;
|
1162
|
+
/// 16-bit offset from TOC base
|
1163
|
+
pub const IMAGE_REL_PPC_TOCREL16: u16 = 0x0008;
|
1164
|
+
/// 16-bit offset from TOC base, shifted left 2 (load doubleword)
|
1165
|
+
pub const IMAGE_REL_PPC_TOCREL14: u16 = 0x0009;
|
1166
|
+
|
1167
|
+
/// 32-bit addr w/o image base
|
1168
|
+
pub const IMAGE_REL_PPC_ADDR32NB: u16 = 0x000A;
|
1169
|
+
/// va of containing section (as in an image sectionhdr)
|
1170
|
+
pub const IMAGE_REL_PPC_SECREL: u16 = 0x000B;
|
1171
|
+
/// sectionheader number
|
1172
|
+
pub const IMAGE_REL_PPC_SECTION: u16 = 0x000C;
|
1173
|
+
/// substitute TOC restore instruction iff symbol is glue code
|
1174
|
+
pub const IMAGE_REL_PPC_IFGLUE: u16 = 0x000D;
|
1175
|
+
/// symbol is glue code; virtual address is TOC restore instruction
|
1176
|
+
pub const IMAGE_REL_PPC_IMGLUE: u16 = 0x000E;
|
1177
|
+
/// va of containing section (limited to 16 bits)
|
1178
|
+
pub const IMAGE_REL_PPC_SECREL16: u16 = 0x000F;
|
1179
|
+
pub const IMAGE_REL_PPC_REFHI: u16 = 0x0010;
|
1180
|
+
pub const IMAGE_REL_PPC_REFLO: u16 = 0x0011;
|
1181
|
+
pub const IMAGE_REL_PPC_PAIR: u16 = 0x0012;
|
1182
|
+
/// Low 16-bit section relative reference (used for >32k TLS)
|
1183
|
+
pub const IMAGE_REL_PPC_SECRELLO: u16 = 0x0013;
|
1184
|
+
/// High 16-bit section relative reference (used for >32k TLS)
|
1185
|
+
pub const IMAGE_REL_PPC_SECRELHI: u16 = 0x0014;
|
1186
|
+
pub const IMAGE_REL_PPC_GPREL: u16 = 0x0015;
|
1187
|
+
/// clr token
|
1188
|
+
pub const IMAGE_REL_PPC_TOKEN: u16 = 0x0016;
|
1189
|
+
|
1190
|
+
/// mask to isolate above values in IMAGE_RELOCATION.Type
|
1191
|
+
pub const IMAGE_REL_PPC_TYPEMASK: u16 = 0x00FF;
|
1192
|
+
|
1193
|
+
// Flag bits in `ImageRelocation::typ`.
|
1194
|
+
|
1195
|
+
/// subtract reloc value rather than adding it
|
1196
|
+
pub const IMAGE_REL_PPC_NEG: u16 = 0x0100;
|
1197
|
+
/// fix branch prediction bit to predict branch taken
|
1198
|
+
pub const IMAGE_REL_PPC_BRTAKEN: u16 = 0x0200;
|
1199
|
+
/// fix branch prediction bit to predict branch not taken
|
1200
|
+
pub const IMAGE_REL_PPC_BRNTAKEN: u16 = 0x0400;
|
1201
|
+
/// toc slot defined in file (or, data in toc)
|
1202
|
+
pub const IMAGE_REL_PPC_TOCDEFN: u16 = 0x0800;
|
1203
|
+
|
1204
|
+
//
|
1205
|
+
// Hitachi SH3 relocation types.
|
1206
|
+
//
|
1207
|
+
/// No relocation
|
1208
|
+
pub const IMAGE_REL_SH3_ABSOLUTE: u16 = 0x0000;
|
1209
|
+
/// 16 bit direct
|
1210
|
+
pub const IMAGE_REL_SH3_DIRECT16: u16 = 0x0001;
|
1211
|
+
/// 32 bit direct
|
1212
|
+
pub const IMAGE_REL_SH3_DIRECT32: u16 = 0x0002;
|
1213
|
+
/// 8 bit direct, -128..255
|
1214
|
+
pub const IMAGE_REL_SH3_DIRECT8: u16 = 0x0003;
|
1215
|
+
/// 8 bit direct .W (0 ext.)
|
1216
|
+
pub const IMAGE_REL_SH3_DIRECT8_WORD: u16 = 0x0004;
|
1217
|
+
/// 8 bit direct .L (0 ext.)
|
1218
|
+
pub const IMAGE_REL_SH3_DIRECT8_LONG: u16 = 0x0005;
|
1219
|
+
/// 4 bit direct (0 ext.)
|
1220
|
+
pub const IMAGE_REL_SH3_DIRECT4: u16 = 0x0006;
|
1221
|
+
/// 4 bit direct .W (0 ext.)
|
1222
|
+
pub const IMAGE_REL_SH3_DIRECT4_WORD: u16 = 0x0007;
|
1223
|
+
/// 4 bit direct .L (0 ext.)
|
1224
|
+
pub const IMAGE_REL_SH3_DIRECT4_LONG: u16 = 0x0008;
|
1225
|
+
/// 8 bit PC relative .W
|
1226
|
+
pub const IMAGE_REL_SH3_PCREL8_WORD: u16 = 0x0009;
|
1227
|
+
/// 8 bit PC relative .L
|
1228
|
+
pub const IMAGE_REL_SH3_PCREL8_LONG: u16 = 0x000A;
|
1229
|
+
/// 12 LSB PC relative .W
|
1230
|
+
pub const IMAGE_REL_SH3_PCREL12_WORD: u16 = 0x000B;
|
1231
|
+
/// Start of EXE section
|
1232
|
+
pub const IMAGE_REL_SH3_STARTOF_SECTION: u16 = 0x000C;
|
1233
|
+
/// Size of EXE section
|
1234
|
+
pub const IMAGE_REL_SH3_SIZEOF_SECTION: u16 = 0x000D;
|
1235
|
+
/// Section table index
|
1236
|
+
pub const IMAGE_REL_SH3_SECTION: u16 = 0x000E;
|
1237
|
+
/// Offset within section
|
1238
|
+
pub const IMAGE_REL_SH3_SECREL: u16 = 0x000F;
|
1239
|
+
/// 32 bit direct not based
|
1240
|
+
pub const IMAGE_REL_SH3_DIRECT32_NB: u16 = 0x0010;
|
1241
|
+
/// GP-relative addressing
|
1242
|
+
pub const IMAGE_REL_SH3_GPREL4_LONG: u16 = 0x0011;
|
1243
|
+
/// clr token
|
1244
|
+
pub const IMAGE_REL_SH3_TOKEN: u16 = 0x0012;
|
1245
|
+
/// Offset from current instruction in longwords
|
1246
|
+
/// if not NOMODE, insert the inverse of the low bit at bit 32 to select PTA/PTB
|
1247
|
+
pub const IMAGE_REL_SHM_PCRELPT: u16 = 0x0013;
|
1248
|
+
/// Low bits of 32-bit address
|
1249
|
+
pub const IMAGE_REL_SHM_REFLO: u16 = 0x0014;
|
1250
|
+
/// High bits of 32-bit address
|
1251
|
+
pub const IMAGE_REL_SHM_REFHALF: u16 = 0x0015;
|
1252
|
+
/// Low bits of relative reference
|
1253
|
+
pub const IMAGE_REL_SHM_RELLO: u16 = 0x0016;
|
1254
|
+
/// High bits of relative reference
|
1255
|
+
pub const IMAGE_REL_SHM_RELHALF: u16 = 0x0017;
|
1256
|
+
/// offset operand for relocation
|
1257
|
+
pub const IMAGE_REL_SHM_PAIR: u16 = 0x0018;
|
1258
|
+
|
1259
|
+
/// relocation ignores section mode
|
1260
|
+
pub const IMAGE_REL_SH_NOMODE: u16 = 0x8000;
|
1261
|
+
|
1262
|
+
/// No relocation required
|
1263
|
+
pub const IMAGE_REL_ARM_ABSOLUTE: u16 = 0x0000;
|
1264
|
+
/// 32 bit address
|
1265
|
+
pub const IMAGE_REL_ARM_ADDR32: u16 = 0x0001;
|
1266
|
+
/// 32 bit address w/o image base
|
1267
|
+
pub const IMAGE_REL_ARM_ADDR32NB: u16 = 0x0002;
|
1268
|
+
/// 24 bit offset << 2 & sign ext.
|
1269
|
+
pub const IMAGE_REL_ARM_BRANCH24: u16 = 0x0003;
|
1270
|
+
/// Thumb: 2 11 bit offsets
|
1271
|
+
pub const IMAGE_REL_ARM_BRANCH11: u16 = 0x0004;
|
1272
|
+
/// clr token
|
1273
|
+
pub const IMAGE_REL_ARM_TOKEN: u16 = 0x0005;
|
1274
|
+
/// GP-relative addressing (ARM)
|
1275
|
+
pub const IMAGE_REL_ARM_GPREL12: u16 = 0x0006;
|
1276
|
+
/// GP-relative addressing (Thumb)
|
1277
|
+
pub const IMAGE_REL_ARM_GPREL7: u16 = 0x0007;
|
1278
|
+
pub const IMAGE_REL_ARM_BLX24: u16 = 0x0008;
|
1279
|
+
pub const IMAGE_REL_ARM_BLX11: u16 = 0x0009;
|
1280
|
+
/// 32-bit relative address from byte following reloc
|
1281
|
+
pub const IMAGE_REL_ARM_REL32: u16 = 0x000A;
|
1282
|
+
/// Section table index
|
1283
|
+
pub const IMAGE_REL_ARM_SECTION: u16 = 0x000E;
|
1284
|
+
/// Offset within section
|
1285
|
+
pub const IMAGE_REL_ARM_SECREL: u16 = 0x000F;
|
1286
|
+
/// ARM: MOVW/MOVT
|
1287
|
+
pub const IMAGE_REL_ARM_MOV32A: u16 = 0x0010;
|
1288
|
+
/// ARM: MOVW/MOVT (deprecated)
|
1289
|
+
pub const IMAGE_REL_ARM_MOV32: u16 = 0x0010;
|
1290
|
+
/// Thumb: MOVW/MOVT
|
1291
|
+
pub const IMAGE_REL_ARM_MOV32T: u16 = 0x0011;
|
1292
|
+
/// Thumb: MOVW/MOVT (deprecated)
|
1293
|
+
pub const IMAGE_REL_THUMB_MOV32: u16 = 0x0011;
|
1294
|
+
/// Thumb: 32-bit conditional B
|
1295
|
+
pub const IMAGE_REL_ARM_BRANCH20T: u16 = 0x0012;
|
1296
|
+
/// Thumb: 32-bit conditional B (deprecated)
|
1297
|
+
pub const IMAGE_REL_THUMB_BRANCH20: u16 = 0x0012;
|
1298
|
+
/// Thumb: 32-bit B or BL
|
1299
|
+
pub const IMAGE_REL_ARM_BRANCH24T: u16 = 0x0014;
|
1300
|
+
/// Thumb: 32-bit B or BL (deprecated)
|
1301
|
+
pub const IMAGE_REL_THUMB_BRANCH24: u16 = 0x0014;
|
1302
|
+
/// Thumb: BLX immediate
|
1303
|
+
pub const IMAGE_REL_ARM_BLX23T: u16 = 0x0015;
|
1304
|
+
/// Thumb: BLX immediate (deprecated)
|
1305
|
+
pub const IMAGE_REL_THUMB_BLX23: u16 = 0x0015;
|
1306
|
+
|
1307
|
+
pub const IMAGE_REL_AM_ABSOLUTE: u16 = 0x0000;
|
1308
|
+
pub const IMAGE_REL_AM_ADDR32: u16 = 0x0001;
|
1309
|
+
pub const IMAGE_REL_AM_ADDR32NB: u16 = 0x0002;
|
1310
|
+
pub const IMAGE_REL_AM_CALL32: u16 = 0x0003;
|
1311
|
+
pub const IMAGE_REL_AM_FUNCINFO: u16 = 0x0004;
|
1312
|
+
pub const IMAGE_REL_AM_REL32_1: u16 = 0x0005;
|
1313
|
+
pub const IMAGE_REL_AM_REL32_2: u16 = 0x0006;
|
1314
|
+
pub const IMAGE_REL_AM_SECREL: u16 = 0x0007;
|
1315
|
+
pub const IMAGE_REL_AM_SECTION: u16 = 0x0008;
|
1316
|
+
pub const IMAGE_REL_AM_TOKEN: u16 = 0x0009;
|
1317
|
+
|
1318
|
+
//
|
1319
|
+
// ARM64 relocations types.
|
1320
|
+
//
|
1321
|
+
|
1322
|
+
/// No relocation required
|
1323
|
+
pub const IMAGE_REL_ARM64_ABSOLUTE: u16 = 0x0000;
|
1324
|
+
/// 32 bit address. Review! do we need it?
|
1325
|
+
pub const IMAGE_REL_ARM64_ADDR32: u16 = 0x0001;
|
1326
|
+
/// 32 bit address w/o image base (RVA: for Data/PData/XData)
|
1327
|
+
pub const IMAGE_REL_ARM64_ADDR32NB: u16 = 0x0002;
|
1328
|
+
/// 26 bit offset << 2 & sign ext. for B & BL
|
1329
|
+
pub const IMAGE_REL_ARM64_BRANCH26: u16 = 0x0003;
|
1330
|
+
/// ADRP
|
1331
|
+
pub const IMAGE_REL_ARM64_PAGEBASE_REL21: u16 = 0x0004;
|
1332
|
+
/// ADR
|
1333
|
+
pub const IMAGE_REL_ARM64_REL21: u16 = 0x0005;
|
1334
|
+
/// ADD/ADDS (immediate) with zero shift, for page offset
|
1335
|
+
pub const IMAGE_REL_ARM64_PAGEOFFSET_12A: u16 = 0x0006;
|
1336
|
+
/// LDR (indexed, unsigned immediate), for page offset
|
1337
|
+
pub const IMAGE_REL_ARM64_PAGEOFFSET_12L: u16 = 0x0007;
|
1338
|
+
/// Offset within section
|
1339
|
+
pub const IMAGE_REL_ARM64_SECREL: u16 = 0x0008;
|
1340
|
+
/// ADD/ADDS (immediate) with zero shift, for bit 0:11 of section offset
|
1341
|
+
pub const IMAGE_REL_ARM64_SECREL_LOW12A: u16 = 0x0009;
|
1342
|
+
/// ADD/ADDS (immediate) with zero shift, for bit 12:23 of section offset
|
1343
|
+
pub const IMAGE_REL_ARM64_SECREL_HIGH12A: u16 = 0x000A;
|
1344
|
+
/// LDR (indexed, unsigned immediate), for bit 0:11 of section offset
|
1345
|
+
pub const IMAGE_REL_ARM64_SECREL_LOW12L: u16 = 0x000B;
|
1346
|
+
pub const IMAGE_REL_ARM64_TOKEN: u16 = 0x000C;
|
1347
|
+
/// Section table index
|
1348
|
+
pub const IMAGE_REL_ARM64_SECTION: u16 = 0x000D;
|
1349
|
+
/// 64 bit address
|
1350
|
+
pub const IMAGE_REL_ARM64_ADDR64: u16 = 0x000E;
|
1351
|
+
/// 19 bit offset << 2 & sign ext. for conditional B
|
1352
|
+
pub const IMAGE_REL_ARM64_BRANCH19: u16 = 0x000F;
|
1353
|
+
/// TBZ/TBNZ
|
1354
|
+
pub const IMAGE_REL_ARM64_BRANCH14: u16 = 0x0010;
|
1355
|
+
/// 32-bit relative address from byte following reloc
|
1356
|
+
pub const IMAGE_REL_ARM64_REL32: u16 = 0x0011;
|
1357
|
+
|
1358
|
+
//
|
1359
|
+
// x64 relocations
|
1360
|
+
//
|
1361
|
+
/// Reference is absolute, no relocation is necessary
|
1362
|
+
pub const IMAGE_REL_AMD64_ABSOLUTE: u16 = 0x0000;
|
1363
|
+
/// 64-bit address (VA).
|
1364
|
+
pub const IMAGE_REL_AMD64_ADDR64: u16 = 0x0001;
|
1365
|
+
/// 32-bit address (VA).
|
1366
|
+
pub const IMAGE_REL_AMD64_ADDR32: u16 = 0x0002;
|
1367
|
+
/// 32-bit address w/o image base (RVA).
|
1368
|
+
pub const IMAGE_REL_AMD64_ADDR32NB: u16 = 0x0003;
|
1369
|
+
/// 32-bit relative address from byte following reloc
|
1370
|
+
pub const IMAGE_REL_AMD64_REL32: u16 = 0x0004;
|
1371
|
+
/// 32-bit relative address from byte distance 1 from reloc
|
1372
|
+
pub const IMAGE_REL_AMD64_REL32_1: u16 = 0x0005;
|
1373
|
+
/// 32-bit relative address from byte distance 2 from reloc
|
1374
|
+
pub const IMAGE_REL_AMD64_REL32_2: u16 = 0x0006;
|
1375
|
+
/// 32-bit relative address from byte distance 3 from reloc
|
1376
|
+
pub const IMAGE_REL_AMD64_REL32_3: u16 = 0x0007;
|
1377
|
+
/// 32-bit relative address from byte distance 4 from reloc
|
1378
|
+
pub const IMAGE_REL_AMD64_REL32_4: u16 = 0x0008;
|
1379
|
+
/// 32-bit relative address from byte distance 5 from reloc
|
1380
|
+
pub const IMAGE_REL_AMD64_REL32_5: u16 = 0x0009;
|
1381
|
+
/// Section index
|
1382
|
+
pub const IMAGE_REL_AMD64_SECTION: u16 = 0x000A;
|
1383
|
+
/// 32 bit offset from base of section containing target
|
1384
|
+
pub const IMAGE_REL_AMD64_SECREL: u16 = 0x000B;
|
1385
|
+
/// 7 bit unsigned offset from base of section containing target
|
1386
|
+
pub const IMAGE_REL_AMD64_SECREL7: u16 = 0x000C;
|
1387
|
+
/// 32 bit metadata token
|
1388
|
+
pub const IMAGE_REL_AMD64_TOKEN: u16 = 0x000D;
|
1389
|
+
/// 32 bit signed span-dependent value emitted into object
|
1390
|
+
pub const IMAGE_REL_AMD64_SREL32: u16 = 0x000E;
|
1391
|
+
pub const IMAGE_REL_AMD64_PAIR: u16 = 0x000F;
|
1392
|
+
/// 32 bit signed span-dependent value applied at link time
|
1393
|
+
pub const IMAGE_REL_AMD64_SSPAN32: u16 = 0x0010;
|
1394
|
+
pub const IMAGE_REL_AMD64_EHANDLER: u16 = 0x0011;
|
1395
|
+
/// Indirect branch to an import
|
1396
|
+
pub const IMAGE_REL_AMD64_IMPORT_BR: u16 = 0x0012;
|
1397
|
+
/// Indirect call to an import
|
1398
|
+
pub const IMAGE_REL_AMD64_IMPORT_CALL: u16 = 0x0013;
|
1399
|
+
/// Indirect branch to a CFG check
|
1400
|
+
pub const IMAGE_REL_AMD64_CFG_BR: u16 = 0x0014;
|
1401
|
+
/// Indirect branch to a CFG check, with REX.W prefix
|
1402
|
+
pub const IMAGE_REL_AMD64_CFG_BR_REX: u16 = 0x0015;
|
1403
|
+
/// Indirect call to a CFG check
|
1404
|
+
pub const IMAGE_REL_AMD64_CFG_CALL: u16 = 0x0016;
|
1405
|
+
/// Indirect branch to a target in RAX (no CFG)
|
1406
|
+
pub const IMAGE_REL_AMD64_INDIR_BR: u16 = 0x0017;
|
1407
|
+
/// Indirect branch to a target in RAX, with REX.W prefix (no CFG)
|
1408
|
+
pub const IMAGE_REL_AMD64_INDIR_BR_REX: u16 = 0x0018;
|
1409
|
+
/// Indirect call to a target in RAX (no CFG)
|
1410
|
+
pub const IMAGE_REL_AMD64_INDIR_CALL: u16 = 0x0019;
|
1411
|
+
/// Indirect branch for a switch table using Reg 0 (RAX)
|
1412
|
+
pub const IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST: u16 = 0x0020;
|
1413
|
+
/// Indirect branch for a switch table using Reg 15 (R15)
|
1414
|
+
pub const IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST: u16 = 0x002F;
|
1415
|
+
|
1416
|
+
//
|
1417
|
+
// IA64 relocation types.
|
1418
|
+
//
|
1419
|
+
pub const IMAGE_REL_IA64_ABSOLUTE: u16 = 0x0000;
|
1420
|
+
pub const IMAGE_REL_IA64_IMM14: u16 = 0x0001;
|
1421
|
+
pub const IMAGE_REL_IA64_IMM22: u16 = 0x0002;
|
1422
|
+
pub const IMAGE_REL_IA64_IMM64: u16 = 0x0003;
|
1423
|
+
pub const IMAGE_REL_IA64_DIR32: u16 = 0x0004;
|
1424
|
+
pub const IMAGE_REL_IA64_DIR64: u16 = 0x0005;
|
1425
|
+
pub const IMAGE_REL_IA64_PCREL21B: u16 = 0x0006;
|
1426
|
+
pub const IMAGE_REL_IA64_PCREL21M: u16 = 0x0007;
|
1427
|
+
pub const IMAGE_REL_IA64_PCREL21F: u16 = 0x0008;
|
1428
|
+
pub const IMAGE_REL_IA64_GPREL22: u16 = 0x0009;
|
1429
|
+
pub const IMAGE_REL_IA64_LTOFF22: u16 = 0x000A;
|
1430
|
+
pub const IMAGE_REL_IA64_SECTION: u16 = 0x000B;
|
1431
|
+
pub const IMAGE_REL_IA64_SECREL22: u16 = 0x000C;
|
1432
|
+
pub const IMAGE_REL_IA64_SECREL64I: u16 = 0x000D;
|
1433
|
+
pub const IMAGE_REL_IA64_SECREL32: u16 = 0x000E;
|
1434
|
+
//
|
1435
|
+
pub const IMAGE_REL_IA64_DIR32NB: u16 = 0x0010;
|
1436
|
+
pub const IMAGE_REL_IA64_SREL14: u16 = 0x0011;
|
1437
|
+
pub const IMAGE_REL_IA64_SREL22: u16 = 0x0012;
|
1438
|
+
pub const IMAGE_REL_IA64_SREL32: u16 = 0x0013;
|
1439
|
+
pub const IMAGE_REL_IA64_UREL32: u16 = 0x0014;
|
1440
|
+
/// This is always a BRL and never converted
|
1441
|
+
pub const IMAGE_REL_IA64_PCREL60X: u16 = 0x0015;
|
1442
|
+
/// If possible, convert to MBB bundle with NOP.B in slot 1
|
1443
|
+
pub const IMAGE_REL_IA64_PCREL60B: u16 = 0x0016;
|
1444
|
+
/// If possible, convert to MFB bundle with NOP.F in slot 1
|
1445
|
+
pub const IMAGE_REL_IA64_PCREL60F: u16 = 0x0017;
|
1446
|
+
/// If possible, convert to MIB bundle with NOP.I in slot 1
|
1447
|
+
pub const IMAGE_REL_IA64_PCREL60I: u16 = 0x0018;
|
1448
|
+
/// If possible, convert to MMB bundle with NOP.M in slot 1
|
1449
|
+
pub const IMAGE_REL_IA64_PCREL60M: u16 = 0x0019;
|
1450
|
+
pub const IMAGE_REL_IA64_IMMGPREL64: u16 = 0x001A;
|
1451
|
+
/// clr token
|
1452
|
+
pub const IMAGE_REL_IA64_TOKEN: u16 = 0x001B;
|
1453
|
+
pub const IMAGE_REL_IA64_GPREL32: u16 = 0x001C;
|
1454
|
+
pub const IMAGE_REL_IA64_ADDEND: u16 = 0x001F;
|
1455
|
+
|
1456
|
+
//
|
1457
|
+
// CEF relocation types.
|
1458
|
+
//
|
1459
|
+
/// Reference is absolute, no relocation is necessary
|
1460
|
+
pub const IMAGE_REL_CEF_ABSOLUTE: u16 = 0x0000;
|
1461
|
+
/// 32-bit address (VA).
|
1462
|
+
pub const IMAGE_REL_CEF_ADDR32: u16 = 0x0001;
|
1463
|
+
/// 64-bit address (VA).
|
1464
|
+
pub const IMAGE_REL_CEF_ADDR64: u16 = 0x0002;
|
1465
|
+
/// 32-bit address w/o image base (RVA).
|
1466
|
+
pub const IMAGE_REL_CEF_ADDR32NB: u16 = 0x0003;
|
1467
|
+
/// Section index
|
1468
|
+
pub const IMAGE_REL_CEF_SECTION: u16 = 0x0004;
|
1469
|
+
/// 32 bit offset from base of section containing target
|
1470
|
+
pub const IMAGE_REL_CEF_SECREL: u16 = 0x0005;
|
1471
|
+
/// 32 bit metadata token
|
1472
|
+
pub const IMAGE_REL_CEF_TOKEN: u16 = 0x0006;
|
1473
|
+
|
1474
|
+
//
|
1475
|
+
// clr relocation types.
|
1476
|
+
//
|
1477
|
+
/// Reference is absolute, no relocation is necessary
|
1478
|
+
pub const IMAGE_REL_CEE_ABSOLUTE: u16 = 0x0000;
|
1479
|
+
/// 32-bit address (VA).
|
1480
|
+
pub const IMAGE_REL_CEE_ADDR32: u16 = 0x0001;
|
1481
|
+
/// 64-bit address (VA).
|
1482
|
+
pub const IMAGE_REL_CEE_ADDR64: u16 = 0x0002;
|
1483
|
+
/// 32-bit address w/o image base (RVA).
|
1484
|
+
pub const IMAGE_REL_CEE_ADDR32NB: u16 = 0x0003;
|
1485
|
+
/// Section index
|
1486
|
+
pub const IMAGE_REL_CEE_SECTION: u16 = 0x0004;
|
1487
|
+
/// 32 bit offset from base of section containing target
|
1488
|
+
pub const IMAGE_REL_CEE_SECREL: u16 = 0x0005;
|
1489
|
+
/// 32 bit metadata token
|
1490
|
+
pub const IMAGE_REL_CEE_TOKEN: u16 = 0x0006;
|
1491
|
+
|
1492
|
+
/// No relocation required
|
1493
|
+
pub const IMAGE_REL_M32R_ABSOLUTE: u16 = 0x0000;
|
1494
|
+
/// 32 bit address
|
1495
|
+
pub const IMAGE_REL_M32R_ADDR32: u16 = 0x0001;
|
1496
|
+
/// 32 bit address w/o image base
|
1497
|
+
pub const IMAGE_REL_M32R_ADDR32NB: u16 = 0x0002;
|
1498
|
+
/// 24 bit address
|
1499
|
+
pub const IMAGE_REL_M32R_ADDR24: u16 = 0x0003;
|
1500
|
+
/// GP relative addressing
|
1501
|
+
pub const IMAGE_REL_M32R_GPREL16: u16 = 0x0004;
|
1502
|
+
/// 24 bit offset << 2 & sign ext.
|
1503
|
+
pub const IMAGE_REL_M32R_PCREL24: u16 = 0x0005;
|
1504
|
+
/// 16 bit offset << 2 & sign ext.
|
1505
|
+
pub const IMAGE_REL_M32R_PCREL16: u16 = 0x0006;
|
1506
|
+
/// 8 bit offset << 2 & sign ext.
|
1507
|
+
pub const IMAGE_REL_M32R_PCREL8: u16 = 0x0007;
|
1508
|
+
/// 16 MSBs
|
1509
|
+
pub const IMAGE_REL_M32R_REFHALF: u16 = 0x0008;
|
1510
|
+
/// 16 MSBs; adj for LSB sign ext.
|
1511
|
+
pub const IMAGE_REL_M32R_REFHI: u16 = 0x0009;
|
1512
|
+
/// 16 LSBs
|
1513
|
+
pub const IMAGE_REL_M32R_REFLO: u16 = 0x000A;
|
1514
|
+
/// Link HI and LO
|
1515
|
+
pub const IMAGE_REL_M32R_PAIR: u16 = 0x000B;
|
1516
|
+
/// Section table index
|
1517
|
+
pub const IMAGE_REL_M32R_SECTION: u16 = 0x000C;
|
1518
|
+
/// 32 bit section relative reference
|
1519
|
+
pub const IMAGE_REL_M32R_SECREL32: u16 = 0x000D;
|
1520
|
+
/// clr token
|
1521
|
+
pub const IMAGE_REL_M32R_TOKEN: u16 = 0x000E;
|
1522
|
+
|
1523
|
+
/// No relocation required
|
1524
|
+
pub const IMAGE_REL_EBC_ABSOLUTE: u16 = 0x0000;
|
1525
|
+
/// 32 bit address w/o image base
|
1526
|
+
pub const IMAGE_REL_EBC_ADDR32NB: u16 = 0x0001;
|
1527
|
+
/// 32-bit relative address from byte following reloc
|
1528
|
+
pub const IMAGE_REL_EBC_REL32: u16 = 0x0002;
|
1529
|
+
/// Section table index
|
1530
|
+
pub const IMAGE_REL_EBC_SECTION: u16 = 0x0003;
|
1531
|
+
/// Offset within section
|
1532
|
+
pub const IMAGE_REL_EBC_SECREL: u16 = 0x0004;
|
1533
|
+
|
1534
|
+
/*
|
1535
|
+
// TODO?
|
1536
|
+
#define EXT_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */ \
|
1537
|
+
Value |= (((ULONGLONG)((*(Address) >> InstPos) & (((ULONGLONG)1 << Size) - 1))) << ValPos) // Intel-IA64-Filler
|
1538
|
+
|
1539
|
+
#define INS_IMM64(Value, Address, Size, InstPos, ValPos) /* Intel-IA64-Filler */\
|
1540
|
+
*(PDWORD)Address = (*(PDWORD)Address & ~(((1 << Size) - 1) << InstPos)) | /* Intel-IA64-Filler */\
|
1541
|
+
((DWORD)((((ULONGLONG)Value >> ValPos) & (((ULONGLONG)1 << Size) - 1))) << InstPos) // Intel-IA64-Filler
|
1542
|
+
*/
|
1543
|
+
|
1544
|
+
/// Intel-IA64-Filler
|
1545
|
+
pub const EMARCH_ENC_I17_IMM7B_INST_WORD_X: u16 = 3;
|
1546
|
+
/// Intel-IA64-Filler
|
1547
|
+
pub const EMARCH_ENC_I17_IMM7B_SIZE_X: u16 = 7;
|
1548
|
+
/// Intel-IA64-Filler
|
1549
|
+
pub const EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X: u16 = 4;
|
1550
|
+
/// Intel-IA64-Filler
|
1551
|
+
pub const EMARCH_ENC_I17_IMM7B_VAL_POS_X: u16 = 0;
|
1552
|
+
|
1553
|
+
/// Intel-IA64-Filler
|
1554
|
+
pub const EMARCH_ENC_I17_IMM9D_INST_WORD_X: u16 = 3;
|
1555
|
+
/// Intel-IA64-Filler
|
1556
|
+
pub const EMARCH_ENC_I17_IMM9D_SIZE_X: u16 = 9;
|
1557
|
+
/// Intel-IA64-Filler
|
1558
|
+
pub const EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X: u16 = 18;
|
1559
|
+
/// Intel-IA64-Filler
|
1560
|
+
pub const EMARCH_ENC_I17_IMM9D_VAL_POS_X: u16 = 7;
|
1561
|
+
|
1562
|
+
/// Intel-IA64-Filler
|
1563
|
+
pub const EMARCH_ENC_I17_IMM5C_INST_WORD_X: u16 = 3;
|
1564
|
+
/// Intel-IA64-Filler
|
1565
|
+
pub const EMARCH_ENC_I17_IMM5C_SIZE_X: u16 = 5;
|
1566
|
+
/// Intel-IA64-Filler
|
1567
|
+
pub const EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X: u16 = 13;
|
1568
|
+
/// Intel-IA64-Filler
|
1569
|
+
pub const EMARCH_ENC_I17_IMM5C_VAL_POS_X: u16 = 16;
|
1570
|
+
|
1571
|
+
/// Intel-IA64-Filler
|
1572
|
+
pub const EMARCH_ENC_I17_IC_INST_WORD_X: u16 = 3;
|
1573
|
+
/// Intel-IA64-Filler
|
1574
|
+
pub const EMARCH_ENC_I17_IC_SIZE_X: u16 = 1;
|
1575
|
+
/// Intel-IA64-Filler
|
1576
|
+
pub const EMARCH_ENC_I17_IC_INST_WORD_POS_X: u16 = 12;
|
1577
|
+
/// Intel-IA64-Filler
|
1578
|
+
pub const EMARCH_ENC_I17_IC_VAL_POS_X: u16 = 21;
|
1579
|
+
|
1580
|
+
/// Intel-IA64-Filler
|
1581
|
+
pub const EMARCH_ENC_I17_IMM41A_INST_WORD_X: u16 = 1;
|
1582
|
+
/// Intel-IA64-Filler
|
1583
|
+
pub const EMARCH_ENC_I17_IMM41A_SIZE_X: u16 = 10;
|
1584
|
+
/// Intel-IA64-Filler
|
1585
|
+
pub const EMARCH_ENC_I17_IMM41A_INST_WORD_POS_X: u16 = 14;
|
1586
|
+
/// Intel-IA64-Filler
|
1587
|
+
pub const EMARCH_ENC_I17_IMM41A_VAL_POS_X: u16 = 22;
|
1588
|
+
|
1589
|
+
/// Intel-IA64-Filler
|
1590
|
+
pub const EMARCH_ENC_I17_IMM41B_INST_WORD_X: u16 = 1;
|
1591
|
+
/// Intel-IA64-Filler
|
1592
|
+
pub const EMARCH_ENC_I17_IMM41B_SIZE_X: u16 = 8;
|
1593
|
+
/// Intel-IA64-Filler
|
1594
|
+
pub const EMARCH_ENC_I17_IMM41B_INST_WORD_POS_X: u16 = 24;
|
1595
|
+
/// Intel-IA64-Filler
|
1596
|
+
pub const EMARCH_ENC_I17_IMM41B_VAL_POS_X: u16 = 32;
|
1597
|
+
|
1598
|
+
/// Intel-IA64-Filler
|
1599
|
+
pub const EMARCH_ENC_I17_IMM41C_INST_WORD_X: u16 = 2;
|
1600
|
+
/// Intel-IA64-Filler
|
1601
|
+
pub const EMARCH_ENC_I17_IMM41C_SIZE_X: u16 = 23;
|
1602
|
+
/// Intel-IA64-Filler
|
1603
|
+
pub const EMARCH_ENC_I17_IMM41C_INST_WORD_POS_X: u16 = 0;
|
1604
|
+
/// Intel-IA64-Filler
|
1605
|
+
pub const EMARCH_ENC_I17_IMM41C_VAL_POS_X: u16 = 40;
|
1606
|
+
|
1607
|
+
/// Intel-IA64-Filler
|
1608
|
+
pub const EMARCH_ENC_I17_SIGN_INST_WORD_X: u16 = 3;
|
1609
|
+
/// Intel-IA64-Filler
|
1610
|
+
pub const EMARCH_ENC_I17_SIGN_SIZE_X: u16 = 1;
|
1611
|
+
/// Intel-IA64-Filler
|
1612
|
+
pub const EMARCH_ENC_I17_SIGN_INST_WORD_POS_X: u16 = 27;
|
1613
|
+
/// Intel-IA64-Filler
|
1614
|
+
pub const EMARCH_ENC_I17_SIGN_VAL_POS_X: u16 = 63;
|
1615
|
+
|
1616
|
+
/// Intel-IA64-Filler
|
1617
|
+
pub const X3_OPCODE_INST_WORD_X: u16 = 3;
|
1618
|
+
/// Intel-IA64-Filler
|
1619
|
+
pub const X3_OPCODE_SIZE_X: u16 = 4;
|
1620
|
+
/// Intel-IA64-Filler
|
1621
|
+
pub const X3_OPCODE_INST_WORD_POS_X: u16 = 28;
|
1622
|
+
/// Intel-IA64-Filler
|
1623
|
+
pub const X3_OPCODE_SIGN_VAL_POS_X: u16 = 0;
|
1624
|
+
|
1625
|
+
/// Intel-IA64-Filler
|
1626
|
+
pub const X3_I_INST_WORD_X: u16 = 3;
|
1627
|
+
/// Intel-IA64-Filler
|
1628
|
+
pub const X3_I_SIZE_X: u16 = 1;
|
1629
|
+
/// Intel-IA64-Filler
|
1630
|
+
pub const X3_I_INST_WORD_POS_X: u16 = 27;
|
1631
|
+
/// Intel-IA64-Filler
|
1632
|
+
pub const X3_I_SIGN_VAL_POS_X: u16 = 59;
|
1633
|
+
|
1634
|
+
/// Intel-IA64-Filler
|
1635
|
+
pub const X3_D_WH_INST_WORD_X: u16 = 3;
|
1636
|
+
/// Intel-IA64-Filler
|
1637
|
+
pub const X3_D_WH_SIZE_X: u16 = 3;
|
1638
|
+
/// Intel-IA64-Filler
|
1639
|
+
pub const X3_D_WH_INST_WORD_POS_X: u16 = 24;
|
1640
|
+
/// Intel-IA64-Filler
|
1641
|
+
pub const X3_D_WH_SIGN_VAL_POS_X: u16 = 0;
|
1642
|
+
|
1643
|
+
/// Intel-IA64-Filler
|
1644
|
+
pub const X3_IMM20_INST_WORD_X: u16 = 3;
|
1645
|
+
/// Intel-IA64-Filler
|
1646
|
+
pub const X3_IMM20_SIZE_X: u16 = 20;
|
1647
|
+
/// Intel-IA64-Filler
|
1648
|
+
pub const X3_IMM20_INST_WORD_POS_X: u16 = 4;
|
1649
|
+
/// Intel-IA64-Filler
|
1650
|
+
pub const X3_IMM20_SIGN_VAL_POS_X: u16 = 0;
|
1651
|
+
|
1652
|
+
/// Intel-IA64-Filler
|
1653
|
+
pub const X3_IMM39_1_INST_WORD_X: u16 = 2;
|
1654
|
+
/// Intel-IA64-Filler
|
1655
|
+
pub const X3_IMM39_1_SIZE_X: u16 = 23;
|
1656
|
+
/// Intel-IA64-Filler
|
1657
|
+
pub const X3_IMM39_1_INST_WORD_POS_X: u16 = 0;
|
1658
|
+
/// Intel-IA64-Filler
|
1659
|
+
pub const X3_IMM39_1_SIGN_VAL_POS_X: u16 = 36;
|
1660
|
+
|
1661
|
+
/// Intel-IA64-Filler
|
1662
|
+
pub const X3_IMM39_2_INST_WORD_X: u16 = 1;
|
1663
|
+
/// Intel-IA64-Filler
|
1664
|
+
pub const X3_IMM39_2_SIZE_X: u16 = 16;
|
1665
|
+
/// Intel-IA64-Filler
|
1666
|
+
pub const X3_IMM39_2_INST_WORD_POS_X: u16 = 16;
|
1667
|
+
/// Intel-IA64-Filler
|
1668
|
+
pub const X3_IMM39_2_SIGN_VAL_POS_X: u16 = 20;
|
1669
|
+
|
1670
|
+
/// Intel-IA64-Filler
|
1671
|
+
pub const X3_P_INST_WORD_X: u16 = 3;
|
1672
|
+
/// Intel-IA64-Filler
|
1673
|
+
pub const X3_P_SIZE_X: u16 = 4;
|
1674
|
+
/// Intel-IA64-Filler
|
1675
|
+
pub const X3_P_INST_WORD_POS_X: u16 = 0;
|
1676
|
+
/// Intel-IA64-Filler
|
1677
|
+
pub const X3_P_SIGN_VAL_POS_X: u16 = 0;
|
1678
|
+
|
1679
|
+
/// Intel-IA64-Filler
|
1680
|
+
pub const X3_TMPLT_INST_WORD_X: u16 = 0;
|
1681
|
+
/// Intel-IA64-Filler
|
1682
|
+
pub const X3_TMPLT_SIZE_X: u16 = 4;
|
1683
|
+
/// Intel-IA64-Filler
|
1684
|
+
pub const X3_TMPLT_INST_WORD_POS_X: u16 = 0;
|
1685
|
+
/// Intel-IA64-Filler
|
1686
|
+
pub const X3_TMPLT_SIGN_VAL_POS_X: u16 = 0;
|
1687
|
+
|
1688
|
+
/// Intel-IA64-Filler
|
1689
|
+
pub const X3_BTYPE_QP_INST_WORD_X: u16 = 2;
|
1690
|
+
/// Intel-IA64-Filler
|
1691
|
+
pub const X3_BTYPE_QP_SIZE_X: u16 = 9;
|
1692
|
+
/// Intel-IA64-Filler
|
1693
|
+
pub const X3_BTYPE_QP_INST_WORD_POS_X: u16 = 23;
|
1694
|
+
/// Intel-IA64-Filler
|
1695
|
+
pub const X3_BTYPE_QP_INST_VAL_POS_X: u16 = 0;
|
1696
|
+
|
1697
|
+
/// Intel-IA64-Filler
|
1698
|
+
pub const X3_EMPTY_INST_WORD_X: u16 = 1;
|
1699
|
+
/// Intel-IA64-Filler
|
1700
|
+
pub const X3_EMPTY_SIZE_X: u16 = 2;
|
1701
|
+
/// Intel-IA64-Filler
|
1702
|
+
pub const X3_EMPTY_INST_WORD_POS_X: u16 = 14;
|
1703
|
+
/// Intel-IA64-Filler
|
1704
|
+
pub const X3_EMPTY_INST_VAL_POS_X: u16 = 0;
|
1705
|
+
|
1706
|
+
//
|
1707
|
+
// Line number format.
|
1708
|
+
//
|
1709
|
+
|
1710
|
+
// This struct has alignment 1.
|
1711
|
+
#[derive(Debug, Clone, Copy)]
|
1712
|
+
#[repr(C)]
|
1713
|
+
pub struct ImageLinenumber {
|
1714
|
+
/// Symbol table index of function name if Linenumber is 0.
|
1715
|
+
/// Otherwise virtual address of line number.
|
1716
|
+
pub symbol_table_index_or_virtual_address: U32Bytes<LE>,
|
1717
|
+
/// Line number.
|
1718
|
+
pub linenumber: U16Bytes<LE>,
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
//
|
1722
|
+
// Based relocation format.
|
1723
|
+
//
|
1724
|
+
|
1725
|
+
#[derive(Debug, Clone, Copy)]
|
1726
|
+
#[repr(C)]
|
1727
|
+
pub struct ImageBaseRelocation {
|
1728
|
+
pub virtual_address: U32<LE>,
|
1729
|
+
pub size_of_block: U32<LE>,
|
1730
|
+
// pub type_offset[1]: U16<LE>,
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
//
|
1734
|
+
// Based relocation types.
|
1735
|
+
//
|
1736
|
+
|
1737
|
+
pub const IMAGE_REL_BASED_ABSOLUTE: u16 = 0;
|
1738
|
+
pub const IMAGE_REL_BASED_HIGH: u16 = 1;
|
1739
|
+
pub const IMAGE_REL_BASED_LOW: u16 = 2;
|
1740
|
+
pub const IMAGE_REL_BASED_HIGHLOW: u16 = 3;
|
1741
|
+
pub const IMAGE_REL_BASED_HIGHADJ: u16 = 4;
|
1742
|
+
pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_5: u16 = 5;
|
1743
|
+
pub const IMAGE_REL_BASED_RESERVED: u16 = 6;
|
1744
|
+
pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_7: u16 = 7;
|
1745
|
+
pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_8: u16 = 8;
|
1746
|
+
pub const IMAGE_REL_BASED_MACHINE_SPECIFIC_9: u16 = 9;
|
1747
|
+
pub const IMAGE_REL_BASED_DIR64: u16 = 10;
|
1748
|
+
|
1749
|
+
//
|
1750
|
+
// Platform-specific based relocation types.
|
1751
|
+
//
|
1752
|
+
|
1753
|
+
pub const IMAGE_REL_BASED_IA64_IMM64: u16 = 9;
|
1754
|
+
|
1755
|
+
pub const IMAGE_REL_BASED_MIPS_JMPADDR: u16 = 5;
|
1756
|
+
pub const IMAGE_REL_BASED_MIPS_JMPADDR16: u16 = 9;
|
1757
|
+
|
1758
|
+
pub const IMAGE_REL_BASED_ARM_MOV32: u16 = 5;
|
1759
|
+
pub const IMAGE_REL_BASED_THUMB_MOV32: u16 = 7;
|
1760
|
+
|
1761
|
+
pub const IMAGE_REL_BASED_RISCV_HIGH20: u16 = 5;
|
1762
|
+
pub const IMAGE_REL_BASED_RISCV_LOW12I: u16 = 7;
|
1763
|
+
pub const IMAGE_REL_BASED_RISCV_LOW12S: u16 = 8;
|
1764
|
+
|
1765
|
+
//
|
1766
|
+
// Archive format.
|
1767
|
+
//
|
1768
|
+
|
1769
|
+
pub const IMAGE_ARCHIVE_START_SIZE: usize = 8;
|
1770
|
+
pub const IMAGE_ARCHIVE_START: &[u8; 8] = b"!<arch>\n";
|
1771
|
+
pub const IMAGE_ARCHIVE_END: &[u8] = b"`\n";
|
1772
|
+
pub const IMAGE_ARCHIVE_PAD: &[u8] = b"\n";
|
1773
|
+
pub const IMAGE_ARCHIVE_LINKER_MEMBER: &[u8; 16] = b"/ ";
|
1774
|
+
pub const IMAGE_ARCHIVE_LONGNAMES_MEMBER: &[u8; 16] = b"// ";
|
1775
|
+
pub const IMAGE_ARCHIVE_HYBRIDMAP_MEMBER: &[u8; 16] = b"/<HYBRIDMAP>/ ";
|
1776
|
+
|
1777
|
+
#[derive(Debug, Clone, Copy)]
|
1778
|
+
#[repr(C)]
|
1779
|
+
pub struct ImageArchiveMemberHeader {
|
1780
|
+
/// File member name - `/' terminated.
|
1781
|
+
pub name: [u8; 16],
|
1782
|
+
/// File member date - decimal.
|
1783
|
+
pub date: [u8; 12],
|
1784
|
+
/// File member user id - decimal.
|
1785
|
+
pub user_id: [u8; 6],
|
1786
|
+
/// File member group id - decimal.
|
1787
|
+
pub group_id: [u8; 6],
|
1788
|
+
/// File member mode - octal.
|
1789
|
+
pub mode: [u8; 8],
|
1790
|
+
/// File member size - decimal.
|
1791
|
+
pub size: [u8; 10],
|
1792
|
+
/// String to end header.
|
1793
|
+
pub end_header: [u8; 2],
|
1794
|
+
}
|
1795
|
+
|
1796
|
+
pub const IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR: u16 = 60;
|
1797
|
+
|
1798
|
+
//
|
1799
|
+
// DLL support.
|
1800
|
+
//
|
1801
|
+
|
1802
|
+
//
|
1803
|
+
// Export Format
|
1804
|
+
//
|
1805
|
+
|
1806
|
+
#[derive(Debug, Clone, Copy)]
|
1807
|
+
#[repr(C)]
|
1808
|
+
pub struct ImageExportDirectory {
|
1809
|
+
pub characteristics: U32<LE>,
|
1810
|
+
pub time_date_stamp: U32<LE>,
|
1811
|
+
pub major_version: U16<LE>,
|
1812
|
+
pub minor_version: U16<LE>,
|
1813
|
+
pub name: U32<LE>,
|
1814
|
+
pub base: U32<LE>,
|
1815
|
+
pub number_of_functions: U32<LE>,
|
1816
|
+
pub number_of_names: U32<LE>,
|
1817
|
+
/// RVA from base of image
|
1818
|
+
pub address_of_functions: U32<LE>,
|
1819
|
+
/// RVA from base of image
|
1820
|
+
pub address_of_names: U32<LE>,
|
1821
|
+
/// RVA from base of image
|
1822
|
+
pub address_of_name_ordinals: U32<LE>,
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
//
|
1826
|
+
// Import Format
|
1827
|
+
//
|
1828
|
+
|
1829
|
+
#[derive(Debug, Clone, Copy)]
|
1830
|
+
#[repr(C)]
|
1831
|
+
pub struct ImageImportByName {
|
1832
|
+
pub hint: U16<LE>,
|
1833
|
+
//pub name: [i8; 1],
|
1834
|
+
}
|
1835
|
+
|
1836
|
+
#[derive(Debug, Clone, Copy)]
|
1837
|
+
#[repr(C)]
|
1838
|
+
pub struct ImageThunkData64(pub U64<LE>);
|
1839
|
+
/*
|
1840
|
+
union {
|
1841
|
+
/// PBYTE
|
1842
|
+
pub forwarder_string: U64<LE>,
|
1843
|
+
/// PDWORD
|
1844
|
+
pub function: U64<LE>,
|
1845
|
+
pub ordinal: U64<LE>,
|
1846
|
+
/// PIMAGE_IMPORT_BY_NAME
|
1847
|
+
pub address_of_data: U64<LE>,
|
1848
|
+
} u1;
|
1849
|
+
*/
|
1850
|
+
|
1851
|
+
#[derive(Debug, Clone, Copy)]
|
1852
|
+
#[repr(C)]
|
1853
|
+
pub struct ImageThunkData32(pub U32<LE>);
|
1854
|
+
/*
|
1855
|
+
union {
|
1856
|
+
/// PBYTE
|
1857
|
+
pub forwarder_string: U32<LE>,
|
1858
|
+
/// PDWORD
|
1859
|
+
pub function: U32<LE>,
|
1860
|
+
pub ordinal: U32<LE>,
|
1861
|
+
/// PIMAGE_IMPORT_BY_NAME
|
1862
|
+
pub address_of_data: U32<LE>,
|
1863
|
+
} u1;
|
1864
|
+
}
|
1865
|
+
*/
|
1866
|
+
|
1867
|
+
pub const IMAGE_ORDINAL_FLAG64: u64 = 0x8000000000000000;
|
1868
|
+
pub const IMAGE_ORDINAL_FLAG32: u32 = 0x80000000;
|
1869
|
+
|
1870
|
+
/*
|
1871
|
+
#define IMAGE_ORDINAL64(Ordinal) (Ordinal & 0xffff)
|
1872
|
+
#define IMAGE_ORDINAL32(Ordinal) (Ordinal & 0xffff)
|
1873
|
+
#define IMAGE_SNAP_BY_ORDINAL64(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG64) != 0)
|
1874
|
+
#define IMAGE_SNAP_BY_ORDINAL32(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG32) != 0)
|
1875
|
+
|
1876
|
+
*/
|
1877
|
+
|
1878
|
+
//
|
1879
|
+
// Thread Local Storage
|
1880
|
+
//
|
1881
|
+
|
1882
|
+
#[derive(Debug, Clone, Copy)]
|
1883
|
+
#[repr(C)]
|
1884
|
+
pub struct ImageTlsDirectory64 {
|
1885
|
+
pub start_address_of_raw_data: U64<LE>,
|
1886
|
+
pub end_address_of_raw_data: U64<LE>,
|
1887
|
+
/// PDWORD
|
1888
|
+
pub address_of_index: U64<LE>,
|
1889
|
+
/// PIMAGE_TLS_CALLBACK *;
|
1890
|
+
pub address_of_call_backs: U64<LE>,
|
1891
|
+
pub size_of_zero_fill: U32<LE>,
|
1892
|
+
pub characteristics: U32<LE>,
|
1893
|
+
}
|
1894
|
+
|
1895
|
+
#[derive(Debug, Clone, Copy)]
|
1896
|
+
#[repr(C)]
|
1897
|
+
pub struct ImageTlsDirectory32 {
|
1898
|
+
pub start_address_of_raw_data: U32<LE>,
|
1899
|
+
pub end_address_of_raw_data: U32<LE>,
|
1900
|
+
/// PDWORD
|
1901
|
+
pub address_of_index: U32<LE>,
|
1902
|
+
/// PIMAGE_TLS_CALLBACK *
|
1903
|
+
pub address_of_call_backs: U32<LE>,
|
1904
|
+
pub size_of_zero_fill: U32<LE>,
|
1905
|
+
pub characteristics: U32<LE>,
|
1906
|
+
}
|
1907
|
+
|
1908
|
+
#[derive(Debug, Clone, Copy)]
|
1909
|
+
#[repr(C)]
|
1910
|
+
pub struct ImageImportDescriptor {
|
1911
|
+
/// RVA to original unbound IAT (`ImageThunkData32`/`ImageThunkData64`)
|
1912
|
+
/// 0 for terminating null import descriptor
|
1913
|
+
pub original_first_thunk: U32Bytes<LE>,
|
1914
|
+
/// 0 if not bound,
|
1915
|
+
/// -1 if bound, and real date\time stamp
|
1916
|
+
/// in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT (new BIND)
|
1917
|
+
/// O.W. date/time stamp of DLL bound to (Old BIND)
|
1918
|
+
pub time_date_stamp: U32Bytes<LE>,
|
1919
|
+
/// -1 if no forwarders
|
1920
|
+
pub forwarder_chain: U32Bytes<LE>,
|
1921
|
+
pub name: U32Bytes<LE>,
|
1922
|
+
/// RVA to IAT (if bound this IAT has actual addresses)
|
1923
|
+
pub first_thunk: U32Bytes<LE>,
|
1924
|
+
}
|
1925
|
+
|
1926
|
+
impl ImageImportDescriptor {
|
1927
|
+
/// Tell whether this import descriptor is the null descriptor
|
1928
|
+
/// (used to mark the end of the iterator array in a PE)
|
1929
|
+
pub fn is_null(&self) -> bool {
|
1930
|
+
self.original_first_thunk.get(LE) == 0
|
1931
|
+
&& self.time_date_stamp.get(LE) == 0
|
1932
|
+
&& self.forwarder_chain.get(LE) == 0
|
1933
|
+
&& self.name.get(LE) == 0
|
1934
|
+
&& self.first_thunk.get(LE) == 0
|
1935
|
+
}
|
1936
|
+
}
|
1937
|
+
|
1938
|
+
//
|
1939
|
+
// New format import descriptors pointed to by DataDirectory[ IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT ]
|
1940
|
+
//
|
1941
|
+
|
1942
|
+
#[derive(Debug, Clone, Copy)]
|
1943
|
+
#[repr(C)]
|
1944
|
+
pub struct ImageBoundImportDescriptor {
|
1945
|
+
pub time_date_stamp: U32<LE>,
|
1946
|
+
pub offset_module_name: U16<LE>,
|
1947
|
+
pub number_of_module_forwarder_refs: U16<LE>,
|
1948
|
+
// Array of zero or more IMAGE_BOUND_FORWARDER_REF follows
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
#[derive(Debug, Clone, Copy)]
|
1952
|
+
#[repr(C)]
|
1953
|
+
pub struct ImageBoundForwarderRef {
|
1954
|
+
pub time_date_stamp: U32<LE>,
|
1955
|
+
pub offset_module_name: U16<LE>,
|
1956
|
+
pub reserved: U16<LE>,
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
#[derive(Debug, Clone, Copy)]
|
1960
|
+
#[repr(C)]
|
1961
|
+
pub struct ImageDelayloadDescriptor {
|
1962
|
+
pub attributes: U32<LE>,
|
1963
|
+
|
1964
|
+
/// RVA to the name of the target library (NULL-terminate ASCII string)
|
1965
|
+
pub dll_name_rva: U32<LE>,
|
1966
|
+
/// RVA to the HMODULE caching location (PHMODULE)
|
1967
|
+
pub module_handle_rva: U32<LE>,
|
1968
|
+
/// RVA to the start of the IAT (PIMAGE_THUNK_DATA)
|
1969
|
+
pub import_address_table_rva: U32<LE>,
|
1970
|
+
/// RVA to the start of the name table (PIMAGE_THUNK_DATA::AddressOfData)
|
1971
|
+
pub import_name_table_rva: U32<LE>,
|
1972
|
+
/// RVA to an optional bound IAT
|
1973
|
+
pub bound_import_address_table_rva: U32<LE>,
|
1974
|
+
/// RVA to an optional unload info table
|
1975
|
+
pub unload_information_table_rva: U32<LE>,
|
1976
|
+
/// 0 if not bound, otherwise, date/time of the target DLL
|
1977
|
+
pub time_date_stamp: U32<LE>,
|
1978
|
+
}
|
1979
|
+
|
1980
|
+
impl ImageDelayloadDescriptor {
|
1981
|
+
/// Tell whether this delay-load import descriptor is the null descriptor
|
1982
|
+
/// (used to mark the end of the iterator array in a PE)
|
1983
|
+
pub fn is_null(&self) -> bool {
|
1984
|
+
self.attributes.get(LE) == 0
|
1985
|
+
&& self.dll_name_rva.get(LE) == 0
|
1986
|
+
&& self.module_handle_rva.get(LE) == 0
|
1987
|
+
&& self.import_address_table_rva.get(LE) == 0
|
1988
|
+
&& self.import_name_table_rva.get(LE) == 0
|
1989
|
+
&& self.bound_import_address_table_rva.get(LE) == 0
|
1990
|
+
&& self.unload_information_table_rva.get(LE) == 0
|
1991
|
+
&& self.time_date_stamp.get(LE) == 0
|
1992
|
+
}
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
/// Delay load version 2 flag for `ImageDelayloadDescriptor::attributes`.
|
1996
|
+
pub const IMAGE_DELAYLOAD_RVA_BASED: u32 = 0x8000_0000;
|
1997
|
+
|
1998
|
+
//
|
1999
|
+
// Resource Format.
|
2000
|
+
//
|
2001
|
+
|
2002
|
+
//
|
2003
|
+
// Resource directory consists of two counts, following by a variable length
|
2004
|
+
// array of directory entries. The first count is the number of entries at
|
2005
|
+
// beginning of the array that have actual names associated with each entry.
|
2006
|
+
// The entries are in ascending order, case insensitive strings. The second
|
2007
|
+
// count is the number of entries that immediately follow the named entries.
|
2008
|
+
// This second count identifies the number of entries that have 16-bit integer
|
2009
|
+
// Ids as their name. These entries are also sorted in ascending order.
|
2010
|
+
//
|
2011
|
+
// This structure allows fast lookup by either name or number, but for any
|
2012
|
+
// given resource entry only one form of lookup is supported, not both.
|
2013
|
+
// This is consistent with the syntax of the .RC file and the .RES file.
|
2014
|
+
//
|
2015
|
+
|
2016
|
+
#[derive(Debug, Clone, Copy)]
|
2017
|
+
#[repr(C)]
|
2018
|
+
pub struct ImageResourceDirectory {
|
2019
|
+
pub characteristics: U32<LE>,
|
2020
|
+
pub time_date_stamp: U32<LE>,
|
2021
|
+
pub major_version: U16<LE>,
|
2022
|
+
pub minor_version: U16<LE>,
|
2023
|
+
pub number_of_named_entries: U16<LE>,
|
2024
|
+
pub number_of_id_entries: U16<LE>,
|
2025
|
+
}
|
2026
|
+
|
2027
|
+
pub const IMAGE_RESOURCE_NAME_IS_STRING: u32 = 0x8000_0000;
|
2028
|
+
pub const IMAGE_RESOURCE_DATA_IS_DIRECTORY: u32 = 0x8000_0000;
|
2029
|
+
//
|
2030
|
+
// Each directory contains the 32-bit Name of the entry and an offset,
|
2031
|
+
// relative to the beginning of the resource directory of the data associated
|
2032
|
+
// with this directory entry. If the name of the entry is an actual text
|
2033
|
+
// string instead of an integer Id, then the high order bit of the name field
|
2034
|
+
// is set to one and the low order 31-bits are an offset, relative to the
|
2035
|
+
// beginning of the resource directory of the string, which is of type
|
2036
|
+
// IMAGE_RESOURCE_DIRECTORY_STRING. Otherwise the high bit is clear and the
|
2037
|
+
// low-order 16-bits are the integer Id that identify this resource directory
|
2038
|
+
// entry. If the directory entry is yet another resource directory (i.e. a
|
2039
|
+
// subdirectory), then the high order bit of the offset field will be
|
2040
|
+
// set to indicate this. Otherwise the high bit is clear and the offset
|
2041
|
+
// field points to a resource data entry.
|
2042
|
+
//
|
2043
|
+
|
2044
|
+
#[derive(Debug, Clone, Copy)]
|
2045
|
+
#[repr(C)]
|
2046
|
+
pub struct ImageResourceDirectoryEntry {
|
2047
|
+
pub name_or_id: U32<LE>,
|
2048
|
+
pub offset_to_data_or_directory: U32<LE>,
|
2049
|
+
}
|
2050
|
+
|
2051
|
+
//
|
2052
|
+
// For resource directory entries that have actual string names, the Name
|
2053
|
+
// field of the directory entry points to an object of the following type.
|
2054
|
+
// All of these string objects are stored together after the last resource
|
2055
|
+
// directory entry and before the first resource data object. This minimizes
|
2056
|
+
// the impact of these variable length objects on the alignment of the fixed
|
2057
|
+
// size directory entry objects.
|
2058
|
+
//
|
2059
|
+
|
2060
|
+
#[derive(Debug, Clone, Copy)]
|
2061
|
+
#[repr(C)]
|
2062
|
+
pub struct ImageResourceDirectoryString {
|
2063
|
+
pub length: U16<LE>,
|
2064
|
+
//pub name_string: [i8; 1],
|
2065
|
+
}
|
2066
|
+
|
2067
|
+
#[derive(Debug, Clone, Copy)]
|
2068
|
+
#[repr(C)]
|
2069
|
+
pub struct ImageResourceDirStringU {
|
2070
|
+
pub length: U16<LE>,
|
2071
|
+
//pub name_string: [U16<LE>; 1],
|
2072
|
+
}
|
2073
|
+
|
2074
|
+
//
|
2075
|
+
// Each resource data entry describes a leaf node in the resource directory
|
2076
|
+
// tree. It contains an offset, relative to the beginning of the resource
|
2077
|
+
// directory of the data for the resource, a size field that gives the number
|
2078
|
+
// of bytes of data at that offset, a CodePage that should be used when
|
2079
|
+
// decoding code point values within the resource data. Typically for new
|
2080
|
+
// applications the code page would be the unicode code page.
|
2081
|
+
//
|
2082
|
+
|
2083
|
+
#[derive(Debug, Clone, Copy)]
|
2084
|
+
#[repr(C)]
|
2085
|
+
pub struct ImageResourceDataEntry {
|
2086
|
+
/// RVA of the data.
|
2087
|
+
pub offset_to_data: U32<LE>,
|
2088
|
+
pub size: U32<LE>,
|
2089
|
+
pub code_page: U32<LE>,
|
2090
|
+
pub reserved: U32<LE>,
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
// Resource type: https://docs.microsoft.com/en-us/windows/win32/menurc/resource-types
|
2094
|
+
|
2095
|
+
/// ID for: Hardware-dependent cursor resource.
|
2096
|
+
pub const RT_CURSOR: u16 = 1;
|
2097
|
+
/// ID for: Bitmap resource.
|
2098
|
+
pub const RT_BITMAP: u16 = 2;
|
2099
|
+
/// ID for: Hardware-dependent icon resource.
|
2100
|
+
pub const RT_ICON: u16 = 3;
|
2101
|
+
/// ID for: Menu resource.
|
2102
|
+
pub const RT_MENU: u16 = 4;
|
2103
|
+
/// ID for: Dialog box.
|
2104
|
+
pub const RT_DIALOG: u16 = 5;
|
2105
|
+
/// ID for: String-table entry.
|
2106
|
+
pub const RT_STRING: u16 = 6;
|
2107
|
+
/// ID for: Font directory resource.
|
2108
|
+
pub const RT_FONTDIR: u16 = 7;
|
2109
|
+
/// ID for: Font resource.
|
2110
|
+
pub const RT_FONT: u16 = 8;
|
2111
|
+
/// ID for: Accelerator table.
|
2112
|
+
pub const RT_ACCELERATOR: u16 = 9;
|
2113
|
+
/// ID for: Application-defined resource (raw data).
|
2114
|
+
pub const RT_RCDATA: u16 = 10;
|
2115
|
+
/// ID for: Message-table entry.
|
2116
|
+
pub const RT_MESSAGETABLE: u16 = 11;
|
2117
|
+
/// ID for: Hardware-independent cursor resource.
|
2118
|
+
pub const RT_GROUP_CURSOR: u16 = 12;
|
2119
|
+
/// ID for: Hardware-independent icon resource.
|
2120
|
+
pub const RT_GROUP_ICON: u16 = 14;
|
2121
|
+
/// ID for: Version resource.
|
2122
|
+
pub const RT_VERSION: u16 = 16;
|
2123
|
+
/// ID for: Allows a resource editing tool to associate a string with an .rc file.
|
2124
|
+
pub const RT_DLGINCLUDE: u16 = 17;
|
2125
|
+
/// ID for: Plug and Play resource.
|
2126
|
+
pub const RT_PLUGPLAY: u16 = 19;
|
2127
|
+
/// ID for: VXD.
|
2128
|
+
pub const RT_VXD: u16 = 20;
|
2129
|
+
/// ID for: Animated cursor.
|
2130
|
+
pub const RT_ANICURSOR: u16 = 21;
|
2131
|
+
/// ID for: Animated icon.
|
2132
|
+
pub const RT_ANIICON: u16 = 22;
|
2133
|
+
/// ID for: HTML resource.
|
2134
|
+
pub const RT_HTML: u16 = 23;
|
2135
|
+
/// ID for: Side-by-Side Assembly Manifest.
|
2136
|
+
pub const RT_MANIFEST: u16 = 24;
|
2137
|
+
|
2138
|
+
//
|
2139
|
+
// Code Integrity in loadconfig (CI)
|
2140
|
+
//
|
2141
|
+
|
2142
|
+
#[derive(Debug, Clone, Copy)]
|
2143
|
+
#[repr(C)]
|
2144
|
+
pub struct ImageLoadConfigCodeIntegrity {
|
2145
|
+
/// Flags to indicate if CI information is available, etc.
|
2146
|
+
pub flags: U16<LE>,
|
2147
|
+
/// 0xFFFF means not available
|
2148
|
+
pub catalog: U16<LE>,
|
2149
|
+
pub catalog_offset: U32<LE>,
|
2150
|
+
/// Additional bitmask to be defined later
|
2151
|
+
pub reserved: U32<LE>,
|
2152
|
+
}
|
2153
|
+
|
2154
|
+
//
|
2155
|
+
// Dynamic value relocation table in loadconfig
|
2156
|
+
//
|
2157
|
+
|
2158
|
+
#[derive(Debug, Clone, Copy)]
|
2159
|
+
#[repr(C)]
|
2160
|
+
pub struct ImageDynamicRelocationTable {
|
2161
|
+
pub version: U32<LE>,
|
2162
|
+
pub size: U32<LE>,
|
2163
|
+
// DynamicRelocations: [ImageDynamicRelocation; 0],
|
2164
|
+
}
|
2165
|
+
|
2166
|
+
//
|
2167
|
+
// Dynamic value relocation entries following IMAGE_DYNAMIC_RELOCATION_TABLE
|
2168
|
+
//
|
2169
|
+
|
2170
|
+
#[derive(Debug, Clone, Copy)]
|
2171
|
+
#[repr(C)]
|
2172
|
+
pub struct ImageDynamicRelocation32 {
|
2173
|
+
pub symbol: U32<LE>,
|
2174
|
+
pub base_reloc_size: U32<LE>,
|
2175
|
+
// BaseRelocations: [ImageBaseRelocation; 0],
|
2176
|
+
}
|
2177
|
+
|
2178
|
+
#[derive(Debug, Clone, Copy)]
|
2179
|
+
#[repr(C)]
|
2180
|
+
pub struct ImageDynamicRelocation64 {
|
2181
|
+
pub symbol: U64<LE>,
|
2182
|
+
pub base_reloc_size: U32<LE>,
|
2183
|
+
// BaseRelocations: [ImageBaseRelocation; 0],
|
2184
|
+
}
|
2185
|
+
|
2186
|
+
#[derive(Debug, Clone, Copy)]
|
2187
|
+
#[repr(C)]
|
2188
|
+
pub struct ImageDynamicRelocation32V2 {
|
2189
|
+
pub header_size: U32<LE>,
|
2190
|
+
pub fixup_info_size: U32<LE>,
|
2191
|
+
pub symbol: U32<LE>,
|
2192
|
+
pub symbol_group: U32<LE>,
|
2193
|
+
pub flags: U32<LE>,
|
2194
|
+
// ... variable length header fields
|
2195
|
+
// pub fixup_info: [u8; fixup_info_size]
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
#[derive(Debug, Clone, Copy)]
|
2199
|
+
#[repr(C)]
|
2200
|
+
pub struct ImageDynamicRelocation64V2 {
|
2201
|
+
pub header_size: U32<LE>,
|
2202
|
+
pub fixup_info_size: U32<LE>,
|
2203
|
+
pub symbol: U64<LE>,
|
2204
|
+
pub symbol_group: U32<LE>,
|
2205
|
+
pub flags: U32<LE>,
|
2206
|
+
// ... variable length header fields
|
2207
|
+
// pub fixup_info[u8; fixup_info_size]
|
2208
|
+
}
|
2209
|
+
|
2210
|
+
//
|
2211
|
+
// Defined symbolic dynamic relocation entries.
|
2212
|
+
//
|
2213
|
+
|
2214
|
+
pub const IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE: u32 = 0x0000_0001;
|
2215
|
+
pub const IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE: u32 = 0x0000_0002;
|
2216
|
+
pub const IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER: u32 = 0x0000_0003;
|
2217
|
+
pub const IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER: u32 = 0x0000_0004;
|
2218
|
+
pub const IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH: u32 = 0x0000_0005;
|
2219
|
+
|
2220
|
+
// This struct has alignment 1.
|
2221
|
+
#[derive(Debug, Clone, Copy)]
|
2222
|
+
#[repr(C)]
|
2223
|
+
pub struct ImagePrologueDynamicRelocationHeader {
|
2224
|
+
pub prologue_byte_count: u8,
|
2225
|
+
// pub prologue_bytes: [u8; prologue_byte_count],
|
2226
|
+
}
|
2227
|
+
|
2228
|
+
// This struct has alignment 1.
|
2229
|
+
#[derive(Debug, Clone, Copy)]
|
2230
|
+
#[repr(C)]
|
2231
|
+
pub struct ImageEpilogueDynamicRelocationHeader {
|
2232
|
+
pub epilogue_count: U32Bytes<LE>,
|
2233
|
+
pub epilogue_byte_count: u8,
|
2234
|
+
pub branch_descriptor_element_size: u8,
|
2235
|
+
pub branch_descriptor_count: U16Bytes<LE>,
|
2236
|
+
// pub branch_descriptors[...],
|
2237
|
+
// pub branch_descriptor_bit_map[...],
|
2238
|
+
}
|
2239
|
+
|
2240
|
+
/*
|
2241
|
+
// TODO? bitfields
|
2242
|
+
// TODO: unaligned?
|
2243
|
+
#[derive(Debug, Clone, Copy)]
|
2244
|
+
#[repr(C)]
|
2245
|
+
pub struct ImageImportControlTransferDynamicRelocation {
|
2246
|
+
DWORD PageRelativeOffset : 12;
|
2247
|
+
DWORD IndirectCall : 1;
|
2248
|
+
DWORD IATIndex : 19;
|
2249
|
+
}
|
2250
|
+
|
2251
|
+
// TODO: unaligned?
|
2252
|
+
#[derive(Debug, Clone, Copy)]
|
2253
|
+
#[repr(C)]
|
2254
|
+
pub struct ImageIndirControlTransferDynamicRelocation {
|
2255
|
+
WORD PageRelativeOffset : 12;
|
2256
|
+
WORD IndirectCall : 1;
|
2257
|
+
WORD RexWPrefix : 1;
|
2258
|
+
WORD CfgCheck : 1;
|
2259
|
+
WORD Reserved : 1;
|
2260
|
+
}
|
2261
|
+
|
2262
|
+
// TODO: unaligned?
|
2263
|
+
#[derive(Debug, Clone, Copy)]
|
2264
|
+
#[repr(C)]
|
2265
|
+
pub struct ImageSwitchtableBranchDynamicRelocation {
|
2266
|
+
WORD PageRelativeOffset : 12;
|
2267
|
+
WORD RegisterNumber : 4;
|
2268
|
+
}
|
2269
|
+
*/
|
2270
|
+
|
2271
|
+
//
|
2272
|
+
// Load Configuration Directory Entry
|
2273
|
+
//
|
2274
|
+
|
2275
|
+
#[derive(Debug, Clone, Copy)]
|
2276
|
+
#[repr(C)]
|
2277
|
+
pub struct ImageLoadConfigDirectory32 {
|
2278
|
+
pub size: U32<LE>,
|
2279
|
+
pub time_date_stamp: U32<LE>,
|
2280
|
+
pub major_version: U16<LE>,
|
2281
|
+
pub minor_version: U16<LE>,
|
2282
|
+
pub global_flags_clear: U32<LE>,
|
2283
|
+
pub global_flags_set: U32<LE>,
|
2284
|
+
pub critical_section_default_timeout: U32<LE>,
|
2285
|
+
pub de_commit_free_block_threshold: U32<LE>,
|
2286
|
+
pub de_commit_total_free_threshold: U32<LE>,
|
2287
|
+
/// VA
|
2288
|
+
pub lock_prefix_table: U32<LE>,
|
2289
|
+
pub maximum_allocation_size: U32<LE>,
|
2290
|
+
pub virtual_memory_threshold: U32<LE>,
|
2291
|
+
pub process_heap_flags: U32<LE>,
|
2292
|
+
pub process_affinity_mask: U32<LE>,
|
2293
|
+
pub csd_version: U16<LE>,
|
2294
|
+
pub dependent_load_flags: U16<LE>,
|
2295
|
+
/// VA
|
2296
|
+
pub edit_list: U32<LE>,
|
2297
|
+
/// VA
|
2298
|
+
pub security_cookie: U32<LE>,
|
2299
|
+
/// VA
|
2300
|
+
pub sehandler_table: U32<LE>,
|
2301
|
+
pub sehandler_count: U32<LE>,
|
2302
|
+
/// VA
|
2303
|
+
pub guard_cf_check_function_pointer: U32<LE>,
|
2304
|
+
/// VA
|
2305
|
+
pub guard_cf_dispatch_function_pointer: U32<LE>,
|
2306
|
+
/// VA
|
2307
|
+
pub guard_cf_function_table: U32<LE>,
|
2308
|
+
pub guard_cf_function_count: U32<LE>,
|
2309
|
+
pub guard_flags: U32<LE>,
|
2310
|
+
pub code_integrity: ImageLoadConfigCodeIntegrity,
|
2311
|
+
/// VA
|
2312
|
+
pub guard_address_taken_iat_entry_table: U32<LE>,
|
2313
|
+
pub guard_address_taken_iat_entry_count: U32<LE>,
|
2314
|
+
/// VA
|
2315
|
+
pub guard_long_jump_target_table: U32<LE>,
|
2316
|
+
pub guard_long_jump_target_count: U32<LE>,
|
2317
|
+
/// VA
|
2318
|
+
pub dynamic_value_reloc_table: U32<LE>,
|
2319
|
+
pub chpe_metadata_pointer: U32<LE>,
|
2320
|
+
/// VA
|
2321
|
+
pub guard_rf_failure_routine: U32<LE>,
|
2322
|
+
/// VA
|
2323
|
+
pub guard_rf_failure_routine_function_pointer: U32<LE>,
|
2324
|
+
pub dynamic_value_reloc_table_offset: U32<LE>,
|
2325
|
+
pub dynamic_value_reloc_table_section: U16<LE>,
|
2326
|
+
pub reserved2: U16<LE>,
|
2327
|
+
/// VA
|
2328
|
+
pub guard_rf_verify_stack_pointer_function_pointer: U32<LE>,
|
2329
|
+
pub hot_patch_table_offset: U32<LE>,
|
2330
|
+
pub reserved3: U32<LE>,
|
2331
|
+
/// VA
|
2332
|
+
pub enclave_configuration_pointer: U32<LE>,
|
2333
|
+
/// VA
|
2334
|
+
pub volatile_metadata_pointer: U32<LE>,
|
2335
|
+
}
|
2336
|
+
|
2337
|
+
#[derive(Debug, Clone, Copy)]
|
2338
|
+
#[repr(C)]
|
2339
|
+
pub struct ImageLoadConfigDirectory64 {
|
2340
|
+
pub size: U32<LE>,
|
2341
|
+
pub time_date_stamp: U32<LE>,
|
2342
|
+
pub major_version: U16<LE>,
|
2343
|
+
pub minor_version: U16<LE>,
|
2344
|
+
pub global_flags_clear: U32<LE>,
|
2345
|
+
pub global_flags_set: U32<LE>,
|
2346
|
+
pub critical_section_default_timeout: U32<LE>,
|
2347
|
+
pub de_commit_free_block_threshold: U64<LE>,
|
2348
|
+
pub de_commit_total_free_threshold: U64<LE>,
|
2349
|
+
/// VA
|
2350
|
+
pub lock_prefix_table: U64<LE>,
|
2351
|
+
pub maximum_allocation_size: U64<LE>,
|
2352
|
+
pub virtual_memory_threshold: U64<LE>,
|
2353
|
+
pub process_affinity_mask: U64<LE>,
|
2354
|
+
pub process_heap_flags: U32<LE>,
|
2355
|
+
pub csd_version: U16<LE>,
|
2356
|
+
pub dependent_load_flags: U16<LE>,
|
2357
|
+
/// VA
|
2358
|
+
pub edit_list: U64<LE>,
|
2359
|
+
/// VA
|
2360
|
+
pub security_cookie: U64<LE>,
|
2361
|
+
/// VA
|
2362
|
+
pub sehandler_table: U64<LE>,
|
2363
|
+
pub sehandler_count: U64<LE>,
|
2364
|
+
/// VA
|
2365
|
+
pub guard_cf_check_function_pointer: U64<LE>,
|
2366
|
+
/// VA
|
2367
|
+
pub guard_cf_dispatch_function_pointer: U64<LE>,
|
2368
|
+
/// VA
|
2369
|
+
pub guard_cf_function_table: U64<LE>,
|
2370
|
+
pub guard_cf_function_count: U64<LE>,
|
2371
|
+
pub guard_flags: U32<LE>,
|
2372
|
+
pub code_integrity: ImageLoadConfigCodeIntegrity,
|
2373
|
+
/// VA
|
2374
|
+
pub guard_address_taken_iat_entry_table: U64<LE>,
|
2375
|
+
pub guard_address_taken_iat_entry_count: U64<LE>,
|
2376
|
+
/// VA
|
2377
|
+
pub guard_long_jump_target_table: U64<LE>,
|
2378
|
+
pub guard_long_jump_target_count: U64<LE>,
|
2379
|
+
/// VA
|
2380
|
+
pub dynamic_value_reloc_table: U64<LE>,
|
2381
|
+
/// VA
|
2382
|
+
pub chpe_metadata_pointer: U64<LE>,
|
2383
|
+
/// VA
|
2384
|
+
pub guard_rf_failure_routine: U64<LE>,
|
2385
|
+
/// VA
|
2386
|
+
pub guard_rf_failure_routine_function_pointer: U64<LE>,
|
2387
|
+
pub dynamic_value_reloc_table_offset: U32<LE>,
|
2388
|
+
pub dynamic_value_reloc_table_section: U16<LE>,
|
2389
|
+
pub reserved2: U16<LE>,
|
2390
|
+
/// VA
|
2391
|
+
pub guard_rf_verify_stack_pointer_function_pointer: U64<LE>,
|
2392
|
+
pub hot_patch_table_offset: U32<LE>,
|
2393
|
+
pub reserved3: U32<LE>,
|
2394
|
+
/// VA
|
2395
|
+
pub enclave_configuration_pointer: U64<LE>,
|
2396
|
+
/// VA
|
2397
|
+
pub volatile_metadata_pointer: U64<LE>,
|
2398
|
+
}
|
2399
|
+
|
2400
|
+
#[derive(Debug, Clone, Copy)]
|
2401
|
+
#[repr(C)]
|
2402
|
+
pub struct ImageHotPatchInfo {
|
2403
|
+
pub version: U32<LE>,
|
2404
|
+
pub size: U32<LE>,
|
2405
|
+
pub sequence_number: U32<LE>,
|
2406
|
+
pub base_image_list: U32<LE>,
|
2407
|
+
pub base_image_count: U32<LE>,
|
2408
|
+
/// Version 2 and later
|
2409
|
+
pub buffer_offset: U32<LE>,
|
2410
|
+
/// Version 3 and later
|
2411
|
+
pub extra_patch_size: U32<LE>,
|
2412
|
+
}
|
2413
|
+
|
2414
|
+
#[derive(Debug, Clone, Copy)]
|
2415
|
+
#[repr(C)]
|
2416
|
+
pub struct ImageHotPatchBase {
|
2417
|
+
pub sequence_number: U32<LE>,
|
2418
|
+
pub flags: U32<LE>,
|
2419
|
+
pub original_time_date_stamp: U32<LE>,
|
2420
|
+
pub original_check_sum: U32<LE>,
|
2421
|
+
pub code_integrity_info: U32<LE>,
|
2422
|
+
pub code_integrity_size: U32<LE>,
|
2423
|
+
pub patch_table: U32<LE>,
|
2424
|
+
/// Version 2 and later
|
2425
|
+
pub buffer_offset: U32<LE>,
|
2426
|
+
}
|
2427
|
+
|
2428
|
+
#[derive(Debug, Clone, Copy)]
|
2429
|
+
#[repr(C)]
|
2430
|
+
pub struct ImageHotPatchHashes {
|
2431
|
+
pub sha256: [u8; 32],
|
2432
|
+
pub sha1: [u8; 20],
|
2433
|
+
}
|
2434
|
+
|
2435
|
+
pub const IMAGE_HOT_PATCH_BASE_OBLIGATORY: u32 = 0x0000_0001;
|
2436
|
+
pub const IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK: u32 = 0x0000_0002;
|
2437
|
+
|
2438
|
+
pub const IMAGE_HOT_PATCH_CHUNK_INVERSE: u32 = 0x8000_0000;
|
2439
|
+
pub const IMAGE_HOT_PATCH_CHUNK_OBLIGATORY: u32 = 0x4000_0000;
|
2440
|
+
pub const IMAGE_HOT_PATCH_CHUNK_RESERVED: u32 = 0x3FF0_3000;
|
2441
|
+
pub const IMAGE_HOT_PATCH_CHUNK_TYPE: u32 = 0x000F_C000;
|
2442
|
+
pub const IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA: u32 = 0x0000_8000;
|
2443
|
+
pub const IMAGE_HOT_PATCH_CHUNK_TARGET_RVA: u32 = 0x0000_4000;
|
2444
|
+
pub const IMAGE_HOT_PATCH_CHUNK_SIZE: u32 = 0x0000_0FFF;
|
2445
|
+
|
2446
|
+
pub const IMAGE_HOT_PATCH_NONE: u32 = 0x0000_0000;
|
2447
|
+
pub const IMAGE_HOT_PATCH_FUNCTION: u32 = 0x0001_C000;
|
2448
|
+
pub const IMAGE_HOT_PATCH_ABSOLUTE: u32 = 0x0002_C000;
|
2449
|
+
pub const IMAGE_HOT_PATCH_REL32: u32 = 0x0003_C000;
|
2450
|
+
pub const IMAGE_HOT_PATCH_CALL_TARGET: u32 = 0x0004_4000;
|
2451
|
+
pub const IMAGE_HOT_PATCH_INDIRECT: u32 = 0x0005_C000;
|
2452
|
+
pub const IMAGE_HOT_PATCH_NO_CALL_TARGET: u32 = 0x0006_4000;
|
2453
|
+
pub const IMAGE_HOT_PATCH_DYNAMIC_VALUE: u32 = 0x0007_8000;
|
2454
|
+
|
2455
|
+
/// Module performs control flow integrity checks using system-supplied support
|
2456
|
+
pub const IMAGE_GUARD_CF_INSTRUMENTED: u32 = 0x0000_0100;
|
2457
|
+
/// Module performs control flow and write integrity checks
|
2458
|
+
pub const IMAGE_GUARD_CFW_INSTRUMENTED: u32 = 0x0000_0200;
|
2459
|
+
/// Module contains valid control flow target metadata
|
2460
|
+
pub const IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT: u32 = 0x0000_0400;
|
2461
|
+
/// Module does not make use of the /GS security cookie
|
2462
|
+
pub const IMAGE_GUARD_SECURITY_COOKIE_UNUSED: u32 = 0x0000_0800;
|
2463
|
+
/// Module supports read only delay load IAT
|
2464
|
+
pub const IMAGE_GUARD_PROTECT_DELAYLOAD_IAT: u32 = 0x0000_1000;
|
2465
|
+
/// Delayload import table in its own .didat section (with nothing else in it) that can be freely reprotected
|
2466
|
+
pub const IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION: u32 = 0x0000_2000;
|
2467
|
+
/// Module contains suppressed export information.
|
2468
|
+
///
|
2469
|
+
/// This also infers that the address taken taken IAT table is also present in the load config.
|
2470
|
+
pub const IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT: u32 = 0x0000_4000;
|
2471
|
+
/// Module enables suppression of exports
|
2472
|
+
pub const IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION: u32 = 0x0000_8000;
|
2473
|
+
/// Module contains longjmp target information
|
2474
|
+
pub const IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT: u32 = 0x0001_0000;
|
2475
|
+
/// Module contains return flow instrumentation and metadata
|
2476
|
+
pub const IMAGE_GUARD_RF_INSTRUMENTED: u32 = 0x0002_0000;
|
2477
|
+
/// Module requests that the OS enable return flow protection
|
2478
|
+
pub const IMAGE_GUARD_RF_ENABLE: u32 = 0x0004_0000;
|
2479
|
+
/// Module requests that the OS enable return flow protection in strict mode
|
2480
|
+
pub const IMAGE_GUARD_RF_STRICT: u32 = 0x0008_0000;
|
2481
|
+
/// Module was built with retpoline support
|
2482
|
+
pub const IMAGE_GUARD_RETPOLINE_PRESENT: u32 = 0x0010_0000;
|
2483
|
+
|
2484
|
+
/// Stride of Guard CF function table encoded in these bits (additional count of bytes per element)
|
2485
|
+
pub const IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK: u32 = 0xF000_0000;
|
2486
|
+
/// Shift to right-justify Guard CF function table stride
|
2487
|
+
pub const IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT: u32 = 28;
|
2488
|
+
|
2489
|
+
//
|
2490
|
+
// GFIDS table entry flags.
|
2491
|
+
//
|
2492
|
+
|
2493
|
+
/// The containing GFID entry is suppressed
|
2494
|
+
pub const IMAGE_GUARD_FLAG_FID_SUPPRESSED: u16 = 0x01;
|
2495
|
+
/// The containing GFID entry is export suppressed
|
2496
|
+
pub const IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED: u16 = 0x02;
|
2497
|
+
|
2498
|
+
//
|
2499
|
+
// WIN CE Exception table format
|
2500
|
+
//
|
2501
|
+
|
2502
|
+
//
|
2503
|
+
// Function table entry format. Function table is pointed to by the
|
2504
|
+
// IMAGE_DIRECTORY_ENTRY_EXCEPTION directory entry.
|
2505
|
+
//
|
2506
|
+
|
2507
|
+
/*
|
2508
|
+
// TODO? bitfields
|
2509
|
+
#[derive(Debug, Clone, Copy)]
|
2510
|
+
#[repr(C)]
|
2511
|
+
pub struct ImageCeRuntimeFunctionEntry {
|
2512
|
+
pub func_start: U32<LE>,
|
2513
|
+
DWORD PrologLen : 8;
|
2514
|
+
DWORD FuncLen : 22;
|
2515
|
+
DWORD ThirtyTwoBit : 1;
|
2516
|
+
DWORD ExceptionFlag : 1;
|
2517
|
+
}
|
2518
|
+
*/
|
2519
|
+
|
2520
|
+
#[derive(Debug, Clone, Copy)]
|
2521
|
+
#[repr(C)]
|
2522
|
+
pub struct ImageArmRuntimeFunctionEntry {
|
2523
|
+
pub begin_address: U32<LE>,
|
2524
|
+
pub unwind_data: U32<LE>,
|
2525
|
+
}
|
2526
|
+
|
2527
|
+
#[derive(Debug, Clone, Copy)]
|
2528
|
+
#[repr(C)]
|
2529
|
+
pub struct ImageArm64RuntimeFunctionEntry {
|
2530
|
+
pub begin_address: U32<LE>,
|
2531
|
+
pub unwind_data: U32<LE>,
|
2532
|
+
}
|
2533
|
+
|
2534
|
+
#[derive(Debug, Clone, Copy)]
|
2535
|
+
#[repr(C)]
|
2536
|
+
pub struct ImageAlpha64RuntimeFunctionEntry {
|
2537
|
+
pub begin_address: U64<LE>,
|
2538
|
+
pub end_address: U64<LE>,
|
2539
|
+
pub exception_handler: U64<LE>,
|
2540
|
+
pub handler_data: U64<LE>,
|
2541
|
+
pub prolog_end_address: U64<LE>,
|
2542
|
+
}
|
2543
|
+
|
2544
|
+
#[derive(Debug, Clone, Copy)]
|
2545
|
+
#[repr(C)]
|
2546
|
+
pub struct ImageAlphaRuntimeFunctionEntry {
|
2547
|
+
pub begin_address: U32<LE>,
|
2548
|
+
pub end_address: U32<LE>,
|
2549
|
+
pub exception_handler: U32<LE>,
|
2550
|
+
pub handler_data: U32<LE>,
|
2551
|
+
pub prolog_end_address: U32<LE>,
|
2552
|
+
}
|
2553
|
+
|
2554
|
+
#[derive(Debug, Clone, Copy)]
|
2555
|
+
#[repr(C)]
|
2556
|
+
pub struct ImageRuntimeFunctionEntry {
|
2557
|
+
pub begin_address: U32<LE>,
|
2558
|
+
pub end_address: U32<LE>,
|
2559
|
+
pub unwind_info_address_or_data: U32<LE>,
|
2560
|
+
}
|
2561
|
+
|
2562
|
+
//
|
2563
|
+
// Software enclave information
|
2564
|
+
//
|
2565
|
+
|
2566
|
+
pub const IMAGE_ENCLAVE_LONG_ID_LENGTH: usize = 32;
|
2567
|
+
pub const IMAGE_ENCLAVE_SHORT_ID_LENGTH: usize = 16;
|
2568
|
+
|
2569
|
+
#[derive(Debug, Clone, Copy)]
|
2570
|
+
#[repr(C)]
|
2571
|
+
pub struct ImageEnclaveConfig32 {
|
2572
|
+
pub size: U32<LE>,
|
2573
|
+
pub minimum_required_config_size: U32<LE>,
|
2574
|
+
pub policy_flags: U32<LE>,
|
2575
|
+
pub number_of_imports: U32<LE>,
|
2576
|
+
pub import_list: U32<LE>,
|
2577
|
+
pub import_entry_size: U32<LE>,
|
2578
|
+
pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2579
|
+
pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2580
|
+
pub image_version: U32<LE>,
|
2581
|
+
pub security_version: U32<LE>,
|
2582
|
+
pub enclave_size: U32<LE>,
|
2583
|
+
pub number_of_threads: U32<LE>,
|
2584
|
+
pub enclave_flags: U32<LE>,
|
2585
|
+
}
|
2586
|
+
|
2587
|
+
#[derive(Debug, Clone, Copy)]
|
2588
|
+
#[repr(C)]
|
2589
|
+
pub struct ImageEnclaveConfig64 {
|
2590
|
+
pub size: U32<LE>,
|
2591
|
+
pub minimum_required_config_size: U32<LE>,
|
2592
|
+
pub policy_flags: U32<LE>,
|
2593
|
+
pub number_of_imports: U32<LE>,
|
2594
|
+
pub import_list: U32<LE>,
|
2595
|
+
pub import_entry_size: U32<LE>,
|
2596
|
+
pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2597
|
+
pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2598
|
+
pub image_version: U32<LE>,
|
2599
|
+
pub security_version: U32<LE>,
|
2600
|
+
pub enclave_size: U64<LE>,
|
2601
|
+
pub number_of_threads: U32<LE>,
|
2602
|
+
pub enclave_flags: U32<LE>,
|
2603
|
+
}
|
2604
|
+
|
2605
|
+
//pub const IMAGE_ENCLAVE_MINIMUM_CONFIG_SIZE: usize = FIELD_OFFSET(IMAGE_ENCLAVE_CONFIG, EnclaveFlags);
|
2606
|
+
|
2607
|
+
pub const IMAGE_ENCLAVE_POLICY_DEBUGGABLE: u32 = 0x0000_0001;
|
2608
|
+
|
2609
|
+
pub const IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE: u32 = 0x0000_0001;
|
2610
|
+
|
2611
|
+
#[derive(Debug, Clone, Copy)]
|
2612
|
+
#[repr(C)]
|
2613
|
+
pub struct ImageEnclaveImport {
|
2614
|
+
pub match_type: U32<LE>,
|
2615
|
+
pub minimum_security_version: U32<LE>,
|
2616
|
+
pub unique_or_author_id: [u8; IMAGE_ENCLAVE_LONG_ID_LENGTH],
|
2617
|
+
pub family_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2618
|
+
pub image_id: [u8; IMAGE_ENCLAVE_SHORT_ID_LENGTH],
|
2619
|
+
pub import_name: U32<LE>,
|
2620
|
+
pub reserved: U32<LE>,
|
2621
|
+
}
|
2622
|
+
|
2623
|
+
pub const IMAGE_ENCLAVE_IMPORT_MATCH_NONE: u32 = 0x0000_0000;
|
2624
|
+
pub const IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID: u32 = 0x0000_0001;
|
2625
|
+
pub const IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID: u32 = 0x0000_0002;
|
2626
|
+
pub const IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID: u32 = 0x0000_0003;
|
2627
|
+
pub const IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID: u32 = 0x0000_0004;
|
2628
|
+
|
2629
|
+
//
|
2630
|
+
// Debug Format
|
2631
|
+
//
|
2632
|
+
|
2633
|
+
#[derive(Debug, Clone, Copy)]
|
2634
|
+
#[repr(C)]
|
2635
|
+
pub struct ImageDebugDirectory {
|
2636
|
+
pub characteristics: U32<LE>,
|
2637
|
+
pub time_date_stamp: U32<LE>,
|
2638
|
+
pub major_version: U16<LE>,
|
2639
|
+
pub minor_version: U16<LE>,
|
2640
|
+
pub typ: U32<LE>,
|
2641
|
+
pub size_of_data: U32<LE>,
|
2642
|
+
pub address_of_raw_data: U32<LE>,
|
2643
|
+
pub pointer_to_raw_data: U32<LE>,
|
2644
|
+
}
|
2645
|
+
|
2646
|
+
pub const IMAGE_DEBUG_TYPE_UNKNOWN: u32 = 0;
|
2647
|
+
pub const IMAGE_DEBUG_TYPE_COFF: u32 = 1;
|
2648
|
+
pub const IMAGE_DEBUG_TYPE_CODEVIEW: u32 = 2;
|
2649
|
+
pub const IMAGE_DEBUG_TYPE_FPO: u32 = 3;
|
2650
|
+
pub const IMAGE_DEBUG_TYPE_MISC: u32 = 4;
|
2651
|
+
pub const IMAGE_DEBUG_TYPE_EXCEPTION: u32 = 5;
|
2652
|
+
pub const IMAGE_DEBUG_TYPE_FIXUP: u32 = 6;
|
2653
|
+
pub const IMAGE_DEBUG_TYPE_OMAP_TO_SRC: u32 = 7;
|
2654
|
+
pub const IMAGE_DEBUG_TYPE_OMAP_FROM_SRC: u32 = 8;
|
2655
|
+
pub const IMAGE_DEBUG_TYPE_BORLAND: u32 = 9;
|
2656
|
+
pub const IMAGE_DEBUG_TYPE_RESERVED10: u32 = 10;
|
2657
|
+
pub const IMAGE_DEBUG_TYPE_CLSID: u32 = 11;
|
2658
|
+
pub const IMAGE_DEBUG_TYPE_VC_FEATURE: u32 = 12;
|
2659
|
+
pub const IMAGE_DEBUG_TYPE_POGO: u32 = 13;
|
2660
|
+
pub const IMAGE_DEBUG_TYPE_ILTCG: u32 = 14;
|
2661
|
+
pub const IMAGE_DEBUG_TYPE_MPX: u32 = 15;
|
2662
|
+
pub const IMAGE_DEBUG_TYPE_REPRO: u32 = 16;
|
2663
|
+
|
2664
|
+
#[derive(Debug, Clone, Copy)]
|
2665
|
+
#[repr(C)]
|
2666
|
+
pub struct ImageCoffSymbolsHeader {
|
2667
|
+
pub number_of_symbols: U32<LE>,
|
2668
|
+
pub lva_to_first_symbol: U32<LE>,
|
2669
|
+
pub number_of_linenumbers: U32<LE>,
|
2670
|
+
pub lva_to_first_linenumber: U32<LE>,
|
2671
|
+
pub rva_to_first_byte_of_code: U32<LE>,
|
2672
|
+
pub rva_to_last_byte_of_code: U32<LE>,
|
2673
|
+
pub rva_to_first_byte_of_data: U32<LE>,
|
2674
|
+
pub rva_to_last_byte_of_data: U32<LE>,
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
pub const FRAME_FPO: u16 = 0;
|
2678
|
+
pub const FRAME_TRAP: u16 = 1;
|
2679
|
+
pub const FRAME_TSS: u16 = 2;
|
2680
|
+
pub const FRAME_NONFPO: u16 = 3;
|
2681
|
+
|
2682
|
+
/*
|
2683
|
+
// TODO? bitfields
|
2684
|
+
#[derive(Debug, Clone, Copy)]
|
2685
|
+
#[repr(C)]
|
2686
|
+
pub struct FpoData {
|
2687
|
+
/// offset 1st byte of function code
|
2688
|
+
pub ul_off_start: U32<LE>,
|
2689
|
+
/// # bytes in function
|
2690
|
+
pub cb_proc_size: U32<LE>,
|
2691
|
+
/// # bytes in locals/4
|
2692
|
+
pub cdw_locals: U32<LE>,
|
2693
|
+
/// # bytes in params/4
|
2694
|
+
pub cdw_params: U16<LE>,
|
2695
|
+
/// # bytes in prolog
|
2696
|
+
WORD cbProlog : 8;
|
2697
|
+
/// # regs saved
|
2698
|
+
WORD cbRegs : 3;
|
2699
|
+
/// TRUE if SEH in func
|
2700
|
+
WORD fHasSEH : 1;
|
2701
|
+
/// TRUE if EBP has been allocated
|
2702
|
+
WORD fUseBP : 1;
|
2703
|
+
/// reserved for future use
|
2704
|
+
WORD reserved : 1;
|
2705
|
+
/// frame type
|
2706
|
+
WORD cbFrame : 2;
|
2707
|
+
}
|
2708
|
+
pub const SIZEOF_RFPO_DATA: usize = 16;
|
2709
|
+
*/
|
2710
|
+
|
2711
|
+
pub const IMAGE_DEBUG_MISC_EXENAME: u16 = 1;
|
2712
|
+
|
2713
|
+
#[derive(Debug, Clone, Copy)]
|
2714
|
+
#[repr(C)]
|
2715
|
+
pub struct ImageDebugMisc {
|
2716
|
+
/// type of misc data, see defines
|
2717
|
+
pub data_type: U32<LE>,
|
2718
|
+
/// total length of record, rounded to four byte multiple.
|
2719
|
+
pub length: U32<LE>,
|
2720
|
+
/// TRUE if data is unicode string
|
2721
|
+
pub unicode: u8,
|
2722
|
+
pub reserved: [u8; 3],
|
2723
|
+
// Actual data
|
2724
|
+
//pub data: [u8; 1],
|
2725
|
+
}
|
2726
|
+
|
2727
|
+
//
|
2728
|
+
// Function table extracted from MIPS/ALPHA/IA64 images. Does not contain
|
2729
|
+
// information needed only for runtime support. Just those fields for
|
2730
|
+
// each entry needed by a debugger.
|
2731
|
+
//
|
2732
|
+
|
2733
|
+
#[derive(Debug, Clone, Copy)]
|
2734
|
+
#[repr(C)]
|
2735
|
+
pub struct ImageFunctionEntry {
|
2736
|
+
pub starting_address: U32<LE>,
|
2737
|
+
pub ending_address: U32<LE>,
|
2738
|
+
pub end_of_prologue: U32<LE>,
|
2739
|
+
}
|
2740
|
+
|
2741
|
+
#[derive(Debug, Clone, Copy)]
|
2742
|
+
#[repr(C)]
|
2743
|
+
pub struct ImageFunctionEntry64 {
|
2744
|
+
pub starting_address: U64<LE>,
|
2745
|
+
pub ending_address: U64<LE>,
|
2746
|
+
pub end_of_prologue_or_unwind_info_address: U64<LE>,
|
2747
|
+
}
|
2748
|
+
|
2749
|
+
//
|
2750
|
+
// Debugging information can be stripped from an image file and placed
|
2751
|
+
// in a separate .DBG file, whose file name part is the same as the
|
2752
|
+
// image file name part (e.g. symbols for CMD.EXE could be stripped
|
2753
|
+
// and placed in CMD.DBG). This is indicated by the IMAGE_FILE_DEBUG_STRIPPED
|
2754
|
+
// flag in the Characteristics field of the file header. The beginning of
|
2755
|
+
// the .DBG file contains the following structure which captures certain
|
2756
|
+
// information from the image file. This allows a debug to proceed even if
|
2757
|
+
// the original image file is not accessible. This header is followed by
|
2758
|
+
// zero of more IMAGE_SECTION_HEADER structures, followed by zero or more
|
2759
|
+
// IMAGE_DEBUG_DIRECTORY structures. The latter structures and those in
|
2760
|
+
// the image file contain file offsets relative to the beginning of the
|
2761
|
+
// .DBG file.
|
2762
|
+
//
|
2763
|
+
// If symbols have been stripped from an image, the IMAGE_DEBUG_MISC structure
|
2764
|
+
// is left in the image file, but not mapped. This allows a debugger to
|
2765
|
+
// compute the name of the .DBG file, from the name of the image in the
|
2766
|
+
// IMAGE_DEBUG_MISC structure.
|
2767
|
+
//
|
2768
|
+
|
2769
|
+
#[derive(Debug, Clone, Copy)]
|
2770
|
+
#[repr(C)]
|
2771
|
+
pub struct ImageSeparateDebugHeader {
|
2772
|
+
pub signature: U16<LE>,
|
2773
|
+
pub flags: U16<LE>,
|
2774
|
+
pub machine: U16<LE>,
|
2775
|
+
pub characteristics: U16<LE>,
|
2776
|
+
pub time_date_stamp: U32<LE>,
|
2777
|
+
pub check_sum: U32<LE>,
|
2778
|
+
pub image_base: U32<LE>,
|
2779
|
+
pub size_of_image: U32<LE>,
|
2780
|
+
pub number_of_sections: U32<LE>,
|
2781
|
+
pub exported_names_size: U32<LE>,
|
2782
|
+
pub debug_directory_size: U32<LE>,
|
2783
|
+
pub section_alignment: U32<LE>,
|
2784
|
+
pub reserved: [U32<LE>; 2],
|
2785
|
+
}
|
2786
|
+
|
2787
|
+
#[derive(Debug, Clone, Copy)]
|
2788
|
+
#[repr(C)]
|
2789
|
+
pub struct NonPagedDebugInfo {
|
2790
|
+
pub signature: U16<LE>,
|
2791
|
+
pub flags: U16<LE>,
|
2792
|
+
pub size: U32<LE>,
|
2793
|
+
pub machine: U16<LE>,
|
2794
|
+
pub characteristics: U16<LE>,
|
2795
|
+
pub time_date_stamp: U32<LE>,
|
2796
|
+
pub check_sum: U32<LE>,
|
2797
|
+
pub size_of_image: U32<LE>,
|
2798
|
+
pub image_base: U64<LE>,
|
2799
|
+
//debug_directory_size
|
2800
|
+
//ImageDebugDirectory
|
2801
|
+
}
|
2802
|
+
|
2803
|
+
pub const IMAGE_SEPARATE_DEBUG_SIGNATURE: u16 = 0x4944;
|
2804
|
+
pub const NON_PAGED_DEBUG_SIGNATURE: u16 = 0x494E;
|
2805
|
+
|
2806
|
+
pub const IMAGE_SEPARATE_DEBUG_FLAGS_MASK: u16 = 0x8000;
|
2807
|
+
/// when DBG was updated, the old checksum didn't match.
|
2808
|
+
pub const IMAGE_SEPARATE_DEBUG_MISMATCH: u16 = 0x8000;
|
2809
|
+
|
2810
|
+
//
|
2811
|
+
// The .arch section is made up of headers, each describing an amask position/value
|
2812
|
+
// pointing to an array of IMAGE_ARCHITECTURE_ENTRY's. Each "array" (both the header
|
2813
|
+
// and entry arrays) are terminiated by a quadword of 0xffffffffL.
|
2814
|
+
//
|
2815
|
+
// NOTE: There may be quadwords of 0 sprinkled around and must be skipped.
|
2816
|
+
//
|
2817
|
+
|
2818
|
+
/*
|
2819
|
+
// TODO? bitfields
|
2820
|
+
#[derive(Debug, Clone, Copy)]
|
2821
|
+
#[repr(C)]
|
2822
|
+
pub struct ImageArchitectureHeader {
|
2823
|
+
/// 1 -> code section depends on mask bit
|
2824
|
+
/// 0 -> new instruction depends on mask bit
|
2825
|
+
unsigned int AmaskValue: 1;
|
2826
|
+
/// MBZ
|
2827
|
+
int :7;
|
2828
|
+
/// Amask bit in question for this fixup
|
2829
|
+
unsigned int AmaskShift: 8;
|
2830
|
+
/// MBZ
|
2831
|
+
int :16;
|
2832
|
+
/// RVA into .arch section to array of ARCHITECTURE_ENTRY's
|
2833
|
+
pub first_entry_rva: U32<LE>,
|
2834
|
+
}
|
2835
|
+
*/
|
2836
|
+
|
2837
|
+
#[derive(Debug, Clone, Copy)]
|
2838
|
+
#[repr(C)]
|
2839
|
+
pub struct ImageArchitectureEntry {
|
2840
|
+
/// RVA of instruction to fixup
|
2841
|
+
pub fixup_inst_rva: U32<LE>,
|
2842
|
+
/// fixup instruction (see alphaops.h)
|
2843
|
+
pub new_inst: U32<LE>,
|
2844
|
+
}
|
2845
|
+
|
2846
|
+
// The following structure defines the new import object. Note the values of the first two fields,
|
2847
|
+
// which must be set as stated in order to differentiate old and new import members.
|
2848
|
+
// Following this structure, the linker emits two null-terminated strings used to recreate the
|
2849
|
+
// import at the time of use. The first string is the import's name, the second is the dll's name.
|
2850
|
+
|
2851
|
+
pub const IMPORT_OBJECT_HDR_SIG2: u16 = 0xffff;
|
2852
|
+
|
2853
|
+
#[derive(Debug, Clone, Copy)]
|
2854
|
+
#[repr(C)]
|
2855
|
+
pub struct ImportObjectHeader {
|
2856
|
+
/// Must be IMAGE_FILE_MACHINE_UNKNOWN
|
2857
|
+
pub sig1: U16<LE>,
|
2858
|
+
/// Must be IMPORT_OBJECT_HDR_SIG2.
|
2859
|
+
pub sig2: U16<LE>,
|
2860
|
+
pub version: U16<LE>,
|
2861
|
+
pub machine: U16<LE>,
|
2862
|
+
/// Time/date stamp
|
2863
|
+
pub time_date_stamp: U32<LE>,
|
2864
|
+
/// particularly useful for incremental links
|
2865
|
+
pub size_of_data: U32<LE>,
|
2866
|
+
|
2867
|
+
/// if grf & IMPORT_OBJECT_ORDINAL
|
2868
|
+
pub ordinal_or_hint: U16<LE>,
|
2869
|
+
|
2870
|
+
// WORD Type : 2;
|
2871
|
+
// WORD NameType : 3;
|
2872
|
+
// WORD Reserved : 11;
|
2873
|
+
pub name_type: U16<LE>,
|
2874
|
+
}
|
2875
|
+
|
2876
|
+
pub const IMPORT_OBJECT_TYPE_MASK: u16 = 0b11;
|
2877
|
+
pub const IMPORT_OBJECT_TYPE_SHIFT: u16 = 0;
|
2878
|
+
pub const IMPORT_OBJECT_CODE: u16 = 0;
|
2879
|
+
pub const IMPORT_OBJECT_DATA: u16 = 1;
|
2880
|
+
pub const IMPORT_OBJECT_CONST: u16 = 2;
|
2881
|
+
|
2882
|
+
pub const IMPORT_OBJECT_NAME_MASK: u16 = 0b111;
|
2883
|
+
pub const IMPORT_OBJECT_NAME_SHIFT: u16 = 2;
|
2884
|
+
/// Import by ordinal
|
2885
|
+
pub const IMPORT_OBJECT_ORDINAL: u16 = 0;
|
2886
|
+
/// Import name == public symbol name.
|
2887
|
+
pub const IMPORT_OBJECT_NAME: u16 = 1;
|
2888
|
+
/// Import name == public symbol name skipping leading ?, @, or optionally _.
|
2889
|
+
pub const IMPORT_OBJECT_NAME_NO_PREFIX: u16 = 2;
|
2890
|
+
/// Import name == public symbol name skipping leading ?, @, or optionally _ and truncating at first @.
|
2891
|
+
pub const IMPORT_OBJECT_NAME_UNDECORATE: u16 = 3;
|
2892
|
+
/// Import name == a name is explicitly provided after the DLL name.
|
2893
|
+
pub const IMPORT_OBJECT_NAME_EXPORTAS: u16 = 4;
|
2894
|
+
|
2895
|
+
// COM+ Header entry point flags.
|
2896
|
+
pub const COMIMAGE_FLAGS_ILONLY: u32 = 0x0000_0001;
|
2897
|
+
pub const COMIMAGE_FLAGS_32BITREQUIRED: u32 = 0x0000_0002;
|
2898
|
+
pub const COMIMAGE_FLAGS_IL_LIBRARY: u32 = 0x0000_0004;
|
2899
|
+
pub const COMIMAGE_FLAGS_STRONGNAMESIGNED: u32 = 0x0000_0008;
|
2900
|
+
pub const COMIMAGE_FLAGS_NATIVE_ENTRYPOINT: u32 = 0x0000_0010;
|
2901
|
+
pub const COMIMAGE_FLAGS_TRACKDEBUGDATA: u32 = 0x0001_0000;
|
2902
|
+
pub const COMIMAGE_FLAGS_32BITPREFERRED: u32 = 0x0002_0000;
|
2903
|
+
|
2904
|
+
// Version flags for image.
|
2905
|
+
pub const COR_VERSION_MAJOR_V2: u16 = 2;
|
2906
|
+
pub const COR_VERSION_MAJOR: u16 = COR_VERSION_MAJOR_V2;
|
2907
|
+
pub const COR_VERSION_MINOR: u16 = 5;
|
2908
|
+
pub const COR_DELETED_NAME_LENGTH: usize = 8;
|
2909
|
+
pub const COR_VTABLEGAP_NAME_LENGTH: usize = 8;
|
2910
|
+
|
2911
|
+
// Maximum size of a NativeType descriptor.
|
2912
|
+
pub const NATIVE_TYPE_MAX_CB: u16 = 1;
|
2913
|
+
pub const COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE: u16 = 0xFF;
|
2914
|
+
|
2915
|
+
// Consts for the MIH FLAGS
|
2916
|
+
pub const IMAGE_COR_MIH_METHODRVA: u16 = 0x01;
|
2917
|
+
pub const IMAGE_COR_MIH_EHRVA: u16 = 0x02;
|
2918
|
+
pub const IMAGE_COR_MIH_BASICBLOCK: u16 = 0x08;
|
2919
|
+
|
2920
|
+
// V-table constants
|
2921
|
+
/// V-table slots are 32-bits in size.
|
2922
|
+
pub const COR_VTABLE_32BIT: u16 = 0x01;
|
2923
|
+
/// V-table slots are 64-bits in size.
|
2924
|
+
pub const COR_VTABLE_64BIT: u16 = 0x02;
|
2925
|
+
/// If set, transition from unmanaged.
|
2926
|
+
pub const COR_VTABLE_FROM_UNMANAGED: u16 = 0x04;
|
2927
|
+
/// If set, transition from unmanaged with keeping the current appdomain.
|
2928
|
+
pub const COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN: u16 = 0x08;
|
2929
|
+
/// Call most derived method described by
|
2930
|
+
pub const COR_VTABLE_CALL_MOST_DERIVED: u16 = 0x10;
|
2931
|
+
|
2932
|
+
// EATJ constants
|
2933
|
+
/// Size of a jump thunk reserved range.
|
2934
|
+
pub const IMAGE_COR_EATJ_THUNK_SIZE: usize = 32;
|
2935
|
+
|
2936
|
+
// Max name lengths
|
2937
|
+
pub const MAX_CLASS_NAME: usize = 1024;
|
2938
|
+
pub const MAX_PACKAGE_NAME: usize = 1024;
|
2939
|
+
|
2940
|
+
// CLR 2.0 header structure.
|
2941
|
+
#[derive(Debug, Clone, Copy)]
|
2942
|
+
#[repr(C)]
|
2943
|
+
pub struct ImageCor20Header {
|
2944
|
+
// Header versioning
|
2945
|
+
pub cb: U32<LE>,
|
2946
|
+
pub major_runtime_version: U16<LE>,
|
2947
|
+
pub minor_runtime_version: U16<LE>,
|
2948
|
+
|
2949
|
+
// Symbol table and startup information
|
2950
|
+
pub meta_data: ImageDataDirectory,
|
2951
|
+
pub flags: U32<LE>,
|
2952
|
+
|
2953
|
+
// If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is not set, EntryPointToken represents a managed entrypoint.
|
2954
|
+
// If COMIMAGE_FLAGS_NATIVE_ENTRYPOINT is set, EntryPointRVA represents an RVA to a native entrypoint.
|
2955
|
+
pub entry_point_token_or_rva: U32<LE>,
|
2956
|
+
|
2957
|
+
// Binding information
|
2958
|
+
pub resources: ImageDataDirectory,
|
2959
|
+
pub strong_name_signature: ImageDataDirectory,
|
2960
|
+
|
2961
|
+
// Regular fixup and binding information
|
2962
|
+
pub code_manager_table: ImageDataDirectory,
|
2963
|
+
pub vtable_fixups: ImageDataDirectory,
|
2964
|
+
pub export_address_table_jumps: ImageDataDirectory,
|
2965
|
+
|
2966
|
+
// Precompiled image info (internal use only - set to zero)
|
2967
|
+
pub managed_native_header: ImageDataDirectory,
|
2968
|
+
}
|
2969
|
+
|
2970
|
+
unsafe_impl_pod!(
|
2971
|
+
ImageDosHeader,
|
2972
|
+
ImageOs2Header,
|
2973
|
+
ImageVxdHeader,
|
2974
|
+
ImageFileHeader,
|
2975
|
+
ImageDataDirectory,
|
2976
|
+
ImageOptionalHeader32,
|
2977
|
+
ImageRomOptionalHeader,
|
2978
|
+
ImageOptionalHeader64,
|
2979
|
+
ImageNtHeaders64,
|
2980
|
+
ImageNtHeaders32,
|
2981
|
+
ImageRomHeaders,
|
2982
|
+
Guid,
|
2983
|
+
AnonObjectHeader,
|
2984
|
+
AnonObjectHeaderV2,
|
2985
|
+
AnonObjectHeaderBigobj,
|
2986
|
+
ImageSectionHeader,
|
2987
|
+
ImageSymbol,
|
2988
|
+
ImageSymbolBytes,
|
2989
|
+
ImageSymbolEx,
|
2990
|
+
ImageSymbolExBytes,
|
2991
|
+
ImageAuxSymbolTokenDef,
|
2992
|
+
ImageAuxSymbolFunction,
|
2993
|
+
ImageAuxSymbolFunctionBeginEnd,
|
2994
|
+
ImageAuxSymbolWeak,
|
2995
|
+
ImageAuxSymbolSection,
|
2996
|
+
ImageAuxSymbolCrc,
|
2997
|
+
ImageRelocation,
|
2998
|
+
ImageLinenumber,
|
2999
|
+
ImageBaseRelocation,
|
3000
|
+
ImageArchiveMemberHeader,
|
3001
|
+
ImageExportDirectory,
|
3002
|
+
ImageImportByName,
|
3003
|
+
ImageThunkData64,
|
3004
|
+
ImageThunkData32,
|
3005
|
+
ImageTlsDirectory64,
|
3006
|
+
ImageTlsDirectory32,
|
3007
|
+
ImageImportDescriptor,
|
3008
|
+
ImageBoundImportDescriptor,
|
3009
|
+
ImageBoundForwarderRef,
|
3010
|
+
ImageDelayloadDescriptor,
|
3011
|
+
ImageResourceDirectory,
|
3012
|
+
ImageResourceDirectoryEntry,
|
3013
|
+
ImageResourceDirectoryString,
|
3014
|
+
ImageResourceDirStringU,
|
3015
|
+
ImageResourceDataEntry,
|
3016
|
+
ImageLoadConfigCodeIntegrity,
|
3017
|
+
ImageDynamicRelocationTable,
|
3018
|
+
ImageDynamicRelocation32,
|
3019
|
+
ImageDynamicRelocation64,
|
3020
|
+
ImageDynamicRelocation32V2,
|
3021
|
+
ImageDynamicRelocation64V2,
|
3022
|
+
ImagePrologueDynamicRelocationHeader,
|
3023
|
+
ImageEpilogueDynamicRelocationHeader,
|
3024
|
+
//ImageImportControlTransferDynamicRelocation,
|
3025
|
+
//ImageIndirControlTransferDynamicRelocation,
|
3026
|
+
//ImageSwitchtableBranchDynamicRelocation,
|
3027
|
+
ImageLoadConfigDirectory32,
|
3028
|
+
ImageLoadConfigDirectory64,
|
3029
|
+
ImageHotPatchInfo,
|
3030
|
+
ImageHotPatchBase,
|
3031
|
+
ImageHotPatchHashes,
|
3032
|
+
//ImageCeRuntimeFunctionEntry,
|
3033
|
+
ImageArmRuntimeFunctionEntry,
|
3034
|
+
ImageArm64RuntimeFunctionEntry,
|
3035
|
+
ImageAlpha64RuntimeFunctionEntry,
|
3036
|
+
ImageAlphaRuntimeFunctionEntry,
|
3037
|
+
ImageRuntimeFunctionEntry,
|
3038
|
+
ImageEnclaveConfig32,
|
3039
|
+
ImageEnclaveConfig64,
|
3040
|
+
ImageEnclaveImport,
|
3041
|
+
ImageDebugDirectory,
|
3042
|
+
ImageCoffSymbolsHeader,
|
3043
|
+
//FpoData,
|
3044
|
+
ImageDebugMisc,
|
3045
|
+
ImageFunctionEntry,
|
3046
|
+
ImageFunctionEntry64,
|
3047
|
+
ImageSeparateDebugHeader,
|
3048
|
+
NonPagedDebugInfo,
|
3049
|
+
//ImageArchitectureHeader,
|
3050
|
+
ImageArchitectureEntry,
|
3051
|
+
ImportObjectHeader,
|
3052
|
+
ImageCor20Header,
|
3053
|
+
MaskedRichHeaderEntry,
|
3054
|
+
);
|