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,1444 @@
|
|
1
|
+
//! [![github]](https://github.com/dtolnay/quote) [![crates-io]](https://crates.io/crates/quote) [![docs-rs]](https://docs.rs/quote)
|
2
|
+
//!
|
3
|
+
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
|
4
|
+
//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
|
5
|
+
//! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
|
6
|
+
//!
|
7
|
+
//! <br>
|
8
|
+
//!
|
9
|
+
//! This crate provides the [`quote!`] macro for turning Rust syntax tree data
|
10
|
+
//! structures into tokens of source code.
|
11
|
+
//!
|
12
|
+
//! [`quote!`]: macro.quote.html
|
13
|
+
//!
|
14
|
+
//! Procedural macros in Rust receive a stream of tokens as input, execute
|
15
|
+
//! arbitrary Rust code to determine how to manipulate those tokens, and produce
|
16
|
+
//! a stream of tokens to hand back to the compiler to compile into the caller's
|
17
|
+
//! crate. Quasi-quoting is a solution to one piece of that — producing
|
18
|
+
//! tokens to return to the compiler.
|
19
|
+
//!
|
20
|
+
//! The idea of quasi-quoting is that we write *code* that we treat as *data*.
|
21
|
+
//! Within the `quote!` macro, we can write what looks like code to our text
|
22
|
+
//! editor or IDE. We get all the benefits of the editor's brace matching,
|
23
|
+
//! syntax highlighting, indentation, and maybe autocompletion. But rather than
|
24
|
+
//! compiling that as code into the current crate, we can treat it as data, pass
|
25
|
+
//! it around, mutate it, and eventually hand it back to the compiler as tokens
|
26
|
+
//! to compile into the macro caller's crate.
|
27
|
+
//!
|
28
|
+
//! This crate is motivated by the procedural macro use case, but is a
|
29
|
+
//! general-purpose Rust quasi-quoting library and is not specific to procedural
|
30
|
+
//! macros.
|
31
|
+
//!
|
32
|
+
//! ```toml
|
33
|
+
//! [dependencies]
|
34
|
+
//! quote = "1.0"
|
35
|
+
//! ```
|
36
|
+
//!
|
37
|
+
//! <br>
|
38
|
+
//!
|
39
|
+
//! # Example
|
40
|
+
//!
|
41
|
+
//! The following quasi-quoted block of code is something you might find in [a]
|
42
|
+
//! procedural macro having to do with data structure serialization. The `#var`
|
43
|
+
//! syntax performs interpolation of runtime variables into the quoted tokens.
|
44
|
+
//! Check out the documentation of the [`quote!`] macro for more detail about
|
45
|
+
//! the syntax. See also the [`quote_spanned!`] macro which is important for
|
46
|
+
//! implementing hygienic procedural macros.
|
47
|
+
//!
|
48
|
+
//! [a]: https://serde.rs/
|
49
|
+
//! [`quote_spanned!`]: macro.quote_spanned.html
|
50
|
+
//!
|
51
|
+
//! ```
|
52
|
+
//! # use quote::quote;
|
53
|
+
//! #
|
54
|
+
//! # let generics = "";
|
55
|
+
//! # let where_clause = "";
|
56
|
+
//! # let field_ty = "";
|
57
|
+
//! # let item_ty = "";
|
58
|
+
//! # let path = "";
|
59
|
+
//! # let value = "";
|
60
|
+
//! #
|
61
|
+
//! let tokens = quote! {
|
62
|
+
//! struct SerializeWith #generics #where_clause {
|
63
|
+
//! value: &'a #field_ty,
|
64
|
+
//! phantom: core::marker::PhantomData<#item_ty>,
|
65
|
+
//! }
|
66
|
+
//!
|
67
|
+
//! impl #generics serde::Serialize for SerializeWith #generics #where_clause {
|
68
|
+
//! fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
69
|
+
//! where
|
70
|
+
//! S: serde::Serializer,
|
71
|
+
//! {
|
72
|
+
//! #path(self.value, serializer)
|
73
|
+
//! }
|
74
|
+
//! }
|
75
|
+
//!
|
76
|
+
//! SerializeWith {
|
77
|
+
//! value: #value,
|
78
|
+
//! phantom: core::marker::PhantomData::<#item_ty>,
|
79
|
+
//! }
|
80
|
+
//! };
|
81
|
+
//! ```
|
82
|
+
//!
|
83
|
+
//! <br>
|
84
|
+
//!
|
85
|
+
//! # Non-macro code generators
|
86
|
+
//!
|
87
|
+
//! When using `quote` in a build.rs or main.rs and writing the output out to a
|
88
|
+
//! file, consider having the code generator pass the tokens through
|
89
|
+
//! [prettyplease] before writing. This way if an error occurs in the generated
|
90
|
+
//! code it is convenient for a human to read and debug.
|
91
|
+
//!
|
92
|
+
//! [prettyplease]: https://github.com/dtolnay/prettyplease
|
93
|
+
|
94
|
+
// Quote types in rustdoc of other crates get linked to here.
|
95
|
+
#![doc(html_root_url = "https://docs.rs/quote/1.0.33")]
|
96
|
+
#![allow(
|
97
|
+
clippy::doc_markdown,
|
98
|
+
clippy::missing_errors_doc,
|
99
|
+
clippy::missing_panics_doc,
|
100
|
+
clippy::module_name_repetitions,
|
101
|
+
// false positive https://github.com/rust-lang/rust-clippy/issues/6983
|
102
|
+
clippy::wrong_self_convention,
|
103
|
+
)]
|
104
|
+
|
105
|
+
extern crate alloc;
|
106
|
+
|
107
|
+
#[cfg(feature = "proc-macro")]
|
108
|
+
extern crate proc_macro;
|
109
|
+
|
110
|
+
mod ext;
|
111
|
+
mod format;
|
112
|
+
mod ident_fragment;
|
113
|
+
mod to_tokens;
|
114
|
+
|
115
|
+
// Not public API.
|
116
|
+
#[doc(hidden)]
|
117
|
+
#[path = "runtime.rs"]
|
118
|
+
pub mod __private;
|
119
|
+
|
120
|
+
pub use crate::ext::TokenStreamExt;
|
121
|
+
pub use crate::ident_fragment::IdentFragment;
|
122
|
+
pub use crate::to_tokens::ToTokens;
|
123
|
+
|
124
|
+
// Not public API.
|
125
|
+
#[doc(hidden)]
|
126
|
+
pub mod spanned;
|
127
|
+
|
128
|
+
/// The whole point.
|
129
|
+
///
|
130
|
+
/// Performs variable interpolation against the input and produces it as
|
131
|
+
/// [`proc_macro2::TokenStream`].
|
132
|
+
///
|
133
|
+
/// Note: for returning tokens to the compiler in a procedural macro, use
|
134
|
+
/// `.into()` on the result to convert to [`proc_macro::TokenStream`].
|
135
|
+
///
|
136
|
+
/// [`TokenStream`]: https://docs.rs/proc-macro2/1.0/proc_macro2/struct.TokenStream.html
|
137
|
+
///
|
138
|
+
/// <br>
|
139
|
+
///
|
140
|
+
/// # Interpolation
|
141
|
+
///
|
142
|
+
/// Variable interpolation is done with `#var` (similar to `$var` in
|
143
|
+
/// `macro_rules!` macros). This grabs the `var` variable that is currently in
|
144
|
+
/// scope and inserts it in that location in the output tokens. Any type
|
145
|
+
/// implementing the [`ToTokens`] trait can be interpolated. This includes most
|
146
|
+
/// Rust primitive types as well as most of the syntax tree types from the [Syn]
|
147
|
+
/// crate.
|
148
|
+
///
|
149
|
+
/// [`ToTokens`]: trait.ToTokens.html
|
150
|
+
/// [Syn]: https://github.com/dtolnay/syn
|
151
|
+
///
|
152
|
+
/// Repetition is done using `#(...)*` or `#(...),*` again similar to
|
153
|
+
/// `macro_rules!`. This iterates through the elements of any variable
|
154
|
+
/// interpolated within the repetition and inserts a copy of the repetition body
|
155
|
+
/// for each one. The variables in an interpolation may be a `Vec`, slice,
|
156
|
+
/// `BTreeSet`, or any `Iterator`.
|
157
|
+
///
|
158
|
+
/// - `#(#var)*` — no separators
|
159
|
+
/// - `#(#var),*` — the character before the asterisk is used as a separator
|
160
|
+
/// - `#( struct #var; )*` — the repetition can contain other tokens
|
161
|
+
/// - `#( #k => println!("{}", #v), )*` — even multiple interpolations
|
162
|
+
///
|
163
|
+
/// <br>
|
164
|
+
///
|
165
|
+
/// # Hygiene
|
166
|
+
///
|
167
|
+
/// Any interpolated tokens preserve the `Span` information provided by their
|
168
|
+
/// `ToTokens` implementation. Tokens that originate within the `quote!`
|
169
|
+
/// invocation are spanned with [`Span::call_site()`].
|
170
|
+
///
|
171
|
+
/// [`Span::call_site()`]: https://docs.rs/proc-macro2/1.0/proc_macro2/struct.Span.html#method.call_site
|
172
|
+
///
|
173
|
+
/// A different span can be provided through the [`quote_spanned!`] macro.
|
174
|
+
///
|
175
|
+
/// [`quote_spanned!`]: macro.quote_spanned.html
|
176
|
+
///
|
177
|
+
/// <br>
|
178
|
+
///
|
179
|
+
/// # Return type
|
180
|
+
///
|
181
|
+
/// The macro evaluates to an expression of type `proc_macro2::TokenStream`.
|
182
|
+
/// Meanwhile Rust procedural macros are expected to return the type
|
183
|
+
/// `proc_macro::TokenStream`.
|
184
|
+
///
|
185
|
+
/// The difference between the two types is that `proc_macro` types are entirely
|
186
|
+
/// specific to procedural macros and cannot ever exist in code outside of a
|
187
|
+
/// procedural macro, while `proc_macro2` types may exist anywhere including
|
188
|
+
/// tests and non-macro code like main.rs and build.rs. This is why even the
|
189
|
+
/// procedural macro ecosystem is largely built around `proc_macro2`, because
|
190
|
+
/// that ensures the libraries are unit testable and accessible in non-macro
|
191
|
+
/// contexts.
|
192
|
+
///
|
193
|
+
/// There is a [`From`]-conversion in both directions so returning the output of
|
194
|
+
/// `quote!` from a procedural macro usually looks like `tokens.into()` or
|
195
|
+
/// `proc_macro::TokenStream::from(tokens)`.
|
196
|
+
///
|
197
|
+
/// [`From`]: https://doc.rust-lang.org/std/convert/trait.From.html
|
198
|
+
///
|
199
|
+
/// <br>
|
200
|
+
///
|
201
|
+
/// # Examples
|
202
|
+
///
|
203
|
+
/// ### Procedural macro
|
204
|
+
///
|
205
|
+
/// The structure of a basic procedural macro is as follows. Refer to the [Syn]
|
206
|
+
/// crate for further useful guidance on using `quote!` as part of a procedural
|
207
|
+
/// macro.
|
208
|
+
///
|
209
|
+
/// [Syn]: https://github.com/dtolnay/syn
|
210
|
+
///
|
211
|
+
/// ```
|
212
|
+
/// # #[cfg(any())]
|
213
|
+
/// extern crate proc_macro;
|
214
|
+
/// # extern crate proc_macro2;
|
215
|
+
///
|
216
|
+
/// # #[cfg(any())]
|
217
|
+
/// use proc_macro::TokenStream;
|
218
|
+
/// # use proc_macro2::TokenStream;
|
219
|
+
/// use quote::quote;
|
220
|
+
///
|
221
|
+
/// # const IGNORE_TOKENS: &'static str = stringify! {
|
222
|
+
/// #[proc_macro_derive(HeapSize)]
|
223
|
+
/// # };
|
224
|
+
/// pub fn derive_heap_size(input: TokenStream) -> TokenStream {
|
225
|
+
/// // Parse the input and figure out what implementation to generate...
|
226
|
+
/// # const IGNORE_TOKENS: &'static str = stringify! {
|
227
|
+
/// let name = /* ... */;
|
228
|
+
/// let expr = /* ... */;
|
229
|
+
/// # };
|
230
|
+
/// #
|
231
|
+
/// # let name = 0;
|
232
|
+
/// # let expr = 0;
|
233
|
+
///
|
234
|
+
/// let expanded = quote! {
|
235
|
+
/// // The generated impl.
|
236
|
+
/// impl heapsize::HeapSize for #name {
|
237
|
+
/// fn heap_size_of_children(&self) -> usize {
|
238
|
+
/// #expr
|
239
|
+
/// }
|
240
|
+
/// }
|
241
|
+
/// };
|
242
|
+
///
|
243
|
+
/// // Hand the output tokens back to the compiler.
|
244
|
+
/// TokenStream::from(expanded)
|
245
|
+
/// }
|
246
|
+
/// ```
|
247
|
+
///
|
248
|
+
/// <p><br></p>
|
249
|
+
///
|
250
|
+
/// ### Combining quoted fragments
|
251
|
+
///
|
252
|
+
/// Usually you don't end up constructing an entire final `TokenStream` in one
|
253
|
+
/// piece. Different parts may come from different helper functions. The tokens
|
254
|
+
/// produced by `quote!` themselves implement `ToTokens` and so can be
|
255
|
+
/// interpolated into later `quote!` invocations to build up a final result.
|
256
|
+
///
|
257
|
+
/// ```
|
258
|
+
/// # use quote::quote;
|
259
|
+
/// #
|
260
|
+
/// let type_definition = quote! {...};
|
261
|
+
/// let methods = quote! {...};
|
262
|
+
///
|
263
|
+
/// let tokens = quote! {
|
264
|
+
/// #type_definition
|
265
|
+
/// #methods
|
266
|
+
/// };
|
267
|
+
/// ```
|
268
|
+
///
|
269
|
+
/// <p><br></p>
|
270
|
+
///
|
271
|
+
/// ### Constructing identifiers
|
272
|
+
///
|
273
|
+
/// Suppose we have an identifier `ident` which came from somewhere in a macro
|
274
|
+
/// input and we need to modify it in some way for the macro output. Let's
|
275
|
+
/// consider prepending the identifier with an underscore.
|
276
|
+
///
|
277
|
+
/// Simply interpolating the identifier next to an underscore will not have the
|
278
|
+
/// behavior of concatenating them. The underscore and the identifier will
|
279
|
+
/// continue to be two separate tokens as if you had written `_ x`.
|
280
|
+
///
|
281
|
+
/// ```
|
282
|
+
/// # use proc_macro2::{self as syn, Span};
|
283
|
+
/// # use quote::quote;
|
284
|
+
/// #
|
285
|
+
/// # let ident = syn::Ident::new("i", Span::call_site());
|
286
|
+
/// #
|
287
|
+
/// // incorrect
|
288
|
+
/// quote! {
|
289
|
+
/// let mut _#ident = 0;
|
290
|
+
/// }
|
291
|
+
/// # ;
|
292
|
+
/// ```
|
293
|
+
///
|
294
|
+
/// The solution is to build a new identifier token with the correct value. As
|
295
|
+
/// this is such a common case, the [`format_ident!`] macro provides a
|
296
|
+
/// convenient utility for doing so correctly.
|
297
|
+
///
|
298
|
+
/// ```
|
299
|
+
/// # use proc_macro2::{Ident, Span};
|
300
|
+
/// # use quote::{format_ident, quote};
|
301
|
+
/// #
|
302
|
+
/// # let ident = Ident::new("i", Span::call_site());
|
303
|
+
/// #
|
304
|
+
/// let varname = format_ident!("_{}", ident);
|
305
|
+
/// quote! {
|
306
|
+
/// let mut #varname = 0;
|
307
|
+
/// }
|
308
|
+
/// # ;
|
309
|
+
/// ```
|
310
|
+
///
|
311
|
+
/// Alternatively, the APIs provided by Syn and proc-macro2 can be used to
|
312
|
+
/// directly build the identifier. This is roughly equivalent to the above, but
|
313
|
+
/// will not handle `ident` being a raw identifier.
|
314
|
+
///
|
315
|
+
/// ```
|
316
|
+
/// # use proc_macro2::{self as syn, Span};
|
317
|
+
/// # use quote::quote;
|
318
|
+
/// #
|
319
|
+
/// # let ident = syn::Ident::new("i", Span::call_site());
|
320
|
+
/// #
|
321
|
+
/// let concatenated = format!("_{}", ident);
|
322
|
+
/// let varname = syn::Ident::new(&concatenated, ident.span());
|
323
|
+
/// quote! {
|
324
|
+
/// let mut #varname = 0;
|
325
|
+
/// }
|
326
|
+
/// # ;
|
327
|
+
/// ```
|
328
|
+
///
|
329
|
+
/// <p><br></p>
|
330
|
+
///
|
331
|
+
/// ### Making method calls
|
332
|
+
///
|
333
|
+
/// Let's say our macro requires some type specified in the macro input to have
|
334
|
+
/// a constructor called `new`. We have the type in a variable called
|
335
|
+
/// `field_type` of type `syn::Type` and want to invoke the constructor.
|
336
|
+
///
|
337
|
+
/// ```
|
338
|
+
/// # use quote::quote;
|
339
|
+
/// #
|
340
|
+
/// # let field_type = quote!(...);
|
341
|
+
/// #
|
342
|
+
/// // incorrect
|
343
|
+
/// quote! {
|
344
|
+
/// let value = #field_type::new();
|
345
|
+
/// }
|
346
|
+
/// # ;
|
347
|
+
/// ```
|
348
|
+
///
|
349
|
+
/// This works only sometimes. If `field_type` is `String`, the expanded code
|
350
|
+
/// contains `String::new()` which is fine. But if `field_type` is something
|
351
|
+
/// like `Vec<i32>` then the expanded code is `Vec<i32>::new()` which is invalid
|
352
|
+
/// syntax. Ordinarily in handwritten Rust we would write `Vec::<i32>::new()`
|
353
|
+
/// but for macros often the following is more convenient.
|
354
|
+
///
|
355
|
+
/// ```
|
356
|
+
/// # use quote::quote;
|
357
|
+
/// #
|
358
|
+
/// # let field_type = quote!(...);
|
359
|
+
/// #
|
360
|
+
/// quote! {
|
361
|
+
/// let value = <#field_type>::new();
|
362
|
+
/// }
|
363
|
+
/// # ;
|
364
|
+
/// ```
|
365
|
+
///
|
366
|
+
/// This expands to `<Vec<i32>>::new()` which behaves correctly.
|
367
|
+
///
|
368
|
+
/// A similar pattern is appropriate for trait methods.
|
369
|
+
///
|
370
|
+
/// ```
|
371
|
+
/// # use quote::quote;
|
372
|
+
/// #
|
373
|
+
/// # let field_type = quote!(...);
|
374
|
+
/// #
|
375
|
+
/// quote! {
|
376
|
+
/// let value = <#field_type as core::default::Default>::default();
|
377
|
+
/// }
|
378
|
+
/// # ;
|
379
|
+
/// ```
|
380
|
+
///
|
381
|
+
/// <p><br></p>
|
382
|
+
///
|
383
|
+
/// ### Interpolating text inside of doc comments
|
384
|
+
///
|
385
|
+
/// Neither doc comments nor string literals get interpolation behavior in
|
386
|
+
/// quote:
|
387
|
+
///
|
388
|
+
/// ```compile_fail
|
389
|
+
/// quote! {
|
390
|
+
/// /// try to interpolate: #ident
|
391
|
+
/// ///
|
392
|
+
/// /// ...
|
393
|
+
/// }
|
394
|
+
/// ```
|
395
|
+
///
|
396
|
+
/// ```compile_fail
|
397
|
+
/// quote! {
|
398
|
+
/// #[doc = "try to interpolate: #ident"]
|
399
|
+
/// }
|
400
|
+
/// ```
|
401
|
+
///
|
402
|
+
/// Instead the best way to build doc comments that involve variables is by
|
403
|
+
/// formatting the doc string literal outside of quote.
|
404
|
+
///
|
405
|
+
/// ```rust
|
406
|
+
/// # use proc_macro2::{Ident, Span};
|
407
|
+
/// # use quote::quote;
|
408
|
+
/// #
|
409
|
+
/// # const IGNORE: &str = stringify! {
|
410
|
+
/// let msg = format!(...);
|
411
|
+
/// # };
|
412
|
+
/// #
|
413
|
+
/// # let ident = Ident::new("var", Span::call_site());
|
414
|
+
/// # let msg = format!("try to interpolate: {}", ident);
|
415
|
+
/// quote! {
|
416
|
+
/// #[doc = #msg]
|
417
|
+
/// ///
|
418
|
+
/// /// ...
|
419
|
+
/// }
|
420
|
+
/// # ;
|
421
|
+
/// ```
|
422
|
+
///
|
423
|
+
/// <p><br></p>
|
424
|
+
///
|
425
|
+
/// ### Indexing into a tuple struct
|
426
|
+
///
|
427
|
+
/// When interpolating indices of a tuple or tuple struct, we need them not to
|
428
|
+
/// appears suffixed as integer literals by interpolating them as [`syn::Index`]
|
429
|
+
/// instead.
|
430
|
+
///
|
431
|
+
/// [`syn::Index`]: https://docs.rs/syn/1.0/syn/struct.Index.html
|
432
|
+
///
|
433
|
+
/// ```compile_fail
|
434
|
+
/// let i = 0usize..self.fields.len();
|
435
|
+
///
|
436
|
+
/// // expands to 0 + self.0usize.heap_size() + self.1usize.heap_size() + ...
|
437
|
+
/// // which is not valid syntax
|
438
|
+
/// quote! {
|
439
|
+
/// 0 #( + self.#i.heap_size() )*
|
440
|
+
/// }
|
441
|
+
/// ```
|
442
|
+
///
|
443
|
+
/// ```
|
444
|
+
/// # use proc_macro2::{Ident, TokenStream};
|
445
|
+
/// # use quote::quote;
|
446
|
+
/// #
|
447
|
+
/// # mod syn {
|
448
|
+
/// # use proc_macro2::{Literal, TokenStream};
|
449
|
+
/// # use quote::{ToTokens, TokenStreamExt};
|
450
|
+
/// #
|
451
|
+
/// # pub struct Index(usize);
|
452
|
+
/// #
|
453
|
+
/// # impl From<usize> for Index {
|
454
|
+
/// # fn from(i: usize) -> Self {
|
455
|
+
/// # Index(i)
|
456
|
+
/// # }
|
457
|
+
/// # }
|
458
|
+
/// #
|
459
|
+
/// # impl ToTokens for Index {
|
460
|
+
/// # fn to_tokens(&self, tokens: &mut TokenStream) {
|
461
|
+
/// # tokens.append(Literal::usize_unsuffixed(self.0));
|
462
|
+
/// # }
|
463
|
+
/// # }
|
464
|
+
/// # }
|
465
|
+
/// #
|
466
|
+
/// # struct Struct {
|
467
|
+
/// # fields: Vec<Ident>,
|
468
|
+
/// # }
|
469
|
+
/// #
|
470
|
+
/// # impl Struct {
|
471
|
+
/// # fn example(&self) -> TokenStream {
|
472
|
+
/// let i = (0..self.fields.len()).map(syn::Index::from);
|
473
|
+
///
|
474
|
+
/// // expands to 0 + self.0.heap_size() + self.1.heap_size() + ...
|
475
|
+
/// quote! {
|
476
|
+
/// 0 #( + self.#i.heap_size() )*
|
477
|
+
/// }
|
478
|
+
/// # }
|
479
|
+
/// # }
|
480
|
+
/// ```
|
481
|
+
#[cfg(doc)]
|
482
|
+
#[macro_export]
|
483
|
+
macro_rules! quote {
|
484
|
+
($($tt:tt)*) => {
|
485
|
+
...
|
486
|
+
};
|
487
|
+
}
|
488
|
+
|
489
|
+
#[cfg(not(doc))]
|
490
|
+
#[macro_export]
|
491
|
+
macro_rules! quote {
|
492
|
+
() => {
|
493
|
+
$crate::__private::TokenStream::new()
|
494
|
+
};
|
495
|
+
|
496
|
+
// Special case rule for a single tt, for performance.
|
497
|
+
($tt:tt) => {{
|
498
|
+
let mut _s = $crate::__private::TokenStream::new();
|
499
|
+
$crate::quote_token!{$tt _s}
|
500
|
+
_s
|
501
|
+
}};
|
502
|
+
|
503
|
+
// Special case rules for two tts, for performance.
|
504
|
+
(# $var:ident) => {{
|
505
|
+
let mut _s = $crate::__private::TokenStream::new();
|
506
|
+
$crate::ToTokens::to_tokens(&$var, &mut _s);
|
507
|
+
_s
|
508
|
+
}};
|
509
|
+
($tt1:tt $tt2:tt) => {{
|
510
|
+
let mut _s = $crate::__private::TokenStream::new();
|
511
|
+
$crate::quote_token!{$tt1 _s}
|
512
|
+
$crate::quote_token!{$tt2 _s}
|
513
|
+
_s
|
514
|
+
}};
|
515
|
+
|
516
|
+
// Rule for any other number of tokens.
|
517
|
+
($($tt:tt)*) => {{
|
518
|
+
let mut _s = $crate::__private::TokenStream::new();
|
519
|
+
$crate::quote_each_token!{_s $($tt)*}
|
520
|
+
_s
|
521
|
+
}};
|
522
|
+
}
|
523
|
+
|
524
|
+
/// Same as `quote!`, but applies a given span to all tokens originating within
|
525
|
+
/// the macro invocation.
|
526
|
+
///
|
527
|
+
/// <br>
|
528
|
+
///
|
529
|
+
/// # Syntax
|
530
|
+
///
|
531
|
+
/// A span expression of type [`Span`], followed by `=>`, followed by the tokens
|
532
|
+
/// to quote. The span expression should be brief — use a variable for
|
533
|
+
/// anything more than a few characters. There should be no space before the
|
534
|
+
/// `=>` token.
|
535
|
+
///
|
536
|
+
/// [`Span`]: https://docs.rs/proc-macro2/1.0/proc_macro2/struct.Span.html
|
537
|
+
///
|
538
|
+
/// ```
|
539
|
+
/// # use proc_macro2::Span;
|
540
|
+
/// # use quote::quote_spanned;
|
541
|
+
/// #
|
542
|
+
/// # const IGNORE_TOKENS: &'static str = stringify! {
|
543
|
+
/// let span = /* ... */;
|
544
|
+
/// # };
|
545
|
+
/// # let span = Span::call_site();
|
546
|
+
/// # let init = 0;
|
547
|
+
///
|
548
|
+
/// // On one line, use parentheses.
|
549
|
+
/// let tokens = quote_spanned!(span=> Box::into_raw(Box::new(#init)));
|
550
|
+
///
|
551
|
+
/// // On multiple lines, place the span at the top and use braces.
|
552
|
+
/// let tokens = quote_spanned! {span=>
|
553
|
+
/// Box::into_raw(Box::new(#init))
|
554
|
+
/// };
|
555
|
+
/// ```
|
556
|
+
///
|
557
|
+
/// The lack of space before the `=>` should look jarring to Rust programmers
|
558
|
+
/// and this is intentional. The formatting is designed to be visibly
|
559
|
+
/// off-balance and draw the eye a particular way, due to the span expression
|
560
|
+
/// being evaluated in the context of the procedural macro and the remaining
|
561
|
+
/// tokens being evaluated in the generated code.
|
562
|
+
///
|
563
|
+
/// <br>
|
564
|
+
///
|
565
|
+
/// # Hygiene
|
566
|
+
///
|
567
|
+
/// Any interpolated tokens preserve the `Span` information provided by their
|
568
|
+
/// `ToTokens` implementation. Tokens that originate within the `quote_spanned!`
|
569
|
+
/// invocation are spanned with the given span argument.
|
570
|
+
///
|
571
|
+
/// <br>
|
572
|
+
///
|
573
|
+
/// # Example
|
574
|
+
///
|
575
|
+
/// The following procedural macro code uses `quote_spanned!` to assert that a
|
576
|
+
/// particular Rust type implements the [`Sync`] trait so that references can be
|
577
|
+
/// safely shared between threads.
|
578
|
+
///
|
579
|
+
/// [`Sync`]: https://doc.rust-lang.org/std/marker/trait.Sync.html
|
580
|
+
///
|
581
|
+
/// ```
|
582
|
+
/// # use quote::{quote_spanned, TokenStreamExt, ToTokens};
|
583
|
+
/// # use proc_macro2::{Span, TokenStream};
|
584
|
+
/// #
|
585
|
+
/// # struct Type;
|
586
|
+
/// #
|
587
|
+
/// # impl Type {
|
588
|
+
/// # fn span(&self) -> Span {
|
589
|
+
/// # Span::call_site()
|
590
|
+
/// # }
|
591
|
+
/// # }
|
592
|
+
/// #
|
593
|
+
/// # impl ToTokens for Type {
|
594
|
+
/// # fn to_tokens(&self, _tokens: &mut TokenStream) {}
|
595
|
+
/// # }
|
596
|
+
/// #
|
597
|
+
/// # let ty = Type;
|
598
|
+
/// # let call_site = Span::call_site();
|
599
|
+
/// #
|
600
|
+
/// let ty_span = ty.span();
|
601
|
+
/// let assert_sync = quote_spanned! {ty_span=>
|
602
|
+
/// struct _AssertSync where #ty: Sync;
|
603
|
+
/// };
|
604
|
+
/// ```
|
605
|
+
///
|
606
|
+
/// If the assertion fails, the user will see an error like the following. The
|
607
|
+
/// input span of their type is highlighted in the error.
|
608
|
+
///
|
609
|
+
/// ```text
|
610
|
+
/// error[E0277]: the trait bound `*const (): std::marker::Sync` is not satisfied
|
611
|
+
/// --> src/main.rs:10:21
|
612
|
+
/// |
|
613
|
+
/// 10 | static ref PTR: *const () = &();
|
614
|
+
/// | ^^^^^^^^^ `*const ()` cannot be shared between threads safely
|
615
|
+
/// ```
|
616
|
+
///
|
617
|
+
/// In this example it is important for the where-clause to be spanned with the
|
618
|
+
/// line/column information of the user's input type so that error messages are
|
619
|
+
/// placed appropriately by the compiler.
|
620
|
+
#[cfg(doc)]
|
621
|
+
#[macro_export]
|
622
|
+
macro_rules! quote_spanned {
|
623
|
+
($span:expr=> $($tt:tt)*) => {
|
624
|
+
...
|
625
|
+
};
|
626
|
+
}
|
627
|
+
|
628
|
+
#[cfg(not(doc))]
|
629
|
+
#[macro_export]
|
630
|
+
macro_rules! quote_spanned {
|
631
|
+
($span:expr=>) => {{
|
632
|
+
let _: $crate::__private::Span = $crate::__private::get_span($span).__into_span();
|
633
|
+
$crate::__private::TokenStream::new()
|
634
|
+
}};
|
635
|
+
|
636
|
+
// Special case rule for a single tt, for performance.
|
637
|
+
($span:expr=> $tt:tt) => {{
|
638
|
+
let mut _s = $crate::__private::TokenStream::new();
|
639
|
+
let _span: $crate::__private::Span = $crate::__private::get_span($span).__into_span();
|
640
|
+
$crate::quote_token_spanned!{$tt _s _span}
|
641
|
+
_s
|
642
|
+
}};
|
643
|
+
|
644
|
+
// Special case rules for two tts, for performance.
|
645
|
+
($span:expr=> # $var:ident) => {{
|
646
|
+
let mut _s = $crate::__private::TokenStream::new();
|
647
|
+
let _: $crate::__private::Span = $crate::__private::get_span($span).__into_span();
|
648
|
+
$crate::ToTokens::to_tokens(&$var, &mut _s);
|
649
|
+
_s
|
650
|
+
}};
|
651
|
+
($span:expr=> $tt1:tt $tt2:tt) => {{
|
652
|
+
let mut _s = $crate::__private::TokenStream::new();
|
653
|
+
let _span: $crate::__private::Span = $crate::__private::get_span($span).__into_span();
|
654
|
+
$crate::quote_token_spanned!{$tt1 _s _span}
|
655
|
+
$crate::quote_token_spanned!{$tt2 _s _span}
|
656
|
+
_s
|
657
|
+
}};
|
658
|
+
|
659
|
+
// Rule for any other number of tokens.
|
660
|
+
($span:expr=> $($tt:tt)*) => {{
|
661
|
+
let mut _s = $crate::__private::TokenStream::new();
|
662
|
+
let _span: $crate::__private::Span = $crate::__private::get_span($span).__into_span();
|
663
|
+
$crate::quote_each_token_spanned!{_s _span $($tt)*}
|
664
|
+
_s
|
665
|
+
}};
|
666
|
+
}
|
667
|
+
|
668
|
+
// Extract the names of all #metavariables and pass them to the $call macro.
|
669
|
+
//
|
670
|
+
// in: pounded_var_names!(then!(...) a #b c #( #d )* #e)
|
671
|
+
// out: then!(... b);
|
672
|
+
// then!(... d);
|
673
|
+
// then!(... e);
|
674
|
+
#[macro_export]
|
675
|
+
#[doc(hidden)]
|
676
|
+
macro_rules! pounded_var_names {
|
677
|
+
($call:ident! $extra:tt $($tts:tt)*) => {
|
678
|
+
$crate::pounded_var_names_with_context!{$call! $extra
|
679
|
+
(@ $($tts)*)
|
680
|
+
($($tts)* @)
|
681
|
+
}
|
682
|
+
};
|
683
|
+
}
|
684
|
+
|
685
|
+
#[macro_export]
|
686
|
+
#[doc(hidden)]
|
687
|
+
macro_rules! pounded_var_names_with_context {
|
688
|
+
($call:ident! $extra:tt ($($b1:tt)*) ($($curr:tt)*)) => {
|
689
|
+
$(
|
690
|
+
$crate::pounded_var_with_context!{$call! $extra $b1 $curr}
|
691
|
+
)*
|
692
|
+
};
|
693
|
+
}
|
694
|
+
|
695
|
+
#[macro_export]
|
696
|
+
#[doc(hidden)]
|
697
|
+
macro_rules! pounded_var_with_context {
|
698
|
+
($call:ident! $extra:tt $b1:tt ( $($inner:tt)* )) => {
|
699
|
+
$crate::pounded_var_names!{$call! $extra $($inner)*}
|
700
|
+
};
|
701
|
+
|
702
|
+
($call:ident! $extra:tt $b1:tt [ $($inner:tt)* ]) => {
|
703
|
+
$crate::pounded_var_names!{$call! $extra $($inner)*}
|
704
|
+
};
|
705
|
+
|
706
|
+
($call:ident! $extra:tt $b1:tt { $($inner:tt)* }) => {
|
707
|
+
$crate::pounded_var_names!{$call! $extra $($inner)*}
|
708
|
+
};
|
709
|
+
|
710
|
+
($call:ident!($($extra:tt)*) # $var:ident) => {
|
711
|
+
$crate::$call!($($extra)* $var);
|
712
|
+
};
|
713
|
+
|
714
|
+
($call:ident! $extra:tt $b1:tt $curr:tt) => {};
|
715
|
+
}
|
716
|
+
|
717
|
+
#[macro_export]
|
718
|
+
#[doc(hidden)]
|
719
|
+
macro_rules! quote_bind_into_iter {
|
720
|
+
($has_iter:ident $var:ident) => {
|
721
|
+
// `mut` may be unused if $var occurs multiple times in the list.
|
722
|
+
#[allow(unused_mut)]
|
723
|
+
let (mut $var, i) = $var.quote_into_iter();
|
724
|
+
let $has_iter = $has_iter | i;
|
725
|
+
};
|
726
|
+
}
|
727
|
+
|
728
|
+
#[macro_export]
|
729
|
+
#[doc(hidden)]
|
730
|
+
macro_rules! quote_bind_next_or_break {
|
731
|
+
($var:ident) => {
|
732
|
+
let $var = match $var.next() {
|
733
|
+
Some(_x) => $crate::__private::RepInterp(_x),
|
734
|
+
None => break,
|
735
|
+
};
|
736
|
+
};
|
737
|
+
}
|
738
|
+
|
739
|
+
// The obvious way to write this macro is as a tt muncher. This implementation
|
740
|
+
// does something more complex for two reasons.
|
741
|
+
//
|
742
|
+
// - With a tt muncher it's easy to hit Rust's built-in recursion_limit, which
|
743
|
+
// this implementation avoids because it isn't tail recursive.
|
744
|
+
//
|
745
|
+
// - Compile times for a tt muncher are quadratic relative to the length of
|
746
|
+
// the input. This implementation is linear, so it will be faster
|
747
|
+
// (potentially much faster) for big inputs. However, the constant factors
|
748
|
+
// of this implementation are higher than that of a tt muncher, so it is
|
749
|
+
// somewhat slower than a tt muncher if there are many invocations with
|
750
|
+
// short inputs.
|
751
|
+
//
|
752
|
+
// An invocation like this:
|
753
|
+
//
|
754
|
+
// quote_each_token!(_s a b c d e f g h i j);
|
755
|
+
//
|
756
|
+
// expands to this:
|
757
|
+
//
|
758
|
+
// quote_tokens_with_context!(_s
|
759
|
+
// (@ @ @ @ @ @ a b c d e f g h i j)
|
760
|
+
// (@ @ @ @ @ a b c d e f g h i j @)
|
761
|
+
// (@ @ @ @ a b c d e f g h i j @ @)
|
762
|
+
// (@ @ @ (a) (b) (c) (d) (e) (f) (g) (h) (i) (j) @ @ @)
|
763
|
+
// (@ @ a b c d e f g h i j @ @ @ @)
|
764
|
+
// (@ a b c d e f g h i j @ @ @ @ @)
|
765
|
+
// (a b c d e f g h i j @ @ @ @ @ @)
|
766
|
+
// );
|
767
|
+
//
|
768
|
+
// which gets transposed and expanded to this:
|
769
|
+
//
|
770
|
+
// quote_token_with_context!(_s @ @ @ @ @ @ a);
|
771
|
+
// quote_token_with_context!(_s @ @ @ @ @ a b);
|
772
|
+
// quote_token_with_context!(_s @ @ @ @ a b c);
|
773
|
+
// quote_token_with_context!(_s @ @ @ (a) b c d);
|
774
|
+
// quote_token_with_context!(_s @ @ a (b) c d e);
|
775
|
+
// quote_token_with_context!(_s @ a b (c) d e f);
|
776
|
+
// quote_token_with_context!(_s a b c (d) e f g);
|
777
|
+
// quote_token_with_context!(_s b c d (e) f g h);
|
778
|
+
// quote_token_with_context!(_s c d e (f) g h i);
|
779
|
+
// quote_token_with_context!(_s d e f (g) h i j);
|
780
|
+
// quote_token_with_context!(_s e f g (h) i j @);
|
781
|
+
// quote_token_with_context!(_s f g h (i) j @ @);
|
782
|
+
// quote_token_with_context!(_s g h i (j) @ @ @);
|
783
|
+
// quote_token_with_context!(_s h i j @ @ @ @);
|
784
|
+
// quote_token_with_context!(_s i j @ @ @ @ @);
|
785
|
+
// quote_token_with_context!(_s j @ @ @ @ @ @);
|
786
|
+
//
|
787
|
+
// Without having used muncher-style recursion, we get one invocation of
|
788
|
+
// quote_token_with_context for each original tt, with three tts of context on
|
789
|
+
// either side. This is enough for the longest possible interpolation form (a
|
790
|
+
// repetition with separator, as in `# (#var) , *`) to be fully represented with
|
791
|
+
// the first or last tt in the middle.
|
792
|
+
//
|
793
|
+
// The middle tt (surrounded by parentheses) is the tt being processed.
|
794
|
+
//
|
795
|
+
// - When it is a `#`, quote_token_with_context can do an interpolation. The
|
796
|
+
// interpolation kind will depend on the three subsequent tts.
|
797
|
+
//
|
798
|
+
// - When it is within a later part of an interpolation, it can be ignored
|
799
|
+
// because the interpolation has already been done.
|
800
|
+
//
|
801
|
+
// - When it is not part of an interpolation it can be pushed as a single
|
802
|
+
// token into the output.
|
803
|
+
//
|
804
|
+
// - When the middle token is an unparenthesized `@`, that call is one of the
|
805
|
+
// first 3 or last 3 calls of quote_token_with_context and does not
|
806
|
+
// correspond to one of the original input tokens, so turns into nothing.
|
807
|
+
#[macro_export]
|
808
|
+
#[doc(hidden)]
|
809
|
+
macro_rules! quote_each_token {
|
810
|
+
($tokens:ident $($tts:tt)*) => {
|
811
|
+
$crate::quote_tokens_with_context!{$tokens
|
812
|
+
(@ @ @ @ @ @ $($tts)*)
|
813
|
+
(@ @ @ @ @ $($tts)* @)
|
814
|
+
(@ @ @ @ $($tts)* @ @)
|
815
|
+
(@ @ @ $(($tts))* @ @ @)
|
816
|
+
(@ @ $($tts)* @ @ @ @)
|
817
|
+
(@ $($tts)* @ @ @ @ @)
|
818
|
+
($($tts)* @ @ @ @ @ @)
|
819
|
+
}
|
820
|
+
};
|
821
|
+
}
|
822
|
+
|
823
|
+
// See the explanation on quote_each_token.
|
824
|
+
#[macro_export]
|
825
|
+
#[doc(hidden)]
|
826
|
+
macro_rules! quote_each_token_spanned {
|
827
|
+
($tokens:ident $span:ident $($tts:tt)*) => {
|
828
|
+
$crate::quote_tokens_with_context_spanned!{$tokens $span
|
829
|
+
(@ @ @ @ @ @ $($tts)*)
|
830
|
+
(@ @ @ @ @ $($tts)* @)
|
831
|
+
(@ @ @ @ $($tts)* @ @)
|
832
|
+
(@ @ @ $(($tts))* @ @ @)
|
833
|
+
(@ @ $($tts)* @ @ @ @)
|
834
|
+
(@ $($tts)* @ @ @ @ @)
|
835
|
+
($($tts)* @ @ @ @ @ @)
|
836
|
+
}
|
837
|
+
};
|
838
|
+
}
|
839
|
+
|
840
|
+
// See the explanation on quote_each_token.
|
841
|
+
#[macro_export]
|
842
|
+
#[doc(hidden)]
|
843
|
+
macro_rules! quote_tokens_with_context {
|
844
|
+
($tokens:ident
|
845
|
+
($($b3:tt)*) ($($b2:tt)*) ($($b1:tt)*)
|
846
|
+
($($curr:tt)*)
|
847
|
+
($($a1:tt)*) ($($a2:tt)*) ($($a3:tt)*)
|
848
|
+
) => {
|
849
|
+
$(
|
850
|
+
$crate::quote_token_with_context!{$tokens $b3 $b2 $b1 $curr $a1 $a2 $a3}
|
851
|
+
)*
|
852
|
+
};
|
853
|
+
}
|
854
|
+
|
855
|
+
// See the explanation on quote_each_token.
|
856
|
+
#[macro_export]
|
857
|
+
#[doc(hidden)]
|
858
|
+
macro_rules! quote_tokens_with_context_spanned {
|
859
|
+
($tokens:ident $span:ident
|
860
|
+
($($b3:tt)*) ($($b2:tt)*) ($($b1:tt)*)
|
861
|
+
($($curr:tt)*)
|
862
|
+
($($a1:tt)*) ($($a2:tt)*) ($($a3:tt)*)
|
863
|
+
) => {
|
864
|
+
$(
|
865
|
+
$crate::quote_token_with_context_spanned!{$tokens $span $b3 $b2 $b1 $curr $a1 $a2 $a3}
|
866
|
+
)*
|
867
|
+
};
|
868
|
+
}
|
869
|
+
|
870
|
+
// See the explanation on quote_each_token.
|
871
|
+
#[macro_export]
|
872
|
+
#[doc(hidden)]
|
873
|
+
macro_rules! quote_token_with_context {
|
874
|
+
// Unparenthesized `@` indicates this call does not correspond to one of the
|
875
|
+
// original input tokens. Ignore it.
|
876
|
+
($tokens:ident $b3:tt $b2:tt $b1:tt @ $a1:tt $a2:tt $a3:tt) => {};
|
877
|
+
|
878
|
+
// A repetition with no separator.
|
879
|
+
($tokens:ident $b3:tt $b2:tt $b1:tt (#) ( $($inner:tt)* ) * $a3:tt) => {{
|
880
|
+
use $crate::__private::ext::*;
|
881
|
+
let has_iter = $crate::__private::ThereIsNoIteratorInRepetition;
|
882
|
+
$crate::pounded_var_names!{quote_bind_into_iter!(has_iter) () $($inner)*}
|
883
|
+
let _: $crate::__private::HasIterator = has_iter;
|
884
|
+
// This is `while true` instead of `loop` because if there are no
|
885
|
+
// iterators used inside of this repetition then the body would not
|
886
|
+
// contain any `break`, so the compiler would emit unreachable code
|
887
|
+
// warnings on anything below the loop. We use has_iter to detect and
|
888
|
+
// fail to compile when there are no iterators, so here we just work
|
889
|
+
// around the unneeded extra warning.
|
890
|
+
while true {
|
891
|
+
$crate::pounded_var_names!{quote_bind_next_or_break!() () $($inner)*}
|
892
|
+
$crate::quote_each_token!{$tokens $($inner)*}
|
893
|
+
}
|
894
|
+
}};
|
895
|
+
// ... and one step later.
|
896
|
+
($tokens:ident $b3:tt $b2:tt # (( $($inner:tt)* )) * $a2:tt $a3:tt) => {};
|
897
|
+
// ... and one step later.
|
898
|
+
($tokens:ident $b3:tt # ( $($inner:tt)* ) (*) $a1:tt $a2:tt $a3:tt) => {};
|
899
|
+
|
900
|
+
// A repetition with separator.
|
901
|
+
($tokens:ident $b3:tt $b2:tt $b1:tt (#) ( $($inner:tt)* ) $sep:tt *) => {{
|
902
|
+
use $crate::__private::ext::*;
|
903
|
+
let mut _i = 0usize;
|
904
|
+
let has_iter = $crate::__private::ThereIsNoIteratorInRepetition;
|
905
|
+
$crate::pounded_var_names!{quote_bind_into_iter!(has_iter) () $($inner)*}
|
906
|
+
let _: $crate::__private::HasIterator = has_iter;
|
907
|
+
while true {
|
908
|
+
$crate::pounded_var_names!{quote_bind_next_or_break!() () $($inner)*}
|
909
|
+
if _i > 0 {
|
910
|
+
$crate::quote_token!{$sep $tokens}
|
911
|
+
}
|
912
|
+
_i += 1;
|
913
|
+
$crate::quote_each_token!{$tokens $($inner)*}
|
914
|
+
}
|
915
|
+
}};
|
916
|
+
// ... and one step later.
|
917
|
+
($tokens:ident $b3:tt $b2:tt # (( $($inner:tt)* )) $sep:tt * $a3:tt) => {};
|
918
|
+
// ... and one step later.
|
919
|
+
($tokens:ident $b3:tt # ( $($inner:tt)* ) ($sep:tt) * $a2:tt $a3:tt) => {};
|
920
|
+
// (A special case for `#(var)**`, where the first `*` is treated as the
|
921
|
+
// repetition symbol and the second `*` is treated as an ordinary token.)
|
922
|
+
($tokens:ident # ( $($inner:tt)* ) * (*) $a1:tt $a2:tt $a3:tt) => {
|
923
|
+
// https://github.com/dtolnay/quote/issues/130
|
924
|
+
$crate::quote_token!{* $tokens}
|
925
|
+
};
|
926
|
+
// ... and one step later.
|
927
|
+
($tokens:ident # ( $($inner:tt)* ) $sep:tt (*) $a1:tt $a2:tt $a3:tt) => {};
|
928
|
+
|
929
|
+
// A non-repetition interpolation.
|
930
|
+
($tokens:ident $b3:tt $b2:tt $b1:tt (#) $var:ident $a2:tt $a3:tt) => {
|
931
|
+
$crate::ToTokens::to_tokens(&$var, &mut $tokens);
|
932
|
+
};
|
933
|
+
// ... and one step later.
|
934
|
+
($tokens:ident $b3:tt $b2:tt # ($var:ident) $a1:tt $a2:tt $a3:tt) => {};
|
935
|
+
|
936
|
+
// An ordinary token, not part of any interpolation.
|
937
|
+
($tokens:ident $b3:tt $b2:tt $b1:tt ($curr:tt) $a1:tt $a2:tt $a3:tt) => {
|
938
|
+
$crate::quote_token!{$curr $tokens}
|
939
|
+
};
|
940
|
+
}
|
941
|
+
|
942
|
+
// See the explanation on quote_each_token, and on the individual rules of
|
943
|
+
// quote_token_with_context.
|
944
|
+
#[macro_export]
|
945
|
+
#[doc(hidden)]
|
946
|
+
macro_rules! quote_token_with_context_spanned {
|
947
|
+
($tokens:ident $span:ident $b3:tt $b2:tt $b1:tt @ $a1:tt $a2:tt $a3:tt) => {};
|
948
|
+
|
949
|
+
($tokens:ident $span:ident $b3:tt $b2:tt $b1:tt (#) ( $($inner:tt)* ) * $a3:tt) => {{
|
950
|
+
use $crate::__private::ext::*;
|
951
|
+
let has_iter = $crate::__private::ThereIsNoIteratorInRepetition;
|
952
|
+
$crate::pounded_var_names!{quote_bind_into_iter!(has_iter) () $($inner)*}
|
953
|
+
let _: $crate::__private::HasIterator = has_iter;
|
954
|
+
while true {
|
955
|
+
$crate::pounded_var_names!{quote_bind_next_or_break!() () $($inner)*}
|
956
|
+
$crate::quote_each_token_spanned!{$tokens $span $($inner)*}
|
957
|
+
}
|
958
|
+
}};
|
959
|
+
($tokens:ident $span:ident $b3:tt $b2:tt # (( $($inner:tt)* )) * $a2:tt $a3:tt) => {};
|
960
|
+
($tokens:ident $span:ident $b3:tt # ( $($inner:tt)* ) (*) $a1:tt $a2:tt $a3:tt) => {};
|
961
|
+
|
962
|
+
($tokens:ident $span:ident $b3:tt $b2:tt $b1:tt (#) ( $($inner:tt)* ) $sep:tt *) => {{
|
963
|
+
use $crate::__private::ext::*;
|
964
|
+
let mut _i = 0usize;
|
965
|
+
let has_iter = $crate::__private::ThereIsNoIteratorInRepetition;
|
966
|
+
$crate::pounded_var_names!{quote_bind_into_iter!(has_iter) () $($inner)*}
|
967
|
+
let _: $crate::__private::HasIterator = has_iter;
|
968
|
+
while true {
|
969
|
+
$crate::pounded_var_names!{quote_bind_next_or_break!() () $($inner)*}
|
970
|
+
if _i > 0 {
|
971
|
+
$crate::quote_token_spanned!{$sep $tokens $span}
|
972
|
+
}
|
973
|
+
_i += 1;
|
974
|
+
$crate::quote_each_token_spanned!{$tokens $span $($inner)*}
|
975
|
+
}
|
976
|
+
}};
|
977
|
+
($tokens:ident $span:ident $b3:tt $b2:tt # (( $($inner:tt)* )) $sep:tt * $a3:tt) => {};
|
978
|
+
($tokens:ident $span:ident $b3:tt # ( $($inner:tt)* ) ($sep:tt) * $a2:tt $a3:tt) => {};
|
979
|
+
($tokens:ident $span:ident # ( $($inner:tt)* ) * (*) $a1:tt $a2:tt $a3:tt) => {
|
980
|
+
// https://github.com/dtolnay/quote/issues/130
|
981
|
+
$crate::quote_token_spanned!{* $tokens $span}
|
982
|
+
};
|
983
|
+
($tokens:ident $span:ident # ( $($inner:tt)* ) $sep:tt (*) $a1:tt $a2:tt $a3:tt) => {};
|
984
|
+
|
985
|
+
($tokens:ident $span:ident $b3:tt $b2:tt $b1:tt (#) $var:ident $a2:tt $a3:tt) => {
|
986
|
+
$crate::ToTokens::to_tokens(&$var, &mut $tokens);
|
987
|
+
};
|
988
|
+
($tokens:ident $span:ident $b3:tt $b2:tt # ($var:ident) $a1:tt $a2:tt $a3:tt) => {};
|
989
|
+
|
990
|
+
($tokens:ident $span:ident $b3:tt $b2:tt $b1:tt ($curr:tt) $a1:tt $a2:tt $a3:tt) => {
|
991
|
+
$crate::quote_token_spanned!{$curr $tokens $span}
|
992
|
+
};
|
993
|
+
}
|
994
|
+
|
995
|
+
// These rules are ordered by approximate token frequency, at least for the
|
996
|
+
// first 10 or so, to improve compile times. Having `ident` first is by far the
|
997
|
+
// most important because it's typically 2-3x more common than the next most
|
998
|
+
// common token.
|
999
|
+
//
|
1000
|
+
// Separately, we put the token being matched in the very front so that failing
|
1001
|
+
// rules may fail to match as quickly as possible.
|
1002
|
+
#[macro_export]
|
1003
|
+
#[doc(hidden)]
|
1004
|
+
macro_rules! quote_token {
|
1005
|
+
($ident:ident $tokens:ident) => {
|
1006
|
+
$crate::__private::push_ident(&mut $tokens, stringify!($ident));
|
1007
|
+
};
|
1008
|
+
|
1009
|
+
(:: $tokens:ident) => {
|
1010
|
+
$crate::__private::push_colon2(&mut $tokens);
|
1011
|
+
};
|
1012
|
+
|
1013
|
+
(( $($inner:tt)* ) $tokens:ident) => {
|
1014
|
+
$crate::__private::push_group(
|
1015
|
+
&mut $tokens,
|
1016
|
+
$crate::__private::Delimiter::Parenthesis,
|
1017
|
+
$crate::quote!($($inner)*),
|
1018
|
+
);
|
1019
|
+
};
|
1020
|
+
|
1021
|
+
([ $($inner:tt)* ] $tokens:ident) => {
|
1022
|
+
$crate::__private::push_group(
|
1023
|
+
&mut $tokens,
|
1024
|
+
$crate::__private::Delimiter::Bracket,
|
1025
|
+
$crate::quote!($($inner)*),
|
1026
|
+
);
|
1027
|
+
};
|
1028
|
+
|
1029
|
+
({ $($inner:tt)* } $tokens:ident) => {
|
1030
|
+
$crate::__private::push_group(
|
1031
|
+
&mut $tokens,
|
1032
|
+
$crate::__private::Delimiter::Brace,
|
1033
|
+
$crate::quote!($($inner)*),
|
1034
|
+
);
|
1035
|
+
};
|
1036
|
+
|
1037
|
+
(# $tokens:ident) => {
|
1038
|
+
$crate::__private::push_pound(&mut $tokens);
|
1039
|
+
};
|
1040
|
+
|
1041
|
+
(, $tokens:ident) => {
|
1042
|
+
$crate::__private::push_comma(&mut $tokens);
|
1043
|
+
};
|
1044
|
+
|
1045
|
+
(. $tokens:ident) => {
|
1046
|
+
$crate::__private::push_dot(&mut $tokens);
|
1047
|
+
};
|
1048
|
+
|
1049
|
+
(; $tokens:ident) => {
|
1050
|
+
$crate::__private::push_semi(&mut $tokens);
|
1051
|
+
};
|
1052
|
+
|
1053
|
+
(: $tokens:ident) => {
|
1054
|
+
$crate::__private::push_colon(&mut $tokens);
|
1055
|
+
};
|
1056
|
+
|
1057
|
+
(+ $tokens:ident) => {
|
1058
|
+
$crate::__private::push_add(&mut $tokens);
|
1059
|
+
};
|
1060
|
+
|
1061
|
+
(+= $tokens:ident) => {
|
1062
|
+
$crate::__private::push_add_eq(&mut $tokens);
|
1063
|
+
};
|
1064
|
+
|
1065
|
+
(& $tokens:ident) => {
|
1066
|
+
$crate::__private::push_and(&mut $tokens);
|
1067
|
+
};
|
1068
|
+
|
1069
|
+
(&& $tokens:ident) => {
|
1070
|
+
$crate::__private::push_and_and(&mut $tokens);
|
1071
|
+
};
|
1072
|
+
|
1073
|
+
(&= $tokens:ident) => {
|
1074
|
+
$crate::__private::push_and_eq(&mut $tokens);
|
1075
|
+
};
|
1076
|
+
|
1077
|
+
(@ $tokens:ident) => {
|
1078
|
+
$crate::__private::push_at(&mut $tokens);
|
1079
|
+
};
|
1080
|
+
|
1081
|
+
(! $tokens:ident) => {
|
1082
|
+
$crate::__private::push_bang(&mut $tokens);
|
1083
|
+
};
|
1084
|
+
|
1085
|
+
(^ $tokens:ident) => {
|
1086
|
+
$crate::__private::push_caret(&mut $tokens);
|
1087
|
+
};
|
1088
|
+
|
1089
|
+
(^= $tokens:ident) => {
|
1090
|
+
$crate::__private::push_caret_eq(&mut $tokens);
|
1091
|
+
};
|
1092
|
+
|
1093
|
+
(/ $tokens:ident) => {
|
1094
|
+
$crate::__private::push_div(&mut $tokens);
|
1095
|
+
};
|
1096
|
+
|
1097
|
+
(/= $tokens:ident) => {
|
1098
|
+
$crate::__private::push_div_eq(&mut $tokens);
|
1099
|
+
};
|
1100
|
+
|
1101
|
+
(.. $tokens:ident) => {
|
1102
|
+
$crate::__private::push_dot2(&mut $tokens);
|
1103
|
+
};
|
1104
|
+
|
1105
|
+
(... $tokens:ident) => {
|
1106
|
+
$crate::__private::push_dot3(&mut $tokens);
|
1107
|
+
};
|
1108
|
+
|
1109
|
+
(..= $tokens:ident) => {
|
1110
|
+
$crate::__private::push_dot_dot_eq(&mut $tokens);
|
1111
|
+
};
|
1112
|
+
|
1113
|
+
(= $tokens:ident) => {
|
1114
|
+
$crate::__private::push_eq(&mut $tokens);
|
1115
|
+
};
|
1116
|
+
|
1117
|
+
(== $tokens:ident) => {
|
1118
|
+
$crate::__private::push_eq_eq(&mut $tokens);
|
1119
|
+
};
|
1120
|
+
|
1121
|
+
(>= $tokens:ident) => {
|
1122
|
+
$crate::__private::push_ge(&mut $tokens);
|
1123
|
+
};
|
1124
|
+
|
1125
|
+
(> $tokens:ident) => {
|
1126
|
+
$crate::__private::push_gt(&mut $tokens);
|
1127
|
+
};
|
1128
|
+
|
1129
|
+
(<= $tokens:ident) => {
|
1130
|
+
$crate::__private::push_le(&mut $tokens);
|
1131
|
+
};
|
1132
|
+
|
1133
|
+
(< $tokens:ident) => {
|
1134
|
+
$crate::__private::push_lt(&mut $tokens);
|
1135
|
+
};
|
1136
|
+
|
1137
|
+
(*= $tokens:ident) => {
|
1138
|
+
$crate::__private::push_mul_eq(&mut $tokens);
|
1139
|
+
};
|
1140
|
+
|
1141
|
+
(!= $tokens:ident) => {
|
1142
|
+
$crate::__private::push_ne(&mut $tokens);
|
1143
|
+
};
|
1144
|
+
|
1145
|
+
(| $tokens:ident) => {
|
1146
|
+
$crate::__private::push_or(&mut $tokens);
|
1147
|
+
};
|
1148
|
+
|
1149
|
+
(|= $tokens:ident) => {
|
1150
|
+
$crate::__private::push_or_eq(&mut $tokens);
|
1151
|
+
};
|
1152
|
+
|
1153
|
+
(|| $tokens:ident) => {
|
1154
|
+
$crate::__private::push_or_or(&mut $tokens);
|
1155
|
+
};
|
1156
|
+
|
1157
|
+
(? $tokens:ident) => {
|
1158
|
+
$crate::__private::push_question(&mut $tokens);
|
1159
|
+
};
|
1160
|
+
|
1161
|
+
(-> $tokens:ident) => {
|
1162
|
+
$crate::__private::push_rarrow(&mut $tokens);
|
1163
|
+
};
|
1164
|
+
|
1165
|
+
(<- $tokens:ident) => {
|
1166
|
+
$crate::__private::push_larrow(&mut $tokens);
|
1167
|
+
};
|
1168
|
+
|
1169
|
+
(% $tokens:ident) => {
|
1170
|
+
$crate::__private::push_rem(&mut $tokens);
|
1171
|
+
};
|
1172
|
+
|
1173
|
+
(%= $tokens:ident) => {
|
1174
|
+
$crate::__private::push_rem_eq(&mut $tokens);
|
1175
|
+
};
|
1176
|
+
|
1177
|
+
(=> $tokens:ident) => {
|
1178
|
+
$crate::__private::push_fat_arrow(&mut $tokens);
|
1179
|
+
};
|
1180
|
+
|
1181
|
+
(<< $tokens:ident) => {
|
1182
|
+
$crate::__private::push_shl(&mut $tokens);
|
1183
|
+
};
|
1184
|
+
|
1185
|
+
(<<= $tokens:ident) => {
|
1186
|
+
$crate::__private::push_shl_eq(&mut $tokens);
|
1187
|
+
};
|
1188
|
+
|
1189
|
+
(>> $tokens:ident) => {
|
1190
|
+
$crate::__private::push_shr(&mut $tokens);
|
1191
|
+
};
|
1192
|
+
|
1193
|
+
(>>= $tokens:ident) => {
|
1194
|
+
$crate::__private::push_shr_eq(&mut $tokens);
|
1195
|
+
};
|
1196
|
+
|
1197
|
+
(* $tokens:ident) => {
|
1198
|
+
$crate::__private::push_star(&mut $tokens);
|
1199
|
+
};
|
1200
|
+
|
1201
|
+
(- $tokens:ident) => {
|
1202
|
+
$crate::__private::push_sub(&mut $tokens);
|
1203
|
+
};
|
1204
|
+
|
1205
|
+
(-= $tokens:ident) => {
|
1206
|
+
$crate::__private::push_sub_eq(&mut $tokens);
|
1207
|
+
};
|
1208
|
+
|
1209
|
+
($lifetime:lifetime $tokens:ident) => {
|
1210
|
+
$crate::__private::push_lifetime(&mut $tokens, stringify!($lifetime));
|
1211
|
+
};
|
1212
|
+
|
1213
|
+
(_ $tokens:ident) => {
|
1214
|
+
$crate::__private::push_underscore(&mut $tokens);
|
1215
|
+
};
|
1216
|
+
|
1217
|
+
($other:tt $tokens:ident) => {
|
1218
|
+
$crate::__private::parse(&mut $tokens, stringify!($other));
|
1219
|
+
};
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
// See the comment above `quote_token!` about the rule ordering.
|
1223
|
+
#[macro_export]
|
1224
|
+
#[doc(hidden)]
|
1225
|
+
macro_rules! quote_token_spanned {
|
1226
|
+
($ident:ident $tokens:ident $span:ident) => {
|
1227
|
+
$crate::__private::push_ident_spanned(&mut $tokens, $span, stringify!($ident));
|
1228
|
+
};
|
1229
|
+
|
1230
|
+
(:: $tokens:ident $span:ident) => {
|
1231
|
+
$crate::__private::push_colon2_spanned(&mut $tokens, $span);
|
1232
|
+
};
|
1233
|
+
|
1234
|
+
(( $($inner:tt)* ) $tokens:ident $span:ident) => {
|
1235
|
+
$crate::__private::push_group_spanned(
|
1236
|
+
&mut $tokens,
|
1237
|
+
$span,
|
1238
|
+
$crate::__private::Delimiter::Parenthesis,
|
1239
|
+
$crate::quote_spanned!($span=> $($inner)*),
|
1240
|
+
);
|
1241
|
+
};
|
1242
|
+
|
1243
|
+
([ $($inner:tt)* ] $tokens:ident $span:ident) => {
|
1244
|
+
$crate::__private::push_group_spanned(
|
1245
|
+
&mut $tokens,
|
1246
|
+
$span,
|
1247
|
+
$crate::__private::Delimiter::Bracket,
|
1248
|
+
$crate::quote_spanned!($span=> $($inner)*),
|
1249
|
+
);
|
1250
|
+
};
|
1251
|
+
|
1252
|
+
({ $($inner:tt)* } $tokens:ident $span:ident) => {
|
1253
|
+
$crate::__private::push_group_spanned(
|
1254
|
+
&mut $tokens,
|
1255
|
+
$span,
|
1256
|
+
$crate::__private::Delimiter::Brace,
|
1257
|
+
$crate::quote_spanned!($span=> $($inner)*),
|
1258
|
+
);
|
1259
|
+
};
|
1260
|
+
|
1261
|
+
(# $tokens:ident $span:ident) => {
|
1262
|
+
$crate::__private::push_pound_spanned(&mut $tokens, $span);
|
1263
|
+
};
|
1264
|
+
|
1265
|
+
(, $tokens:ident $span:ident) => {
|
1266
|
+
$crate::__private::push_comma_spanned(&mut $tokens, $span);
|
1267
|
+
};
|
1268
|
+
|
1269
|
+
(. $tokens:ident $span:ident) => {
|
1270
|
+
$crate::__private::push_dot_spanned(&mut $tokens, $span);
|
1271
|
+
};
|
1272
|
+
|
1273
|
+
(; $tokens:ident $span:ident) => {
|
1274
|
+
$crate::__private::push_semi_spanned(&mut $tokens, $span);
|
1275
|
+
};
|
1276
|
+
|
1277
|
+
(: $tokens:ident $span:ident) => {
|
1278
|
+
$crate::__private::push_colon_spanned(&mut $tokens, $span);
|
1279
|
+
};
|
1280
|
+
|
1281
|
+
(+ $tokens:ident $span:ident) => {
|
1282
|
+
$crate::__private::push_add_spanned(&mut $tokens, $span);
|
1283
|
+
};
|
1284
|
+
|
1285
|
+
(+= $tokens:ident $span:ident) => {
|
1286
|
+
$crate::__private::push_add_eq_spanned(&mut $tokens, $span);
|
1287
|
+
};
|
1288
|
+
|
1289
|
+
(& $tokens:ident $span:ident) => {
|
1290
|
+
$crate::__private::push_and_spanned(&mut $tokens, $span);
|
1291
|
+
};
|
1292
|
+
|
1293
|
+
(&& $tokens:ident $span:ident) => {
|
1294
|
+
$crate::__private::push_and_and_spanned(&mut $tokens, $span);
|
1295
|
+
};
|
1296
|
+
|
1297
|
+
(&= $tokens:ident $span:ident) => {
|
1298
|
+
$crate::__private::push_and_eq_spanned(&mut $tokens, $span);
|
1299
|
+
};
|
1300
|
+
|
1301
|
+
(@ $tokens:ident $span:ident) => {
|
1302
|
+
$crate::__private::push_at_spanned(&mut $tokens, $span);
|
1303
|
+
};
|
1304
|
+
|
1305
|
+
(! $tokens:ident $span:ident) => {
|
1306
|
+
$crate::__private::push_bang_spanned(&mut $tokens, $span);
|
1307
|
+
};
|
1308
|
+
|
1309
|
+
(^ $tokens:ident $span:ident) => {
|
1310
|
+
$crate::__private::push_caret_spanned(&mut $tokens, $span);
|
1311
|
+
};
|
1312
|
+
|
1313
|
+
(^= $tokens:ident $span:ident) => {
|
1314
|
+
$crate::__private::push_caret_eq_spanned(&mut $tokens, $span);
|
1315
|
+
};
|
1316
|
+
|
1317
|
+
(/ $tokens:ident $span:ident) => {
|
1318
|
+
$crate::__private::push_div_spanned(&mut $tokens, $span);
|
1319
|
+
};
|
1320
|
+
|
1321
|
+
(/= $tokens:ident $span:ident) => {
|
1322
|
+
$crate::__private::push_div_eq_spanned(&mut $tokens, $span);
|
1323
|
+
};
|
1324
|
+
|
1325
|
+
(.. $tokens:ident $span:ident) => {
|
1326
|
+
$crate::__private::push_dot2_spanned(&mut $tokens, $span);
|
1327
|
+
};
|
1328
|
+
|
1329
|
+
(... $tokens:ident $span:ident) => {
|
1330
|
+
$crate::__private::push_dot3_spanned(&mut $tokens, $span);
|
1331
|
+
};
|
1332
|
+
|
1333
|
+
(..= $tokens:ident $span:ident) => {
|
1334
|
+
$crate::__private::push_dot_dot_eq_spanned(&mut $tokens, $span);
|
1335
|
+
};
|
1336
|
+
|
1337
|
+
(= $tokens:ident $span:ident) => {
|
1338
|
+
$crate::__private::push_eq_spanned(&mut $tokens, $span);
|
1339
|
+
};
|
1340
|
+
|
1341
|
+
(== $tokens:ident $span:ident) => {
|
1342
|
+
$crate::__private::push_eq_eq_spanned(&mut $tokens, $span);
|
1343
|
+
};
|
1344
|
+
|
1345
|
+
(>= $tokens:ident $span:ident) => {
|
1346
|
+
$crate::__private::push_ge_spanned(&mut $tokens, $span);
|
1347
|
+
};
|
1348
|
+
|
1349
|
+
(> $tokens:ident $span:ident) => {
|
1350
|
+
$crate::__private::push_gt_spanned(&mut $tokens, $span);
|
1351
|
+
};
|
1352
|
+
|
1353
|
+
(<= $tokens:ident $span:ident) => {
|
1354
|
+
$crate::__private::push_le_spanned(&mut $tokens, $span);
|
1355
|
+
};
|
1356
|
+
|
1357
|
+
(< $tokens:ident $span:ident) => {
|
1358
|
+
$crate::__private::push_lt_spanned(&mut $tokens, $span);
|
1359
|
+
};
|
1360
|
+
|
1361
|
+
(*= $tokens:ident $span:ident) => {
|
1362
|
+
$crate::__private::push_mul_eq_spanned(&mut $tokens, $span);
|
1363
|
+
};
|
1364
|
+
|
1365
|
+
(!= $tokens:ident $span:ident) => {
|
1366
|
+
$crate::__private::push_ne_spanned(&mut $tokens, $span);
|
1367
|
+
};
|
1368
|
+
|
1369
|
+
(| $tokens:ident $span:ident) => {
|
1370
|
+
$crate::__private::push_or_spanned(&mut $tokens, $span);
|
1371
|
+
};
|
1372
|
+
|
1373
|
+
(|= $tokens:ident $span:ident) => {
|
1374
|
+
$crate::__private::push_or_eq_spanned(&mut $tokens, $span);
|
1375
|
+
};
|
1376
|
+
|
1377
|
+
(|| $tokens:ident $span:ident) => {
|
1378
|
+
$crate::__private::push_or_or_spanned(&mut $tokens, $span);
|
1379
|
+
};
|
1380
|
+
|
1381
|
+
(? $tokens:ident $span:ident) => {
|
1382
|
+
$crate::__private::push_question_spanned(&mut $tokens, $span);
|
1383
|
+
};
|
1384
|
+
|
1385
|
+
(-> $tokens:ident $span:ident) => {
|
1386
|
+
$crate::__private::push_rarrow_spanned(&mut $tokens, $span);
|
1387
|
+
};
|
1388
|
+
|
1389
|
+
(<- $tokens:ident $span:ident) => {
|
1390
|
+
$crate::__private::push_larrow_spanned(&mut $tokens, $span);
|
1391
|
+
};
|
1392
|
+
|
1393
|
+
(% $tokens:ident $span:ident) => {
|
1394
|
+
$crate::__private::push_rem_spanned(&mut $tokens, $span);
|
1395
|
+
};
|
1396
|
+
|
1397
|
+
(%= $tokens:ident $span:ident) => {
|
1398
|
+
$crate::__private::push_rem_eq_spanned(&mut $tokens, $span);
|
1399
|
+
};
|
1400
|
+
|
1401
|
+
(=> $tokens:ident $span:ident) => {
|
1402
|
+
$crate::__private::push_fat_arrow_spanned(&mut $tokens, $span);
|
1403
|
+
};
|
1404
|
+
|
1405
|
+
(<< $tokens:ident $span:ident) => {
|
1406
|
+
$crate::__private::push_shl_spanned(&mut $tokens, $span);
|
1407
|
+
};
|
1408
|
+
|
1409
|
+
(<<= $tokens:ident $span:ident) => {
|
1410
|
+
$crate::__private::push_shl_eq_spanned(&mut $tokens, $span);
|
1411
|
+
};
|
1412
|
+
|
1413
|
+
(>> $tokens:ident $span:ident) => {
|
1414
|
+
$crate::__private::push_shr_spanned(&mut $tokens, $span);
|
1415
|
+
};
|
1416
|
+
|
1417
|
+
(>>= $tokens:ident $span:ident) => {
|
1418
|
+
$crate::__private::push_shr_eq_spanned(&mut $tokens, $span);
|
1419
|
+
};
|
1420
|
+
|
1421
|
+
(* $tokens:ident $span:ident) => {
|
1422
|
+
$crate::__private::push_star_spanned(&mut $tokens, $span);
|
1423
|
+
};
|
1424
|
+
|
1425
|
+
(- $tokens:ident $span:ident) => {
|
1426
|
+
$crate::__private::push_sub_spanned(&mut $tokens, $span);
|
1427
|
+
};
|
1428
|
+
|
1429
|
+
(-= $tokens:ident $span:ident) => {
|
1430
|
+
$crate::__private::push_sub_eq_spanned(&mut $tokens, $span);
|
1431
|
+
};
|
1432
|
+
|
1433
|
+
($lifetime:lifetime $tokens:ident $span:ident) => {
|
1434
|
+
$crate::__private::push_lifetime_spanned(&mut $tokens, $span, stringify!($lifetime));
|
1435
|
+
};
|
1436
|
+
|
1437
|
+
(_ $tokens:ident $span:ident) => {
|
1438
|
+
$crate::__private::push_underscore_spanned(&mut $tokens, $span);
|
1439
|
+
};
|
1440
|
+
|
1441
|
+
($other:tt $tokens:ident $span:ident) => {
|
1442
|
+
$crate::__private::parse_spanned(&mut $tokens, $span, stringify!($other));
|
1443
|
+
};
|
1444
|
+
}
|