wasmtime 10.0.1 → 12.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 +314 -247
- data/ext/Cargo.toml +7 -7
- 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/builtin_split_dwarf_loader.rs +164 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/function.rs +555 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/lazy.rs +31 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/addr2line-0.21.0/tests/correctness.rs +126 -0
- data/ext/cargo-vendor/addr2line-0.21.0/tests/output_equivalence.rs +135 -0
- data/ext/cargo-vendor/addr2line-0.21.0/tests/parse.rs +114 -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/bytes-1.4.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bytes-1.4.0/CHANGELOG.md +283 -0
- data/ext/cargo-vendor/bytes-1.4.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/bytes-1.4.0/LICENSE +25 -0
- data/ext/cargo-vendor/bytes-1.4.0/README.md +56 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/buf.rs +186 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/bytes.rs +120 -0
- data/ext/cargo-vendor/bytes-1.4.0/benches/bytes_mut.rs +266 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/miri.sh +11 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/test-stable.sh +28 -0
- data/ext/cargo-vendor/bytes-1.4.0/ci/tsan.sh +13 -0
- data/ext/cargo-vendor/bytes-1.4.0/clippy.toml +1 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_impl.rs +1394 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_mut.rs +1493 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/chain.rs +242 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/iter.rs +130 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/limit.rs +75 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/mod.rs +41 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/reader.rs +81 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/take.rs +155 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/uninit_slice.rs +213 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/vec_deque.rs +22 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/buf/writer.rs +88 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/bytes.rs +1304 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/bytes_mut.rs +1812 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/debug.rs +49 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/hex.rs +37 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/fmt/mod.rs +5 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/lib.rs +117 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/loom.rs +30 -0
- data/ext/cargo-vendor/bytes-1.4.0/src/serde.rs +89 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf.rs +120 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf_mut.rs +178 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes.rs +1210 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_odd_alloc.rs +97 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_vec_alloc.rs +143 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_chain.rs +177 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_debug.rs +35 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_iter.rs +21 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_reader.rs +29 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_serde.rs +20 -0
- data/ext/cargo-vendor/bytes-1.4.0/tests/test_take.rs +32 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/cap-fs-ext-2.0.0/src/is_file_read_write.rs +61 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/Cargo.toml +81 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/fs/mod.rs +125 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/net/pool.rs +284 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/copy_impl.rs +233 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/metadata_ext.rs +384 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/oflags.rs +98 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/open_unchecked.rs +71 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/reopen_impl.rs +18 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/set_permissions_impl.rs +49 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/stat_unchecked.rs +79 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/times.rs +61 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/linux/fs/procfs.rs +81 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/create_file_at_w.rs +273 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/metadata_ext.rs +214 -0
- data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/open_unchecked.rs +228 -0
- data/ext/cargo-vendor/cap-rand-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-rand-2.0.0/Cargo.toml +38 -0
- data/ext/cargo-vendor/cap-std-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-std-2.0.0/Cargo.toml +67 -0
- data/ext/cargo-vendor/cap-std-2.0.0/build.rs +41 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/fs/file.rs +614 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/fs_utf8/file.rs +608 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/lib.rs +51 -0
- data/ext/cargo-vendor/cap-std-2.0.0/src/net/udp_socket.rs +418 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/src/monotonic_clock.rs +62 -0
- data/ext/cargo-vendor/cap-time-ext-2.0.0/src/system_clock.rs +59 -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.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +159 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/build.rs +391 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/cursor.rs +644 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +411 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +469 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +155 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/libcall.rs +232 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +1543 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +3919 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +3039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +4048 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +873 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +2907 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/mod.rs +250 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/call_conv.rs +119 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/mod.rs +436 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +985 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +3254 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/encode.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +2125 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/vector.rs +939 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +2972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst_vector.isle +1650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +620 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +2002 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/mod.rs +228 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/abi.rs +948 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst.isle +5043 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower/isle.rs +1039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower.isle +3983 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/mod.rs +225 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +1204 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/rex.rs +588 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/args.rs +2193 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit.rs +4298 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_state.rs +72 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_tests.rs +5678 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/mod.rs +2759 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst.isle +5079 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower/isle.rs +1096 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +4651 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.rs +340 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/mod.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isle_prelude.rs +894 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +2641 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +2365 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +837 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/lower.rs +1393 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/mod.rs +551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/reg.rs +556 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +1591 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +200 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/extends.isle +41 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +177 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/vector.isle +8 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude.isle +594 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude_lower.isle +1024 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/settings.rs +601 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/timing.rs +271 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/unionfind.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +32 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +26 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/cdsl/settings.rs +429 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +1785 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/arm64.rs +53 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/mod.rs +66 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/riscv64.rs +101 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/s390x.rs +39 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/x86.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/lib.rs +59 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/instructions.rs +3847 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/mod.rs +88 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/settings.rs +341 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +38 -0
- data/ext/cargo-vendor/cranelift-native-0.99.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +85 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +3608 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +942 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +913 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +431 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +420 -0
- data/ext/cargo-vendor/cranelift-wasm-0.99.1/tests/wasm_testsuite.rs +153 -0
- data/ext/cargo-vendor/fs-set-times-0.20.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/fs-set-times-0.20.0/Cargo.toml +45 -0
- data/ext/cargo-vendor/futures-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-0.3.28/Cargo.toml +147 -0
- data/ext/cargo-vendor/futures-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-0.3.28/README.md +61 -0
- data/ext/cargo-vendor/futures-0.3.28/src/lib.rs +260 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/_require_features.rs +13 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/async_await_macros.rs +393 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/auto_traits.rs +1891 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/bilock.rs +104 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/compat.rs +16 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/eager_drop.rs +121 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/eventual.rs +179 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_abortable.rs +44 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_basic_combinators.rs +104 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_fuse.rs +12 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_inspect.rs +16 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_join.rs +32 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_join_all.rs +41 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_obj.rs +33 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_select_all.rs +25 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_select_ok.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_shared.rs +273 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_try_flatten_stream.rs +83 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/future_try_join_all.rs +46 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_reader.rs +432 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_writer.rs +239 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_cursor.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_line_writer.rs +73 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_lines.rs +60 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read.rs +64 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_exact.rs +17 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_line.rs +58 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_end.rs +65 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_string.rs +44 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_read_until.rs +60 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_window.rs +30 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/io_write.rs +65 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/lock_mutex.rs +69 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/macro_comma_support.rs +43 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/object_safety.rs +49 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/oneshot.rs +78 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/ready_queue.rs +148 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/recurse.rs +25 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/sink.rs +554 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/sink_fanout.rs +24 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream.rs +537 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_abortable.rs +46 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_buffer_unordered.rs +73 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_catch_unwind.rs +27 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_ordered.rs +172 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_unordered.rs +383 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_into_async_read.rs +94 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_peekable.rs +58 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_all.rs +197 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_next_some.rs +86 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_split.rs +57 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_try_stream.rs +134 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/stream_unfold.rs +32 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/task_arc_wake.rs +79 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/task_atomic_waker.rs +48 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/test_macro.rs +20 -0
- data/ext/cargo-vendor/futures-0.3.28/tests/try_join.rs +35 -0
- data/ext/cargo-vendor/futures-0.3.28/tests_disabled/all.rs +400 -0
- data/ext/cargo-vendor/futures-0.3.28/tests_disabled/stream.rs +368 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/Cargo.toml +52 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/benches/sync_mpsc.rs +135 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/lib.rs +42 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/lock.rs +102 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/mod.rs +1359 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/queue.rs +174 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/sink_impl.rs +73 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/src/oneshot.rs +488 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/channel.rs +66 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-close.rs +299 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-size_hint.rs +40 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc.rs +634 -0
- data/ext/cargo-vendor/futures-channel-0.3.28/tests/oneshot.rs +256 -0
- data/ext/cargo-vendor/futures-core-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-core-0.3.28/Cargo.toml +44 -0
- data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-core-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-core-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-core-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/future.rs +103 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/lib.rs +27 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/stream.rs +235 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/atomic_waker.rs +421 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/mod.rs +4 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/mod.rs +10 -0
- data/ext/cargo-vendor/futures-core-0.3.28/src/task/poll.rs +12 -0
- data/ext/cargo-vendor/futures-io-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-io-0.3.28/Cargo.toml +37 -0
- data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-io-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-io-0.3.28/src/lib.rs +558 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/Cargo.toml +33 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-sink-0.3.28/src/lib.rs +240 -0
- data/ext/cargo-vendor/futures-task-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-task-0.3.28/Cargo.toml +37 -0
- data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-task-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-task-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-task-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/arc_wake.rs +49 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/future_obj.rs +335 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/lib.rs +50 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/noop_waker.rs +63 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/spawn.rs +192 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/waker.rs +59 -0
- data/ext/cargo-vendor/futures-task-0.3.28/src/waker_ref.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/futures-util-0.3.28/Cargo.toml +135 -0
- data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-APACHE +202 -0
- data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-MIT +26 -0
- data/ext/cargo-vendor/futures-util-0.3.28/README.md +23 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/bilock.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/flatten_unordered.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/futures_unordered.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/benches/select.rs +35 -0
- data/ext/cargo-vendor/futures-util-0.3.28/build.rs +41 -0
- data/ext/cargo-vendor/futures-util-0.3.28/no_atomic_cas.rs +17 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/abortable.rs +209 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/join_mod.rs +110 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/mod.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/pending.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/poll.rs +39 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/random.rs +54 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/select_mod.rs +336 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/stream_select_mod.rs +40 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat01as03.rs +454 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat03as01.rs +265 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/executor.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/compat/mod.rs +22 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/fns.rs +372 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/abortable.rs +19 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/either.rs +317 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/catch_unwind.rs +38 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/flatten.rs +153 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/fuse.rs +91 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/map.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/mod.rs +610 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/remote_handle.rs +126 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/shared.rs +413 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/join.rs +217 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/join_all.rs +166 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/lazy.rs +60 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/maybe_done.rs +104 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/mod.rs +131 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/option.rs +64 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/pending.rs +55 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_fn.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_immediate.rs +126 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/ready.rs +82 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select.rs +134 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_all.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_ok.rs +85 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/into_future.rs +36 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/mod.rs +625 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten.rs +162 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten_err.rs +62 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join.rs +256 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join_all.rs +200 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_maybe_done.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_select.rs +85 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/allow_std.rs +200 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_reader.rs +263 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_writer.rs +224 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/chain.rs +142 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/close.rs +28 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf.rs +78 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf_abortable.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/cursor.rs +232 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/empty.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/fill_buf.rs +51 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/flush.rs +31 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/into_sink.rs +82 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/line_writer.rs +155 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/lines.rs +47 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/mod.rs +841 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_exact.rs +42 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_line.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_end.rs +91 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_string.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_until.rs +60 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_vectored.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/repeat.rs +66 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/seek.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/sink.rs +67 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/split.rs +115 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/take.rs +125 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/window.rs +104 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all_vectored.rs +193 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_vectored.rs +30 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lib.rs +337 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/bilock.rs +293 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mod.rs +27 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mutex.rs +551 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/never.rs +18 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/buffer.rs +105 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/close.rs +32 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/drain.rs +59 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/err_into.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/fanout.rs +111 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/feed.rs +43 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/flush.rs +36 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/map_err.rs +65 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/mod.rs +344 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send.rs +41 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send_all.rs +100 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/unfold.rs +89 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with.rs +134 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with_flat_map.rs +127 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/abortable.rs +19 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/empty.rs +45 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_ordered.rs +244 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/abort.rs +12 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/iter.rs +172 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/mod.rs +661 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/ready_to_run_queue.rs +122 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/task.rs +125 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/iter.rs +49 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/mod.rs +148 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/once.rs +67 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/pending.rs +45 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_fn.rs +57 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_immediate.rs +80 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat.rs +58 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat_with.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select.rs +117 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_all.rs +249 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_with_strategy.rs +304 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/all.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/any.rs +92 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffer_unordered.rs +120 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffered.rs +118 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/catch_unwind.rs +61 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chain.rs +76 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chunks.rs +103 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/collect.rs +56 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/concat.rs +62 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/count.rs +53 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/cycle.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/enumerate.rs +64 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter.rs +117 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter_map.rs +111 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten.rs +73 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten_unordered.rs +536 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fold.rs +88 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each.rs +78 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each_concurrent.rs +119 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/forward.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fuse.rs +75 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/into_future.rs +90 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/map.rs +77 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/mod.rs +1691 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/next.rs +34 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/peek.rs +433 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/ready_chunks.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/scan.rs +128 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/select_next_some.rs +42 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip.rs +70 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip_while.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/split.rs +144 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_until.rs +170 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_while.rs +124 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/then.rs +101 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/unzip.rs +63 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/zip.rs +128 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/and_then.rs +105 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_async_read.rs +166 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_stream.rs +52 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/mod.rs +1130 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/or_else.rs +109 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffer_unordered.rs +86 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffered.rs +87 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_chunks.rs +132 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_collect.rs +52 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_concat.rs +51 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter.rs +112 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter_map.rs +106 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten.rs +84 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten_unordered.rs +176 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_fold.rs +93 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each.rs +68 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each_concurrent.rs +133 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_next.rs +34 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_skip_while.rs +120 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_take_while.rs +129 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_unfold.rs +122 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/stream/unfold.rs +119 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/task/mod.rs +37 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/task/spawn.rs +169 -0
- data/ext/cargo-vendor/futures-util-0.3.28/src/unfold_state.rs +39 -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/io-extras-0.18.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/io-extras-0.18.0/Cargo.toml +94 -0
- data/ext/cargo-vendor/io-extras-0.18.0/README.md +33 -0
- data/ext/cargo-vendor/io-extras-0.18.0/build.rs +43 -0
- data/ext/cargo-vendor/io-extras-0.18.0/src/os/windows/stdio.rs +328 -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/endian.rs +831 -0
- data/ext/cargo-vendor/object-0.32.0/src/lib.rs +116 -0
- data/ext/cargo-vendor/object-0.32.0/src/macho.rs +3307 -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/comdat.rs +207 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/file.rs +364 -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/coff/relocation.rs +104 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/section.rs +574 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/symbol.rs +626 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/attributes.rs +303 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/comdat.rs +160 -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/hash.rs +220 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/mod.rs +42 -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/section.rs +1146 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/segment.rs +332 -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/elf/version.rs +421 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/dyld_cache.rs +343 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/file.rs +731 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/load_command.rs +373 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/section.rs +387 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/segment.rs +301 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/macho/symbol.rs +488 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/pe/data_directory.rs +211 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/pe/file.rs +1029 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/pe/resource.rs +207 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/pe/rich.rs +91 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/pe/section.rs +434 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/read_cache.rs +182 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/read_ref.rs +137 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/traits.rs +469 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/util.rs +425 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/wasm.rs +951 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/comdat.rs +129 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/section.rs +427 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/segment.rs +113 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/symbol.rs +695 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/coff.rs +725 -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/elf/writer.rs +2143 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/mod.rs +943 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/string.rs +159 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/util.rs +260 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/xcoff.rs +556 -0
- data/ext/cargo-vendor/object-0.32.0/src/xcoff.rs +893 -0
- data/ext/cargo-vendor/object-0.32.0/tests/read/coff.rs +23 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/elf.rs +289 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/CONTRIBUTING.md +21 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.lock +1000 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.toml +100 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/README.md +167 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/html_rendering.rs +97 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/lib.rs +51 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/markdown-it.rs +29 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/build.rs +189 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/broken-link-callbacks.rs +35 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/event-filter.rs +27 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-event-print.rs +31 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-tag-print.rs +73 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/string-to-string.rs +24 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/escape.rs +369 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/firstpass.rs +1927 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/html.rs +478 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/lib.rs +290 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/linklabel.rs +135 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/main.rs +123 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/parse.rs +1927 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/puncttable.rs +351 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/scanners.rs +1327 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/strings.rs +373 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/tree.rs +276 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/errors.rs +131 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/html.rs +250 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/lib.rs +421 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/serde.rs +78 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_strikethrough.rs +37 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_table.rs +205 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/heading_attrs.rs +571 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/mod.rs +14 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/regression.rs +1033 -0
- data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/spec.rs +8490 -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/system-interface-0.26.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/system-interface-0.26.0/Cargo.toml +105 -0
- data/ext/cargo-vendor/system-interface-0.26.0/build.rs +53 -0
- data/ext/cargo-vendor/system-interface-0.26.0/src/fs/file_io_ext.rs +1185 -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-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.0/Cargo.toml +96 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.0/src/sched/unix.rs +82 -0
- data/ext/cargo-vendor/wasi-common-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-12.0.0/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasi-common-12.0.0/src/file.rs +269 -0
- data/ext/cargo-vendor/wasi-common-12.0.0/src/sched/subscription.rs +77 -0
- data/ext/cargo-vendor/wasi-common-12.0.0/src/snapshots/preview_1/error.rs +265 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +644 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +54 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/benches/benchmark.rs +349 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/lib.rs +726 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +59 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/parser.rs +1612 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/canonicals.rs +120 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +548 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/elements.rs +152 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +1141 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +3144 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +1314 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/operators.rs +3466 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +3197 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +1568 -0
- data/ext/cargo-vendor/wasmparser-0.110.0/tests/big-module.rs +33 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/Cargo.toml +186 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/README.md +119 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/compiler.rs +666 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/component.rs +466 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/host.rs +456 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/options.rs +510 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/typed.rs +2326 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func.rs +718 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/instance.rs +781 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/linker.rs +479 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/matching.rs +215 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/mod.rs +316 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/resources.rs +716 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/storage.rs +43 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/types.rs +562 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/component/values.rs +1376 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/config.rs +2096 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/coredump.rs +115 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/engine/serialization.rs +629 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/engine.rs +756 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/externals.rs +768 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/func.rs +2356 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/instance.rs +883 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/lib.rs +490 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/memory.rs +954 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/module/registry.rs +329 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/module.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/resources.rs +33 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/store/data.rs +283 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/store/func_refs.rs +85 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/store.rs +2212 -0
- data/ext/cargo-vendor/wasmtime-12.0.0/src/trap.rs +639 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.0/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/src/bindgen.rs +343 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/src/component.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/tests/codegen.rs +26 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.0/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/Cargo.toml +93 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/builder.rs +116 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/compiler/component.rs +959 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/expression.rs +1250 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/unit.rs +522 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/utils.rs +187 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/func_environ.rs +2377 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/lib.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/src/lib.rs +129 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/src/obj.rs +565 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/Cargo.lock +736 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/examples/factc.rs +207 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/compilation.rs +400 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/compiler.rs +47 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/dfg.rs +678 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/info.rs +583 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate/adapt.rs +457 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate/inline.rs +1327 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate.rs +943 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/types/resources.rs +240 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/types.rs +1920 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component.rs +95 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/signature.rs +135 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/trampoline.rs +3269 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/transcode.rs +168 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact.rs +713 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/module_environ.rs +887 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/obj.rs +172 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/trap_encoding.rs +246 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/tunables.rs +115 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/Cargo.toml +51 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/build.rs +26 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/aarch64.rs +184 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/arm.rs +85 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/riscv64.rs +158 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/s390x.S +123 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/x86_64.rs +160 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix.rs +215 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/windows.c +9 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/windows.rs +162 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.0/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.0/src/code_memory.rs +313 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.0/src/profiling.rs +108 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/src/gdb_jit_int.rs +130 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/Cargo.toml +119 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/build.rs +19 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component/libcalls.rs +574 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component/resources.rs +327 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component.rs +853 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/debug_builtins.rs +59 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/helpers.c +108 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/instance/allocator/on_demand.rs +127 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/instance/allocator.rs +414 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/lib.rs +289 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/libcalls.rs +627 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/mmap/unix.rs +148 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/send_sync_ptr.rs +77 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/aarch64.rs +42 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/riscv64.rs +43 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/s390x.S +62 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/x86_64.rs +64 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers/coredump.rs +38 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers/unix.rs +402 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers.rs +782 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +504 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/src/lib.rs +66 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/Cargo.toml +191 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/command.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/ctx.rs +237 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/filesystem.rs +216 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/mod.rs +185 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/pipe.rs +846 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/poll.rs +148 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview1/mod.rs +1870 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/clocks.rs +107 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/env.rs +37 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/exit.rs +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/filesystem/sync.rs +613 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/filesystem.rs +1096 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/io.rs +494 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/random.rs +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio/unix.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio/worker_thread_stdin.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio.rs +218 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stream.rs +302 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/table.rs +287 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/deps/io/streams.wit +254 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/deps/poll/poll.wit +39 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/test.wit +28 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.0/src/builder.rs +64 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.0/src/compiler.rs +217 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/lib.rs +1705 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/rust.rs +498 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/types.rs +185 -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-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-12.0.0/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.0/src/config.rs +697 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.0/src/types/flags.rs +92 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/abi/mod.rs +251 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/call.rs +199 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/context.rs +368 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/env.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/mod.rs +330 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/abi.rs +250 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/asm.rs +312 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/masm.rs +293 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/mod.rs +215 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/abi.rs +375 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/asm.rs +855 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/masm.rs +516 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/regs.rs +192 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/masm.rs +352 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/stack.rs +235 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/trampoline.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-0.10.0/src/visitor.rs +656 -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/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +62 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +2199 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +717 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +1437 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/toposort.rs +225 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +1362 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +666 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +116 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +1749 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +145 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/bar/root.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/baz/root.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/root.wit +26 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/deps/foo/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/foo.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +3 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/corp/saas.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/clocks.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/filesystem.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/root.wit +50 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/bar/types.wit +2 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/ignore-me.txt +1 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/world.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/include-reps.wit +15 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/kebab-name-include-with.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/foo.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-pkg1.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/foo.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit +18 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit +44 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit +18 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +3 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/root.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit +11 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/root.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit +12 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unknown-interface.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface2.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface3.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use9.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/root.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world.wit.result +8 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle1.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle4.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/deps/bar/baz.wit +4 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/root.wit +7 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/world-interface-clash.wit.result +5 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-empty.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-borrow.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-own.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple.wit +20 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-borrow.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-own.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources.wit +47 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources1.wit +12 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/shared-types.wit +10 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/stress-export-elaborate.wit +54 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/union-fuzz-1.wit +9 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +22 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-same-fields4.wit +13 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-top-level-resources.wit +24 -0
- data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/worlds-union-dedup.wit +23 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +3331 -2881
- data/ext/cargo-vendor/addr2line-0.19.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/addr2line-0.19.0/CHANGELOG.md +0 -287
- data/ext/cargo-vendor/addr2line-0.19.0/Cargo.lock +0 -466
- data/ext/cargo-vendor/addr2line-0.19.0/Cargo.toml +0 -142
- data/ext/cargo-vendor/addr2line-0.19.0/examples/addr2line.rs +0 -289
- data/ext/cargo-vendor/addr2line-0.19.0/src/function.rs +0 -534
- data/ext/cargo-vendor/addr2line-0.19.0/src/lazy.rs +0 -27
- data/ext/cargo-vendor/addr2line-0.19.0/src/lib.rs +0 -1234
- data/ext/cargo-vendor/addr2line-0.19.0/tests/correctness.rs +0 -92
- data/ext/cargo-vendor/addr2line-0.19.0/tests/output_equivalence.rs +0 -146
- data/ext/cargo-vendor/addr2line-0.19.0/tests/parse.rs +0 -118
- 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/cap-fs-ext-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-fs-ext-1.0.15/Cargo.toml +0 -63
- data/ext/cargo-vendor/cap-fs-ext-1.0.15/src/is_file_read_write.rs +0 -61
- data/ext/cargo-vendor/cap-primitives-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-primitives-1.0.15/Cargo.toml +0 -81
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/fs/mod.rs +0 -125
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/net/pool.rs +0 -284
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/copy_impl.rs +0 -235
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/metadata_ext.rs +0 -385
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/oflags.rs +0 -98
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/open_unchecked.rs +0 -71
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/reopen_impl.rs +0 -18
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/set_permissions_impl.rs +0 -50
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/stat_unchecked.rs +0 -79
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/times.rs +0 -62
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/linux/fs/procfs.rs +0 -76
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/create_file_at_w.rs +0 -274
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/metadata_ext.rs +0 -216
- data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/open_unchecked.rs +0 -229
- data/ext/cargo-vendor/cap-rand-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-rand-1.0.15/Cargo.toml +0 -38
- data/ext/cargo-vendor/cap-std-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-std-1.0.15/Cargo.toml +0 -67
- data/ext/cargo-vendor/cap-std-1.0.15/build.rs +0 -43
- data/ext/cargo-vendor/cap-std-1.0.15/src/fs/file.rs +0 -616
- data/ext/cargo-vendor/cap-std-1.0.15/src/fs_utf8/file.rs +0 -610
- data/ext/cargo-vendor/cap-std-1.0.15/src/lib.rs +0 -53
- data/ext/cargo-vendor/cap-std-1.0.15/src/net/udp_socket.rs +0 -418
- data/ext/cargo-vendor/cap-time-ext-1.0.15/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cap-time-ext-1.0.15/Cargo.toml +0 -42
- data/ext/cargo-vendor/cap-time-ext-1.0.15/src/monotonic_clock.rs +0 -63
- data/ext/cargo-vendor/cap-time-ext-1.0.15/src/system_clock.rs +0 -62
- 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/cursor.rs +0 -644
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/extfunc.rs +0 -421
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/function.rs +0 -485
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/globalvalue.rs +0 -170
- 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/ir/mod.rs +0 -107
- 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/inst.isle +0 -4037
- 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/lower.rs +0 -1388
- 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/cprop.isle +0 -197
- 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/opts/icmp.isle +0 -177
- 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-0.97.1/src/value_label.rs +0 -69
- 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/gen_inst.rs +0 -1784
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/arm64.rs +0 -61
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/mod.rs +0 -67
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/riscv64.rs +0 -108
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/s390x.rs +0 -47
- 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/lib.rs +0 -66
- 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/mod.rs +0 -87
- 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-frontend-0.97.1/src/lib.rs +0 -204
- 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/dummy.rs +0 -924
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/func_translator.rs +0 -440
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/sections_translator.rs +0 -417
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/tests/wasm_testsuite.rs +0 -162
- data/ext/cargo-vendor/fs-set-times-0.19.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/fs-set-times-0.19.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/io-extras-0.17.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/io-extras-0.17.4/Cargo.toml +0 -106
- data/ext/cargo-vendor/io-extras-0.17.4/README.md +0 -33
- data/ext/cargo-vendor/io-extras-0.17.4/build.rs +0 -79
- data/ext/cargo-vendor/io-extras-0.17.4/src/os/windows/stdio.rs +0 -329
- 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/memoffset-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/memoffset-0.8.0/Cargo.toml +0 -36
- data/ext/cargo-vendor/memoffset-0.8.0/LICENSE +0 -19
- data/ext/cargo-vendor/memoffset-0.8.0/README.md +0 -85
- data/ext/cargo-vendor/memoffset-0.8.0/build.rs +0 -25
- data/ext/cargo-vendor/memoffset-0.8.0/src/lib.rs +0 -93
- data/ext/cargo-vendor/memoffset-0.8.0/src/offset_of.rs +0 -356
- data/ext/cargo-vendor/memoffset-0.8.0/src/raw_field.rs +0 -226
- data/ext/cargo-vendor/memoffset-0.8.0/src/span_of.rs +0 -263
- data/ext/cargo-vendor/object-0.30.4/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.30.4/CHANGELOG.md +0 -524
- data/ext/cargo-vendor/object-0.30.4/Cargo.toml +0 -154
- data/ext/cargo-vendor/object-0.30.4/README.md +0 -58
- data/ext/cargo-vendor/object-0.30.4/clippy.toml +0 -1
- data/ext/cargo-vendor/object-0.30.4/src/common.rs +0 -480
- data/ext/cargo-vendor/object-0.30.4/src/elf.rs +0 -6751
- data/ext/cargo-vendor/object-0.30.4/src/endian.rs +0 -771
- data/ext/cargo-vendor/object-0.30.4/src/lib.rs +0 -117
- data/ext/cargo-vendor/object-0.30.4/src/macho.rs +0 -3307
- data/ext/cargo-vendor/object-0.30.4/src/pe.rs +0 -3050
- data/ext/cargo-vendor/object-0.30.4/src/read/any.rs +0 -1341
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/comdat.rs +0 -167
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/file.rs +0 -247
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/mod.rs +0 -18
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/relocation.rs +0 -91
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/section.rs +0 -524
- data/ext/cargo-vendor/object-0.30.4/src/read/coff/symbol.rs +0 -526
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/comdat.rs +0 -162
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/file.rs +0 -885
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/hash.rs +0 -220
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/mod.rs +0 -39
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/note.rs +0 -185
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/relocation.rs +0 -571
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/section.rs +0 -1090
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/segment.rs +0 -333
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/symbol.rs +0 -580
- data/ext/cargo-vendor/object-0.30.4/src/read/elf/version.rs +0 -421
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/dyld_cache.rs +0 -343
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/file.rs +0 -731
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/load_command.rs +0 -353
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/relocation.rs +0 -126
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/section.rs +0 -384
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/segment.rs +0 -303
- data/ext/cargo-vendor/object-0.30.4/src/read/macho/symbol.rs +0 -488
- data/ext/cargo-vendor/object-0.30.4/src/read/mod.rs +0 -725
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/data_directory.rs +0 -211
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/file.rs +0 -1029
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/resource.rs +0 -207
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/rich.rs +0 -91
- data/ext/cargo-vendor/object-0.30.4/src/read/pe/section.rs +0 -436
- data/ext/cargo-vendor/object-0.30.4/src/read/read_cache.rs +0 -185
- data/ext/cargo-vendor/object-0.30.4/src/read/read_ref.rs +0 -137
- data/ext/cargo-vendor/object-0.30.4/src/read/traits.rs +0 -469
- data/ext/cargo-vendor/object-0.30.4/src/read/util.rs +0 -383
- data/ext/cargo-vendor/object-0.30.4/src/read/wasm.rs +0 -908
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/comdat.rs +0 -130
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/relocation.rs +0 -128
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/section.rs +0 -426
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/segment.rs +0 -115
- data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/symbol.rs +0 -634
- data/ext/cargo-vendor/object-0.30.4/src/write/coff.rs +0 -713
- data/ext/cargo-vendor/object-0.30.4/src/write/elf/object.rs +0 -838
- data/ext/cargo-vendor/object-0.30.4/src/write/elf/writer.rs +0 -1955
- data/ext/cargo-vendor/object-0.30.4/src/write/macho.rs +0 -876
- data/ext/cargo-vendor/object-0.30.4/src/write/mod.rs +0 -917
- data/ext/cargo-vendor/object-0.30.4/src/write/string.rs +0 -159
- data/ext/cargo-vendor/object-0.30.4/src/write/util.rs +0 -210
- data/ext/cargo-vendor/object-0.30.4/src/xcoff.rs +0 -893
- data/ext/cargo-vendor/object-0.30.4/tests/read/coff.rs +0 -23
- data/ext/cargo-vendor/object-0.30.4/tests/round_trip/elf.rs +0 -218
- data/ext/cargo-vendor/object-0.30.4/tests/round_trip/mod.rs +0 -451
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/CONTRIBUTING.md +0 -21
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.lock +0 -924
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.toml +0 -68
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/README.md +0 -152
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/html_rendering.rs +0 -101
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/lib.rs +0 -49
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/build.rs +0 -186
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/broken-link-callbacks.rs +0 -37
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/event-filter.rs +0 -29
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/string-to-string.rs +0 -26
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/escape.rs +0 -356
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/html.rs +0 -461
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/lib.rs +0 -76
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/linklabel.rs +0 -135
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/main.rs +0 -109
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/parse.rs +0 -3374
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/puncttable.rs +0 -351
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/scanners.rs +0 -1308
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/simd.rs +0 -248
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/strings.rs +0 -243
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/tree.rs +0 -216
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/errors.rs +0 -44
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/html.rs +0 -252
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/lib.rs +0 -425
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_strikethrough.rs +0 -27
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_table.rs +0 -205
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/mod.rs +0 -13
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/regression.rs +0 -953
- data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/spec.rs +0 -8447
- 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/system-interface-0.25.9/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/system-interface-0.25.9/Cargo.toml +0 -105
- data/ext/cargo-vendor/system-interface-0.25.9/build.rs +0 -55
- data/ext/cargo-vendor/system-interface-0.25.9/src/fs/file_io_ext.rs +0 -1186
- 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-cap-std-sync-10.0.1/src/sched/unix.rs +0 -82
- 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/wasi-common-10.0.1/src/file.rs +0 -262
- data/ext/cargo-vendor/wasi-common-10.0.1/src/sched/subscription.rs +0 -76
- data/ext/cargo-vendor/wasi-common-10.0.1/src/snapshots/preview_1/error.rs +0 -255
- data/ext/cargo-vendor/wasm-encoder-0.29.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.29.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/wasm-encoder-0.29.0/README.md +0 -80
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/aliases.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/canonicals.rs +0 -159
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/components.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/exports.rs +0 -127
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/imports.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/instances.rs +0 -200
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/modules.rs +0 -29
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/names.rs +0 -149
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/start.rs +0 -52
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/types.rs +0 -759
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component.rs +0 -160
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/code.rs +0 -2913
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/custom.rs +0 -55
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/data.rs +0 -185
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/dump.rs +0 -627
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/elements.rs +0 -224
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/exports.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/functions.rs +0 -63
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/globals.rs +0 -90
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/imports.rs +0 -142
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/linking.rs +0 -263
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/memories.rs +0 -99
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/names.rs +0 -265
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/producers.rs +0 -180
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/start.rs +0 -39
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tables.rs +0 -104
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tags.rs +0 -85
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/types.rs +0 -246
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core.rs +0 -168
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/lib.rs +0 -215
- data/ext/cargo-vendor/wasm-encoder-0.29.0/src/raw.rs +0 -30
- data/ext/cargo-vendor/wasmparser-0.107.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.lock +0 -621
- data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.toml +0 -54
- data/ext/cargo-vendor/wasmparser-0.107.0/benches/benchmark.rs +0 -351
- data/ext/cargo-vendor/wasmparser-0.107.0/src/lib.rs +0 -723
- data/ext/cargo-vendor/wasmparser-0.107.0/src/limits.rs +0 -57
- data/ext/cargo-vendor/wasmparser-0.107.0/src/parser.rs +0 -1535
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/canonicals.rs +0 -119
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/types.rs +0 -548
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/elements.rs +0 -158
- data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/types.rs +0 -874
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/component.rs +0 -3082
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/core.rs +0 -1334
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/operators.rs +0 -3463
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/types.rs +0 -3070
- data/ext/cargo-vendor/wasmparser-0.107.0/src/validator.rs +0 -1589
- data/ext/cargo-vendor/wasmparser-0.107.0/tests/big-module.rs +0 -32
- 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/README.md +0 -119
- data/ext/cargo-vendor/wasmtime-10.0.1/src/compiler.rs +0 -710
- 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/linker.rs +0 -404
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/matching.rs +0 -112
- 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/serialization.rs +0 -622
- data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-10.0.1/src/externals.rs +0 -763
- data/ext/cargo-vendor/wasmtime-10.0.1/src/func.rs +0 -2355
- data/ext/cargo-vendor/wasmtime-10.0.1/src/instance.rs +0 -905
- data/ext/cargo-vendor/wasmtime-10.0.1/src/lib.rs +0 -486
- data/ext/cargo-vendor/wasmtime-10.0.1/src/memory.rs +0 -950
- data/ext/cargo-vendor/wasmtime-10.0.1/src/module/registry.rs +0 -321
- data/ext/cargo-vendor/wasmtime-10.0.1/src/module.rs +0 -1274
- data/ext/cargo-vendor/wasmtime-10.0.1/src/store/data.rs +0 -275
- data/ext/cargo-vendor/wasmtime-10.0.1/src/store/func_refs.rs +0 -85
- data/ext/cargo-vendor/wasmtime-10.0.1/src/store.rs +0 -2166
- data/ext/cargo-vendor/wasmtime-10.0.1/src/trap.rs +0 -631
- 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/builder.rs +0 -108
- 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/debug/transform/expression.rs +0 -1250
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/debug/transform/unit.rs +0 -521
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/debug/transform/utils.rs +0 -187
- 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/lib.rs +0 -120
- 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/compilation.rs +0 -400
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/compiler.rs +0 -84
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/dfg.rs +0 -629
- 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/adapt.rs +0 -449
- 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/component/vmcomponent_offsets.rs +0 -336
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component.rs +0 -72
- 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/fact/transcode.rs +0 -168
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact.rs +0 -623
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/module_environ.rs +0 -884
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/trap_encoding.rs +0 -238
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/tunables.rs +0 -111
- 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-fiber-10.0.1/build.rs +0 -23
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/aarch64.rs +0 -184
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/arm.rs +0 -85
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/riscv64.rs +0 -158
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/s390x.S +0 -120
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/x86_64.rs +0 -160
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix.rs +0 -212
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/windows.c +0 -5
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/windows.rs +0 -161
- 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-10.0.1/src/profiling.rs +0 -108
- 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-debug-10.0.1/src/gdb_jit_int.rs +0 -128
- 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/build.rs +0 -17
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component/transcode.rs +0 -451
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/debug_builtins.rs +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/helpers.c +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/instance/allocator.rs +0 -531
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/lib.rs +0 -285
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/libcalls.rs +0 -578
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/mmap/unix.rs +0 -148
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/send_sync_ptr.rs +0 -69
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/aarch64.rs +0 -42
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/riscv64.rs +0 -43
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/s390x.S +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/x86_64.rs +0 -64
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/traphandlers/unix.rs +0 -387
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/traphandlers.rs +0 -749
- 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-types-10.0.1/src/lib.rs +0 -462
- 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/filesystem.rs +0 -269
- 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/preview1/mod.rs +0 -1860
- 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/env.rs +0 -48
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/exit.rs +0 -12
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/filesystem.rs +0 -1020
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/io.rs +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/mod.rs +0 -7
- 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/preview2/random.rs +0 -41
- 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/src/preview2/stdio.rs +0 -176
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/stream.rs +0 -210
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/table.rs +0 -107
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/wasi/command.rs +0 -43
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/wasi/mod.rs +0 -30
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/io/streams.wit +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/test.wit +0 -19
- 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-winch-10.0.1/src/builder.rs +0 -59
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/src/compiler.rs +0 -220
- 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-generate-10.0.1/src/config.rs +0 -696
- data/ext/cargo-vendor/wiggle-generate-10.0.1/src/types/flags.rs +0 -94
- 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/wiggle-macro-10.0.1/LICENSE +0 -220
- 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/winx-0.35.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winx-0.35.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/winx-0.35.1/LICENSE +0 -220
- data/ext/cargo-vendor/winx-0.35.1/README.md +0 -5
- data/ext/cargo-vendor/winx-0.35.1/src/cvt.rs +0 -24
- data/ext/cargo-vendor/winx-0.35.1/src/file.rs +0 -420
- data/ext/cargo-vendor/winx-0.35.1/src/lib.rs +0 -31
- data/ext/cargo-vendor/winx-0.35.1/src/ntdll.rs +0 -69
- data/ext/cargo-vendor/winx-0.35.1/src/time.rs +0 -11
- data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/file.rs +0 -171
- data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/mod.rs +0 -9
- data/ext/cargo-vendor/wit-parser-0.8.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.8.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/wit-parser-0.8.0/src/abi.rs +0 -2134
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/lex.rs +0 -679
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/resolve.rs +0 -1122
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/toposort.rs +0 -204
- data/ext/cargo-vendor/wit-parser-0.8.0/src/ast.rs +0 -1207
- data/ext/cargo-vendor/wit-parser-0.8.0/src/lib.rs +0 -622
- data/ext/cargo-vendor/wit-parser-0.8.0/src/live.rs +0 -111
- data/ext/cargo-vendor/wit-parser-0.8.0/src/resolve.rs +0 -1307
- data/ext/cargo-vendor/wit-parser-0.8.0/src/sizealign.rs +0 -140
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg1.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -8
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unknown-interface.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use9.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle4.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-interface-clash.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/shared-types.wit +0 -10
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-diamond.wit +0 -22
- data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-same-fields4.wit +0 -13
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/rustfmt.toml +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/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_entry_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/metadata_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_follow_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_maybe_dir_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_sync_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/assert_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_path_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_type.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/follow_symlinks.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/is_file_read_write.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonical_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/cow_component.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/read_link_one.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/maybe_owned_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_ambient.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_unchecked_error.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_open_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/reopen.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_times.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/stat.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/open_parent.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/read_link.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/rename.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_times_nofollow.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/symlink.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/cvt.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_root_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/permissions_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_metadata.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/stat_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/monotonic_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_clock.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_time.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/create_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_entry_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_utils.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/errors.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/file_type_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/get_path.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/hard_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_file_read_write_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_same_file.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/oflags.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_options_ext.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_dir_inner.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_all_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_file_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_open_dir_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/rename_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/reopen_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_permissions_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_times_impl.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/stat_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/symlink_unchecked.rs +0 -0
- /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir_entry.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/pool.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/incoming.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_datagram.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_listener.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_stream.rs +0 -0
- /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/src/lib.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.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.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.99.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/unreachable_code.wat +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/README.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/set_times.rs +0 -0
- /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/system_time_spec.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → gimli-0.28.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → io-extras-0.18.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/borrowed.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/grip.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/rustix.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/traits.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/types.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/owned.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/read_write.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → 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/{system-interface-0.25.9 → object-0.32.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/macho.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/src/entities.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/footnotes.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/gfm_tasklist.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/smart_punct.rs +0 -0
- /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/table.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/{system-interface-0.25.9 → system-interface-0.26.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → system-interface-0.26.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/README.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/fd_flags.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/io_ext.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/peek.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/read_ready.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/allocate.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/append.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/fd_flags.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/live_rename.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/peek.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_ready.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/io.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/mod.rs +0 -0
- /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/vectored_at.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-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.29.0 → wasmparser-0.110.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmtime-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-cache-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cranelift-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-12.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-12.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-environ-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-fiber-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-12.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-jit-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-runtime-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-types-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-wasi-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → wasmtime-wit-bindgen-12.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.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/{wast-62.0.1 → 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/{wat-1.0.69 → wiggle-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-generate-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-macro-12.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-12.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.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
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/embedded.wit.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds-same-fields5.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit} +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit} +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/worlds-with-types.wit +0 -0
@@ -0,0 +1,2212 @@
|
|
1
|
+
//! Wasmtime's "store" type
|
2
|
+
//!
|
3
|
+
//! This module, and its submodules, contain the `Store` type and various types
|
4
|
+
//! used to interact with it. At first glance this is a pretty confusing module
|
5
|
+
//! where you need to know the difference between:
|
6
|
+
//!
|
7
|
+
//! * `Store<T>`
|
8
|
+
//! * `StoreContext<T>`
|
9
|
+
//! * `StoreContextMut<T>`
|
10
|
+
//! * `AsContext`
|
11
|
+
//! * `AsContextMut`
|
12
|
+
//! * `StoreInner<T>`
|
13
|
+
//! * `StoreOpaque`
|
14
|
+
//! * `StoreData`
|
15
|
+
//!
|
16
|
+
//! There's... quite a lot going on here, and it's easy to be confused. This
|
17
|
+
//! comment is ideally going to serve the purpose of clarifying what all these
|
18
|
+
//! types are for and why they're motivated.
|
19
|
+
//!
|
20
|
+
//! First it's important to know what's "internal" and what's "external". Almost
|
21
|
+
//! everything above is defined as `pub`, but only some of the items are
|
22
|
+
//! reexported to the outside world to be usable from this crate. Otherwise all
|
23
|
+
//! items are `pub` within this `store` module, and the `store` module is
|
24
|
+
//! private to the `wasmtime` crate. Notably `Store<T>`, `StoreContext<T>`,
|
25
|
+
//! `StoreContextMut<T>`, `AsContext`, and `AsContextMut` are all public
|
26
|
+
//! interfaces to the `wasmtime` crate. You can think of these as:
|
27
|
+
//!
|
28
|
+
//! * `Store<T>` - an owned reference to a store, the "root of everything"
|
29
|
+
//! * `StoreContext<T>` - basically `&StoreInner<T>`
|
30
|
+
//! * `StoreContextMut<T>` - more-or-less `&mut StoreInner<T>` with caveats.
|
31
|
+
//! Explained later.
|
32
|
+
//! * `AsContext` - similar to `AsRef`, but produces `StoreContext<T>`
|
33
|
+
//! * `AsContextMut` - similar to `AsMut`, but produces `StoreContextMut<T>`
|
34
|
+
//!
|
35
|
+
//! Next comes the internal structure of the `Store<T>` itself. This looks like:
|
36
|
+
//!
|
37
|
+
//! * `Store<T>` - this type is just a pointer large. It's primarily just
|
38
|
+
//! intended to be consumed by the outside world. Note that the "just a
|
39
|
+
//! pointer large" is a load-bearing implementation detail in Wasmtime. This
|
40
|
+
//! enables it to store a pointer to its own trait object which doesn't need
|
41
|
+
//! to change over time.
|
42
|
+
//!
|
43
|
+
//! * `StoreInner<T>` - the first layer of the contents of a `Store<T>`, what's
|
44
|
+
//! stored inside the `Box`. This is the general Rust pattern when one struct
|
45
|
+
//! is a layer over another. The surprising part, though, is that this is
|
46
|
+
//! further subdivided. This structure only contains things which actually
|
47
|
+
//! need `T` itself. The downside of this structure is that it's always
|
48
|
+
//! generic and means that code is monomorphized into consumer crates. We
|
49
|
+
//! strive to have things be as monomorphic as possible in `wasmtime` so this
|
50
|
+
//! type is not heavily used.
|
51
|
+
//!
|
52
|
+
//! * `StoreOpaque` - this is the primary contents of the `StoreInner<T>` type.
|
53
|
+
//! Stored inline in the outer type the "opaque" here means that it's a
|
54
|
+
//! "store" but it doesn't have access to the `T`. This is the primary
|
55
|
+
//! "internal" reference that Wasmtime uses since `T` is rarely needed by the
|
56
|
+
//! internals of Wasmtime.
|
57
|
+
//!
|
58
|
+
//! * `StoreData` - this is a final helper struct stored within `StoreOpaque`.
|
59
|
+
//! All references of Wasm items into a `Store` are actually indices into a
|
60
|
+
//! table in this structure, and the `StoreData` being separate makes it a bit
|
61
|
+
//! easier to manage/define/work with. There's no real fundamental reason this
|
62
|
+
//! is split out, although sometimes it's useful to have separate borrows into
|
63
|
+
//! these tables than the `StoreOpaque`.
|
64
|
+
//!
|
65
|
+
//! A major caveat with these representations is that the internal `&mut
|
66
|
+
//! StoreInner<T>` is never handed out publicly to consumers of this crate, only
|
67
|
+
//! through a wrapper of `StoreContextMut<'_, T>`. The reason for this is that
|
68
|
+
//! we want to provide mutable, but not destructive, access to the contents of a
|
69
|
+
//! `Store`. For example if a `StoreInner<T>` were replaced with some other
|
70
|
+
//! `StoreInner<T>` then that would drop live instances, possibly those
|
71
|
+
//! currently executing beneath the current stack frame. This would not be a
|
72
|
+
//! safe operation.
|
73
|
+
//!
|
74
|
+
//! This means, though, that the `wasmtime` crate, which liberally uses `&mut
|
75
|
+
//! StoreOpaque` internally, has to be careful to never actually destroy the
|
76
|
+
//! contents of `StoreOpaque`. This is an invariant that we, as the authors of
|
77
|
+
//! `wasmtime`, must uphold for the public interface to be safe.
|
78
|
+
|
79
|
+
use crate::instance::InstanceData;
|
80
|
+
use crate::linker::Definition;
|
81
|
+
use crate::module::BareModuleInfo;
|
82
|
+
use crate::trampoline::VMHostGlobalContext;
|
83
|
+
use crate::{module::ModuleRegistry, Engine, Module, Trap, Val, ValRaw};
|
84
|
+
use crate::{Global, Instance, Memory};
|
85
|
+
use anyhow::{anyhow, bail, Result};
|
86
|
+
use std::cell::UnsafeCell;
|
87
|
+
use std::convert::TryFrom;
|
88
|
+
use std::fmt;
|
89
|
+
use std::future::Future;
|
90
|
+
use std::marker;
|
91
|
+
use std::mem::{self, ManuallyDrop};
|
92
|
+
use std::ops::{Deref, DerefMut};
|
93
|
+
use std::pin::Pin;
|
94
|
+
use std::ptr;
|
95
|
+
use std::sync::atomic::AtomicU64;
|
96
|
+
use std::sync::Arc;
|
97
|
+
use std::task::{Context, Poll};
|
98
|
+
use wasmtime_runtime::{
|
99
|
+
ExportGlobal, ExportMemory, InstanceAllocationRequest, InstanceAllocator, InstanceHandle,
|
100
|
+
ModuleInfo, OnDemandInstanceAllocator, SignalHandler, StoreBox, StorePtr, VMContext,
|
101
|
+
VMExternRef, VMExternRefActivationsTable, VMFuncRef, VMRuntimeLimits, WasmFault,
|
102
|
+
};
|
103
|
+
|
104
|
+
mod context;
|
105
|
+
pub use self::context::*;
|
106
|
+
mod data;
|
107
|
+
pub use self::data::*;
|
108
|
+
mod func_refs;
|
109
|
+
use func_refs::FuncRefs;
|
110
|
+
|
111
|
+
/// A [`Store`] is a collection of WebAssembly instances and host-defined state.
|
112
|
+
///
|
113
|
+
/// All WebAssembly instances and items will be attached to and refer to a
|
114
|
+
/// [`Store`]. For example instances, functions, globals, and tables are all
|
115
|
+
/// attached to a [`Store`]. Instances are created by instantiating a
|
116
|
+
/// [`Module`](crate::Module) within a [`Store`].
|
117
|
+
///
|
118
|
+
/// A [`Store`] is intended to be a short-lived object in a program. No form
|
119
|
+
/// of GC is implemented at this time so once an instance is created within a
|
120
|
+
/// [`Store`] it will not be deallocated until the [`Store`] itself is dropped.
|
121
|
+
/// This makes [`Store`] unsuitable for creating an unbounded number of
|
122
|
+
/// instances in it because [`Store`] will never release this memory. It's
|
123
|
+
/// recommended to have a [`Store`] correspond roughly to the lifetime of a "main
|
124
|
+
/// instance" that an embedding is interested in executing.
|
125
|
+
///
|
126
|
+
/// ## Type parameter `T`
|
127
|
+
///
|
128
|
+
/// Each [`Store`] has a type parameter `T` associated with it. This `T`
|
129
|
+
/// represents state defined by the host. This state will be accessible through
|
130
|
+
/// the [`Caller`](crate::Caller) type that host-defined functions get access
|
131
|
+
/// to. This `T` is suitable for storing `Store`-specific information which
|
132
|
+
/// imported functions may want access to.
|
133
|
+
///
|
134
|
+
/// The data `T` can be accessed through methods like [`Store::data`] and
|
135
|
+
/// [`Store::data_mut`].
|
136
|
+
///
|
137
|
+
/// ## Stores, contexts, oh my
|
138
|
+
///
|
139
|
+
/// Most methods in Wasmtime take something of the form
|
140
|
+
/// [`AsContext`](crate::AsContext) or [`AsContextMut`](crate::AsContextMut) as
|
141
|
+
/// the first argument. These two traits allow ergonomically passing in the
|
142
|
+
/// context you currently have to any method. The primary two sources of
|
143
|
+
/// contexts are:
|
144
|
+
///
|
145
|
+
/// * `Store<T>`
|
146
|
+
/// * `Caller<'_, T>`
|
147
|
+
///
|
148
|
+
/// corresponding to what you create and what you have access to in a host
|
149
|
+
/// function. You can also explicitly acquire a [`StoreContext`] or
|
150
|
+
/// [`StoreContextMut`] and pass that around as well.
|
151
|
+
///
|
152
|
+
/// Note that all methods on [`Store`] are mirrored onto [`StoreContext`],
|
153
|
+
/// [`StoreContextMut`], and [`Caller`](crate::Caller). This way no matter what
|
154
|
+
/// form of context you have you can call various methods, create objects, etc.
|
155
|
+
///
|
156
|
+
/// ## Stores and `Default`
|
157
|
+
///
|
158
|
+
/// You can create a store with default configuration settings using
|
159
|
+
/// `Store::default()`. This will create a brand new [`Engine`] with default
|
160
|
+
/// configuration (see [`Config`](crate::Config) for more information).
|
161
|
+
pub struct Store<T> {
|
162
|
+
// for comments about `ManuallyDrop`, see `Store::into_data`
|
163
|
+
inner: ManuallyDrop<Box<StoreInner<T>>>,
|
164
|
+
}
|
165
|
+
|
166
|
+
#[derive(Copy, Clone, Debug)]
|
167
|
+
/// Passed to the argument of [`Store::call_hook`] to indicate a state transition in
|
168
|
+
/// the WebAssembly VM.
|
169
|
+
pub enum CallHook {
|
170
|
+
/// Indicates the VM is calling a WebAssembly function, from the host.
|
171
|
+
CallingWasm,
|
172
|
+
/// Indicates the VM is returning from a WebAssembly function, to the host.
|
173
|
+
ReturningFromWasm,
|
174
|
+
/// Indicates the VM is calling a host function, from WebAssembly.
|
175
|
+
CallingHost,
|
176
|
+
/// Indicates the VM is returning from a host function, to WebAssembly.
|
177
|
+
ReturningFromHost,
|
178
|
+
}
|
179
|
+
|
180
|
+
impl CallHook {
|
181
|
+
/// Indicates the VM is entering host code (exiting WebAssembly code)
|
182
|
+
pub fn entering_host(&self) -> bool {
|
183
|
+
match self {
|
184
|
+
CallHook::ReturningFromWasm | CallHook::CallingHost => true,
|
185
|
+
_ => false,
|
186
|
+
}
|
187
|
+
}
|
188
|
+
/// Indicates the VM is exiting host code (entering WebAssembly code)
|
189
|
+
pub fn exiting_host(&self) -> bool {
|
190
|
+
match self {
|
191
|
+
CallHook::ReturningFromHost | CallHook::CallingWasm => true,
|
192
|
+
_ => false,
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
/// Internal contents of a `Store<T>` that live on the heap.
|
198
|
+
///
|
199
|
+
/// The members of this struct are those that need to be generic over `T`, the
|
200
|
+
/// store's internal type storage. Otherwise all things that don't rely on `T`
|
201
|
+
/// should go into `StoreOpaque`.
|
202
|
+
pub struct StoreInner<T> {
|
203
|
+
/// Generic metadata about the store that doesn't need access to `T`.
|
204
|
+
inner: StoreOpaque,
|
205
|
+
|
206
|
+
limiter: Option<ResourceLimiterInner<T>>,
|
207
|
+
call_hook: Option<CallHookInner<T>>,
|
208
|
+
epoch_deadline_behavior:
|
209
|
+
Option<Box<dyn FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync>>,
|
210
|
+
// for comments about `ManuallyDrop`, see `Store::into_data`
|
211
|
+
data: ManuallyDrop<T>,
|
212
|
+
}
|
213
|
+
|
214
|
+
enum ResourceLimiterInner<T> {
|
215
|
+
Sync(Box<dyn FnMut(&mut T) -> &mut (dyn crate::ResourceLimiter) + Send + Sync>),
|
216
|
+
#[cfg(feature = "async")]
|
217
|
+
Async(Box<dyn FnMut(&mut T) -> &mut (dyn crate::ResourceLimiterAsync) + Send + Sync>),
|
218
|
+
}
|
219
|
+
|
220
|
+
/// An object that can take callbacks when the runtime enters or exits hostcalls.
|
221
|
+
#[cfg(feature = "async")]
|
222
|
+
#[async_trait::async_trait]
|
223
|
+
pub trait CallHookHandler<T>: Send {
|
224
|
+
/// A callback to run when wasmtime is about to enter a host call, or when about to
|
225
|
+
/// exit the hostcall.
|
226
|
+
async fn handle_call_event(&self, t: &mut T, ch: CallHook) -> Result<()>;
|
227
|
+
}
|
228
|
+
|
229
|
+
enum CallHookInner<T> {
|
230
|
+
Sync(Box<dyn FnMut(&mut T, CallHook) -> Result<()> + Send + Sync>),
|
231
|
+
#[cfg(feature = "async")]
|
232
|
+
Async(Box<dyn CallHookHandler<T> + Send + Sync>),
|
233
|
+
}
|
234
|
+
|
235
|
+
/// What to do after returning from a callback when the engine epoch reaches
|
236
|
+
/// the deadline for a Store during execution of a function using that store.
|
237
|
+
pub enum UpdateDeadline {
|
238
|
+
/// Extend the deadline by the specified number of ticks.
|
239
|
+
Continue(u64),
|
240
|
+
/// Extend the deadline by the specified number of ticks after yielding to
|
241
|
+
/// the async executor loop. This can only be used with an async [`Store`]
|
242
|
+
/// configured via [`Config::async_support`](crate::Config::async_support).
|
243
|
+
#[cfg(feature = "async")]
|
244
|
+
Yield(u64),
|
245
|
+
}
|
246
|
+
|
247
|
+
// Forward methods on `StoreOpaque` to also being on `StoreInner<T>`
|
248
|
+
impl<T> Deref for StoreInner<T> {
|
249
|
+
type Target = StoreOpaque;
|
250
|
+
fn deref(&self) -> &Self::Target {
|
251
|
+
&self.inner
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
impl<T> DerefMut for StoreInner<T> {
|
256
|
+
fn deref_mut(&mut self) -> &mut Self::Target {
|
257
|
+
&mut self.inner
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
/// Monomorphic storage for a `Store<T>`.
|
262
|
+
///
|
263
|
+
/// This structure contains the bulk of the metadata about a `Store`. This is
|
264
|
+
/// used internally in Wasmtime when dependence on the `T` of `Store<T>` isn't
|
265
|
+
/// necessary, allowing code to be monomorphic and compiled into the `wasmtime`
|
266
|
+
/// crate itself.
|
267
|
+
pub struct StoreOpaque {
|
268
|
+
// This `StoreOpaque` structure has references to itself. These aren't
|
269
|
+
// immediately evident, however, so we need to tell the compiler that it
|
270
|
+
// contains self-references. This notably suppresses `noalias` annotations
|
271
|
+
// when this shows up in compiled code because types of this structure do
|
272
|
+
// indeed alias itself. An example of this is `default_callee` holds a
|
273
|
+
// `*mut dyn Store` to the address of this `StoreOpaque` itself, indeed
|
274
|
+
// aliasing!
|
275
|
+
//
|
276
|
+
// It's somewhat unclear to me at this time if this is 100% sufficient to
|
277
|
+
// get all the right codegen in all the right places. For example does
|
278
|
+
// `Store` need to internally contain a `Pin<Box<StoreInner<T>>>`? Do the
|
279
|
+
// contexts need to contain `Pin<&mut StoreInner<T>>`? I'm not familiar
|
280
|
+
// enough with `Pin` to understand if it's appropriate here (we do, for
|
281
|
+
// example want to allow movement in and out of `data: T`, just not movement
|
282
|
+
// of most of the other members). It's also not clear if using `Pin` in a
|
283
|
+
// few places buys us much other than a bunch of `unsafe` that we already
|
284
|
+
// sort of hand-wave away.
|
285
|
+
//
|
286
|
+
// In any case this seems like a good mid-ground for now where we're at
|
287
|
+
// least telling the compiler something about all the aliasing happening
|
288
|
+
// within a `Store`.
|
289
|
+
_marker: marker::PhantomPinned,
|
290
|
+
|
291
|
+
engine: Engine,
|
292
|
+
runtime_limits: VMRuntimeLimits,
|
293
|
+
instances: Vec<StoreInstance>,
|
294
|
+
signal_handler: Option<Box<SignalHandler<'static>>>,
|
295
|
+
externref_activations_table: VMExternRefActivationsTable,
|
296
|
+
modules: ModuleRegistry,
|
297
|
+
func_refs: FuncRefs,
|
298
|
+
host_globals: Vec<StoreBox<VMHostGlobalContext>>,
|
299
|
+
|
300
|
+
// Numbers of resources instantiated in this store, and their limits
|
301
|
+
instance_count: usize,
|
302
|
+
instance_limit: usize,
|
303
|
+
memory_count: usize,
|
304
|
+
memory_limit: usize,
|
305
|
+
table_count: usize,
|
306
|
+
table_limit: usize,
|
307
|
+
/// An adjustment to add to the fuel consumed value in `runtime_limits` above
|
308
|
+
/// to get the true amount of fuel consumed.
|
309
|
+
fuel_adj: i64,
|
310
|
+
#[cfg(feature = "async")]
|
311
|
+
async_state: AsyncState,
|
312
|
+
out_of_gas_behavior: OutOfGas,
|
313
|
+
/// Indexed data within this `Store`, used to store information about
|
314
|
+
/// globals, functions, memories, etc.
|
315
|
+
///
|
316
|
+
/// Note that this is `ManuallyDrop` because it needs to be dropped before
|
317
|
+
/// `rooted_host_funcs` below. This structure contains pointers which are
|
318
|
+
/// otherwise kept alive by the `Arc` references in `rooted_host_funcs`.
|
319
|
+
store_data: ManuallyDrop<StoreData>,
|
320
|
+
default_caller: InstanceHandle,
|
321
|
+
|
322
|
+
/// Used to optimzed wasm->host calls when the host function is defined with
|
323
|
+
/// `Func::new` to avoid allocating a new vector each time a function is
|
324
|
+
/// called.
|
325
|
+
hostcall_val_storage: Vec<Val>,
|
326
|
+
/// Same as `hostcall_val_storage`, but for the direction of the host
|
327
|
+
/// calling wasm.
|
328
|
+
wasm_val_raw_storage: Vec<ValRaw>,
|
329
|
+
|
330
|
+
/// A list of lists of definitions which have been used to instantiate
|
331
|
+
/// within this `Store`.
|
332
|
+
///
|
333
|
+
/// Note that not all instantiations end up pushing to this list. At the
|
334
|
+
/// time of this writing only the `InstancePre<T>` type will push to this
|
335
|
+
/// list. Pushes to this list are typically accompanied with
|
336
|
+
/// `HostFunc::to_func_store_rooted` to clone an `Arc` here once which
|
337
|
+
/// preserves a strong reference to the `Arc` for each `HostFunc` stored
|
338
|
+
/// within the list of `Definition`s.
|
339
|
+
///
|
340
|
+
/// Note that this is `ManuallyDrop` as it must be dropped after
|
341
|
+
/// `store_data` above, where the function pointers are stored.
|
342
|
+
rooted_host_funcs: ManuallyDrop<Vec<Arc<[Definition]>>>,
|
343
|
+
|
344
|
+
/// Runtime state for components used in the handling of resources, borrow,
|
345
|
+
/// and calls. These also interact with the `ResourceAny` type and its
|
346
|
+
/// internal representation.
|
347
|
+
#[cfg(feature = "component-model")]
|
348
|
+
component_host_table: wasmtime_runtime::component::ResourceTable,
|
349
|
+
#[cfg(feature = "component-model")]
|
350
|
+
component_calls: wasmtime_runtime::component::CallContexts,
|
351
|
+
}
|
352
|
+
|
353
|
+
#[cfg(feature = "async")]
|
354
|
+
struct AsyncState {
|
355
|
+
current_suspend: UnsafeCell<*const wasmtime_fiber::Suspend<Result<()>, (), Result<()>>>,
|
356
|
+
current_poll_cx: UnsafeCell<*mut Context<'static>>,
|
357
|
+
}
|
358
|
+
|
359
|
+
// Lots of pesky unsafe cells and pointers in this structure. This means we need
|
360
|
+
// to declare explicitly that we use this in a threadsafe fashion.
|
361
|
+
#[cfg(feature = "async")]
|
362
|
+
unsafe impl Send for AsyncState {}
|
363
|
+
#[cfg(feature = "async")]
|
364
|
+
unsafe impl Sync for AsyncState {}
|
365
|
+
|
366
|
+
/// An RAII type to automatically mark a region of code as unsafe for GC.
|
367
|
+
pub(crate) struct AutoAssertNoGc<T>
|
368
|
+
where
|
369
|
+
T: std::ops::DerefMut<Target = StoreOpaque>,
|
370
|
+
{
|
371
|
+
#[cfg(debug_assertions)]
|
372
|
+
prev_okay: bool,
|
373
|
+
store: T,
|
374
|
+
}
|
375
|
+
|
376
|
+
impl<T> AutoAssertNoGc<T>
|
377
|
+
where
|
378
|
+
T: std::ops::DerefMut<Target = StoreOpaque>,
|
379
|
+
{
|
380
|
+
pub fn new(mut store: T) -> Self {
|
381
|
+
let _ = &mut store;
|
382
|
+
#[cfg(debug_assertions)]
|
383
|
+
{
|
384
|
+
let prev_okay = store.externref_activations_table.set_gc_okay(false);
|
385
|
+
return AutoAssertNoGc { store, prev_okay };
|
386
|
+
}
|
387
|
+
#[cfg(not(debug_assertions))]
|
388
|
+
{
|
389
|
+
return AutoAssertNoGc { store };
|
390
|
+
}
|
391
|
+
}
|
392
|
+
}
|
393
|
+
|
394
|
+
impl<T> std::ops::Deref for AutoAssertNoGc<T>
|
395
|
+
where
|
396
|
+
T: std::ops::DerefMut<Target = StoreOpaque>,
|
397
|
+
{
|
398
|
+
type Target = T;
|
399
|
+
|
400
|
+
fn deref(&self) -> &Self::Target {
|
401
|
+
&self.store
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
405
|
+
impl<T> std::ops::DerefMut for AutoAssertNoGc<T>
|
406
|
+
where
|
407
|
+
T: std::ops::DerefMut<Target = StoreOpaque>,
|
408
|
+
{
|
409
|
+
fn deref_mut(&mut self) -> &mut Self::Target {
|
410
|
+
&mut self.store
|
411
|
+
}
|
412
|
+
}
|
413
|
+
|
414
|
+
impl<T> Drop for AutoAssertNoGc<T>
|
415
|
+
where
|
416
|
+
T: std::ops::DerefMut<Target = StoreOpaque>,
|
417
|
+
{
|
418
|
+
fn drop(&mut self) {
|
419
|
+
#[cfg(debug_assertions)]
|
420
|
+
{
|
421
|
+
self.store
|
422
|
+
.externref_activations_table
|
423
|
+
.set_gc_okay(self.prev_okay);
|
424
|
+
}
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
/// Used to associate instances with the store.
|
429
|
+
///
|
430
|
+
/// This is needed to track if the instance was allocated explicitly with the on-demand
|
431
|
+
/// instance allocator.
|
432
|
+
struct StoreInstance {
|
433
|
+
handle: InstanceHandle,
|
434
|
+
// Stores whether or not to use the on-demand allocator to deallocate the instance
|
435
|
+
ondemand: bool,
|
436
|
+
}
|
437
|
+
|
438
|
+
#[derive(Copy, Clone)]
|
439
|
+
enum OutOfGas {
|
440
|
+
Trap,
|
441
|
+
InjectFuel {
|
442
|
+
injection_count: u64,
|
443
|
+
fuel_to_inject: u64,
|
444
|
+
},
|
445
|
+
}
|
446
|
+
|
447
|
+
impl<T> Store<T> {
|
448
|
+
/// Creates a new [`Store`] to be associated with the given [`Engine`] and
|
449
|
+
/// `data` provided.
|
450
|
+
///
|
451
|
+
/// The created [`Store`] will place no additional limits on the size of
|
452
|
+
/// linear memories or tables at runtime. Linear memories and tables will
|
453
|
+
/// be allowed to grow to any upper limit specified in their definitions.
|
454
|
+
/// The store will limit the number of instances, linear memories, and
|
455
|
+
/// tables created to 10,000. This can be overridden with the
|
456
|
+
/// [`Store::limiter`] configuration method.
|
457
|
+
pub fn new(engine: &Engine, data: T) -> Self {
|
458
|
+
let mut inner = Box::new(StoreInner {
|
459
|
+
inner: StoreOpaque {
|
460
|
+
_marker: marker::PhantomPinned,
|
461
|
+
engine: engine.clone(),
|
462
|
+
runtime_limits: Default::default(),
|
463
|
+
instances: Vec::new(),
|
464
|
+
signal_handler: None,
|
465
|
+
externref_activations_table: VMExternRefActivationsTable::new(),
|
466
|
+
modules: ModuleRegistry::default(),
|
467
|
+
func_refs: FuncRefs::default(),
|
468
|
+
host_globals: Vec::new(),
|
469
|
+
instance_count: 0,
|
470
|
+
instance_limit: crate::DEFAULT_INSTANCE_LIMIT,
|
471
|
+
memory_count: 0,
|
472
|
+
memory_limit: crate::DEFAULT_MEMORY_LIMIT,
|
473
|
+
table_count: 0,
|
474
|
+
table_limit: crate::DEFAULT_TABLE_LIMIT,
|
475
|
+
fuel_adj: 0,
|
476
|
+
#[cfg(feature = "async")]
|
477
|
+
async_state: AsyncState {
|
478
|
+
current_suspend: UnsafeCell::new(ptr::null()),
|
479
|
+
current_poll_cx: UnsafeCell::new(ptr::null_mut()),
|
480
|
+
},
|
481
|
+
out_of_gas_behavior: OutOfGas::Trap,
|
482
|
+
store_data: ManuallyDrop::new(StoreData::new()),
|
483
|
+
default_caller: InstanceHandle::null(),
|
484
|
+
hostcall_val_storage: Vec::new(),
|
485
|
+
wasm_val_raw_storage: Vec::new(),
|
486
|
+
rooted_host_funcs: ManuallyDrop::new(Vec::new()),
|
487
|
+
#[cfg(feature = "component-model")]
|
488
|
+
component_host_table: Default::default(),
|
489
|
+
#[cfg(feature = "component-model")]
|
490
|
+
component_calls: Default::default(),
|
491
|
+
},
|
492
|
+
limiter: None,
|
493
|
+
call_hook: None,
|
494
|
+
epoch_deadline_behavior: None,
|
495
|
+
data: ManuallyDrop::new(data),
|
496
|
+
});
|
497
|
+
|
498
|
+
// Wasmtime uses the callee argument to host functions to learn about
|
499
|
+
// the original pointer to the `Store` itself, allowing it to
|
500
|
+
// reconstruct a `StoreContextMut<T>`. When we initially call a `Func`,
|
501
|
+
// however, there's no "callee" to provide. To fix this we allocate a
|
502
|
+
// single "default callee" for the entire `Store`. This is then used as
|
503
|
+
// part of `Func::call` to guarantee that the `callee: *mut VMContext`
|
504
|
+
// is never null.
|
505
|
+
inner.default_caller = {
|
506
|
+
let module = Arc::new(wasmtime_environ::Module::default());
|
507
|
+
let shim = BareModuleInfo::empty(module).into_traitobj();
|
508
|
+
let mut instance = OnDemandInstanceAllocator::default()
|
509
|
+
.allocate(InstanceAllocationRequest {
|
510
|
+
host_state: Box::new(()),
|
511
|
+
imports: Default::default(),
|
512
|
+
store: StorePtr::empty(),
|
513
|
+
runtime_info: &shim,
|
514
|
+
})
|
515
|
+
.expect("failed to allocate default callee");
|
516
|
+
|
517
|
+
// Note the erasure of the lifetime here into `'static`, so in
|
518
|
+
// general usage of this trait object must be strictly bounded to
|
519
|
+
// the `Store` itself, and is a variant that we have to maintain
|
520
|
+
// throughout Wasmtime.
|
521
|
+
unsafe {
|
522
|
+
let traitobj = std::mem::transmute::<
|
523
|
+
*mut (dyn wasmtime_runtime::Store + '_),
|
524
|
+
*mut (dyn wasmtime_runtime::Store + 'static),
|
525
|
+
>(&mut *inner);
|
526
|
+
instance.set_store(traitobj);
|
527
|
+
}
|
528
|
+
instance
|
529
|
+
};
|
530
|
+
|
531
|
+
Self {
|
532
|
+
inner: ManuallyDrop::new(inner),
|
533
|
+
}
|
534
|
+
}
|
535
|
+
|
536
|
+
/// Access the underlying data owned by this `Store`.
|
537
|
+
#[inline]
|
538
|
+
pub fn data(&self) -> &T {
|
539
|
+
self.inner.data()
|
540
|
+
}
|
541
|
+
|
542
|
+
/// Access the underlying data owned by this `Store`.
|
543
|
+
#[inline]
|
544
|
+
pub fn data_mut(&mut self) -> &mut T {
|
545
|
+
self.inner.data_mut()
|
546
|
+
}
|
547
|
+
|
548
|
+
/// Consumes this [`Store`], destroying it, and returns the underlying data.
|
549
|
+
pub fn into_data(mut self) -> T {
|
550
|
+
// This is an unsafe operation because we want to avoid having a runtime
|
551
|
+
// check or boolean for whether the data is actually contained within a
|
552
|
+
// `Store`. The data itself is stored as `ManuallyDrop` since we're
|
553
|
+
// manually managing the memory here, and there's also a `ManuallyDrop`
|
554
|
+
// around the `Box<StoreInner<T>>`. The way this works though is a bit
|
555
|
+
// tricky, so here's how things get dropped appropriately:
|
556
|
+
//
|
557
|
+
// * When a `Store<T>` is normally dropped, the custom destructor for
|
558
|
+
// `Store<T>` will drop `T`, then the `self.inner` field. The
|
559
|
+
// rustc-glue destructor runs for `Box<StoreInner<T>>` which drops
|
560
|
+
// `StoreInner<T>`. This cleans up all internal fields and doesn't
|
561
|
+
// touch `T` because it's wrapped in `ManuallyDrop`.
|
562
|
+
//
|
563
|
+
// * When calling this method we skip the top-level destructor for
|
564
|
+
// `Store<T>` with `mem::forget`. This skips both the destructor for
|
565
|
+
// `T` and the destructor for `StoreInner<T>`. We do, however, run the
|
566
|
+
// destructor for `Box<StoreInner<T>>` which, like above, will skip
|
567
|
+
// the destructor for `T` since it's `ManuallyDrop`.
|
568
|
+
//
|
569
|
+
// In both cases all the other fields of `StoreInner<T>` should all get
|
570
|
+
// dropped, and the manual management of destructors is basically
|
571
|
+
// between this method and `Drop for Store<T>`. Note that this also
|
572
|
+
// means that `Drop for StoreInner<T>` cannot access `self.data`, so
|
573
|
+
// there is a comment indicating this as well.
|
574
|
+
unsafe {
|
575
|
+
let mut inner = ManuallyDrop::take(&mut self.inner);
|
576
|
+
std::mem::forget(self);
|
577
|
+
ManuallyDrop::take(&mut inner.data)
|
578
|
+
}
|
579
|
+
}
|
580
|
+
|
581
|
+
/// Configures the [`ResourceLimiter`] used to limit resource creation
|
582
|
+
/// within this [`Store`].
|
583
|
+
///
|
584
|
+
/// Whenever resources such as linear memory, tables, or instances are
|
585
|
+
/// allocated the `limiter` specified here is invoked with the store's data
|
586
|
+
/// `T` and the returned [`ResourceLimiter`] is used to limit the operation
|
587
|
+
/// being allocated. The returned [`ResourceLimiter`] is intended to live
|
588
|
+
/// within the `T` itself, for example by storing a
|
589
|
+
/// [`StoreLimits`](crate::StoreLimits).
|
590
|
+
///
|
591
|
+
/// Note that this limiter is only used to limit the creation/growth of
|
592
|
+
/// resources in the future, this does not retroactively attempt to apply
|
593
|
+
/// limits to the [`Store`].
|
594
|
+
///
|
595
|
+
/// # Examples
|
596
|
+
///
|
597
|
+
/// ```
|
598
|
+
/// use wasmtime::*;
|
599
|
+
///
|
600
|
+
/// struct MyApplicationState {
|
601
|
+
/// my_state: u32,
|
602
|
+
/// limits: StoreLimits,
|
603
|
+
/// }
|
604
|
+
///
|
605
|
+
/// let engine = Engine::default();
|
606
|
+
/// let my_state = MyApplicationState {
|
607
|
+
/// my_state: 42,
|
608
|
+
/// limits: StoreLimitsBuilder::new()
|
609
|
+
/// .memory_size(1 << 20 /* 1 MB */)
|
610
|
+
/// .instances(2)
|
611
|
+
/// .build(),
|
612
|
+
/// };
|
613
|
+
/// let mut store = Store::new(&engine, my_state);
|
614
|
+
/// store.limiter(|state| &mut state.limits);
|
615
|
+
///
|
616
|
+
/// // Creation of smaller memories is allowed
|
617
|
+
/// Memory::new(&mut store, MemoryType::new(1, None)).unwrap();
|
618
|
+
///
|
619
|
+
/// // Creation of a larger memory, however, will exceed the 1MB limit we've
|
620
|
+
/// // configured
|
621
|
+
/// assert!(Memory::new(&mut store, MemoryType::new(1000, None)).is_err());
|
622
|
+
///
|
623
|
+
/// // The number of instances in this store is limited to 2, so the third
|
624
|
+
/// // instance here should fail.
|
625
|
+
/// let module = Module::new(&engine, "(module)").unwrap();
|
626
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_ok());
|
627
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_ok());
|
628
|
+
/// assert!(Instance::new(&mut store, &module, &[]).is_err());
|
629
|
+
/// ```
|
630
|
+
///
|
631
|
+
/// [`ResourceLimiter`]: crate::ResourceLimiter
|
632
|
+
pub fn limiter(
|
633
|
+
&mut self,
|
634
|
+
mut limiter: impl FnMut(&mut T) -> &mut (dyn crate::ResourceLimiter) + Send + Sync + 'static,
|
635
|
+
) {
|
636
|
+
// Apply the limits on instances, tables, and memory given by the limiter:
|
637
|
+
let inner = &mut self.inner;
|
638
|
+
let (instance_limit, table_limit, memory_limit) = {
|
639
|
+
let l = limiter(&mut inner.data);
|
640
|
+
(l.instances(), l.tables(), l.memories())
|
641
|
+
};
|
642
|
+
let innermost = &mut inner.inner;
|
643
|
+
innermost.instance_limit = instance_limit;
|
644
|
+
innermost.table_limit = table_limit;
|
645
|
+
innermost.memory_limit = memory_limit;
|
646
|
+
|
647
|
+
// Save the limiter accessor function:
|
648
|
+
inner.limiter = Some(ResourceLimiterInner::Sync(Box::new(limiter)));
|
649
|
+
}
|
650
|
+
|
651
|
+
/// Configures the [`ResourceLimiterAsync`](crate::ResourceLimiterAsync)
|
652
|
+
/// used to limit resource creation within this [`Store`].
|
653
|
+
///
|
654
|
+
/// This method is an asynchronous variant of the [`Store::limiter`] method
|
655
|
+
/// where the embedder can block the wasm request for more resources with
|
656
|
+
/// host `async` execution of futures.
|
657
|
+
///
|
658
|
+
/// By using a [`ResourceLimiterAsync`](`crate::ResourceLimiterAsync`)
|
659
|
+
/// with a [`Store`], you can no longer use
|
660
|
+
/// [`Memory::new`](`crate::Memory::new`),
|
661
|
+
/// [`Memory::grow`](`crate::Memory::grow`),
|
662
|
+
/// [`Table::new`](`crate::Table::new`), and
|
663
|
+
/// [`Table::grow`](`crate::Table::grow`). Instead, you must use their
|
664
|
+
/// `async` variants: [`Memory::new_async`](`crate::Memory::new_async`),
|
665
|
+
/// [`Memory::grow_async`](`crate::Memory::grow_async`),
|
666
|
+
/// [`Table::new_async`](`crate::Table::new_async`), and
|
667
|
+
/// [`Table::grow_async`](`crate::Table::grow_async`).
|
668
|
+
///
|
669
|
+
/// Note that this limiter is only used to limit the creation/growth of
|
670
|
+
/// resources in the future, this does not retroactively attempt to apply
|
671
|
+
/// limits to the [`Store`]. Additionally this must be used with an async
|
672
|
+
/// [`Store`] configured via
|
673
|
+
/// [`Config::async_support`](crate::Config::async_support).
|
674
|
+
#[cfg(feature = "async")]
|
675
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
676
|
+
pub fn limiter_async(
|
677
|
+
&mut self,
|
678
|
+
mut limiter: impl FnMut(&mut T) -> &mut (dyn crate::ResourceLimiterAsync)
|
679
|
+
+ Send
|
680
|
+
+ Sync
|
681
|
+
+ 'static,
|
682
|
+
) {
|
683
|
+
debug_assert!(self.inner.async_support());
|
684
|
+
// Apply the limits on instances, tables, and memory given by the limiter:
|
685
|
+
let inner = &mut self.inner;
|
686
|
+
let (instance_limit, table_limit, memory_limit) = {
|
687
|
+
let l = limiter(&mut inner.data);
|
688
|
+
(l.instances(), l.tables(), l.memories())
|
689
|
+
};
|
690
|
+
let innermost = &mut inner.inner;
|
691
|
+
innermost.instance_limit = instance_limit;
|
692
|
+
innermost.table_limit = table_limit;
|
693
|
+
innermost.memory_limit = memory_limit;
|
694
|
+
|
695
|
+
// Save the limiter accessor function:
|
696
|
+
inner.limiter = Some(ResourceLimiterInner::Async(Box::new(limiter)));
|
697
|
+
}
|
698
|
+
|
699
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
700
|
+
/// Configures an async function that runs on calls and returns between
|
701
|
+
/// WebAssembly and host code. For the non-async equivalent of this method,
|
702
|
+
/// see [`Store::call_hook`].
|
703
|
+
///
|
704
|
+
/// The function is passed a [`CallHook`] argument, which indicates which
|
705
|
+
/// state transition the VM is making.
|
706
|
+
///
|
707
|
+
/// This function's future may return a [`Trap`]. If a trap is returned
|
708
|
+
/// when an import was called, it is immediately raised as-if the host
|
709
|
+
/// import had returned the trap. If a trap is returned after wasm returns
|
710
|
+
/// to the host then the wasm function's result is ignored and this trap is
|
711
|
+
/// returned instead.
|
712
|
+
///
|
713
|
+
/// After this function returns a trap, it may be called for subsequent
|
714
|
+
/// returns to host or wasm code as the trap propagates to the root call.
|
715
|
+
#[cfg(feature = "async")]
|
716
|
+
pub fn call_hook_async(&mut self, hook: impl CallHookHandler<T> + Send + Sync + 'static) {
|
717
|
+
self.inner.call_hook = Some(CallHookInner::Async(Box::new(hook)));
|
718
|
+
}
|
719
|
+
|
720
|
+
/// Configure a function that runs on calls and returns between WebAssembly
|
721
|
+
/// and host code.
|
722
|
+
///
|
723
|
+
/// The function is passed a [`CallHook`] argument, which indicates which
|
724
|
+
/// state transition the VM is making.
|
725
|
+
///
|
726
|
+
/// This function may return a [`Trap`]. If a trap is returned when an
|
727
|
+
/// import was called, it is immediately raised as-if the host import had
|
728
|
+
/// returned the trap. If a trap is returned after wasm returns to the host
|
729
|
+
/// then the wasm function's result is ignored and this trap is returned
|
730
|
+
/// instead.
|
731
|
+
///
|
732
|
+
/// After this function returns a trap, it may be called for subsequent returns
|
733
|
+
/// to host or wasm code as the trap propagates to the root call.
|
734
|
+
pub fn call_hook(
|
735
|
+
&mut self,
|
736
|
+
hook: impl FnMut(&mut T, CallHook) -> Result<()> + Send + Sync + 'static,
|
737
|
+
) {
|
738
|
+
self.inner.call_hook = Some(CallHookInner::Sync(Box::new(hook)));
|
739
|
+
}
|
740
|
+
|
741
|
+
/// Returns the [`Engine`] that this store is associated with.
|
742
|
+
pub fn engine(&self) -> &Engine {
|
743
|
+
self.inner.engine()
|
744
|
+
}
|
745
|
+
|
746
|
+
/// Perform garbage collection of `ExternRef`s.
|
747
|
+
///
|
748
|
+
/// Note that it is not required to actively call this function. GC will
|
749
|
+
/// automatically happen when internal buffers fill up. This is provided if
|
750
|
+
/// fine-grained control over the GC is desired.
|
751
|
+
pub fn gc(&mut self) {
|
752
|
+
self.inner.gc()
|
753
|
+
}
|
754
|
+
|
755
|
+
/// Returns the amount of fuel consumed by this store's execution so far.
|
756
|
+
///
|
757
|
+
/// If fuel consumption is not enabled via
|
758
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel) then this
|
759
|
+
/// function will return `None`. Also note that fuel, if enabled, must be
|
760
|
+
/// originally configured via [`Store::add_fuel`].
|
761
|
+
pub fn fuel_consumed(&self) -> Option<u64> {
|
762
|
+
self.inner.fuel_consumed()
|
763
|
+
}
|
764
|
+
|
765
|
+
/// Returns remaining fuel in this [`Store`].
|
766
|
+
///
|
767
|
+
/// If fuel consumption is not enabled via
|
768
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel) then this
|
769
|
+
/// function will return `None`. Also note that fuel, if enabled, must be
|
770
|
+
/// originally configured via [`Store::add_fuel`].
|
771
|
+
pub fn fuel_remaining(&mut self) -> Option<u64> {
|
772
|
+
self.inner.fuel_remaining()
|
773
|
+
}
|
774
|
+
|
775
|
+
/// Adds fuel to this [`Store`] for wasm to consume while executing.
|
776
|
+
///
|
777
|
+
/// For this method to work fuel consumption must be enabled via
|
778
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel). By default a
|
779
|
+
/// [`Store`] starts with 0 fuel for wasm to execute with (meaning it will
|
780
|
+
/// immediately trap). This function must be called for the store to have
|
781
|
+
/// some fuel to allow WebAssembly to execute.
|
782
|
+
///
|
783
|
+
/// Most WebAssembly instructions consume 1 unit of fuel. Some
|
784
|
+
/// instructions, such as `nop`, `drop`, `block`, and `loop`, consume 0
|
785
|
+
/// units, as any execution cost associated with them involves other
|
786
|
+
/// instructions which do consume fuel.
|
787
|
+
///
|
788
|
+
/// Note that at this time when fuel is entirely consumed it will cause
|
789
|
+
/// wasm to trap. More usages of fuel are planned for the future.
|
790
|
+
///
|
791
|
+
/// # Errors
|
792
|
+
///
|
793
|
+
/// This function will return an error if fuel consumption is not enabled via
|
794
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel).
|
795
|
+
pub fn add_fuel(&mut self, fuel: u64) -> Result<()> {
|
796
|
+
self.inner.add_fuel(fuel)
|
797
|
+
}
|
798
|
+
|
799
|
+
/// Synthetically consumes fuel from this [`Store`].
|
800
|
+
///
|
801
|
+
/// For this method to work fuel consumption must be enabled via
|
802
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel).
|
803
|
+
///
|
804
|
+
/// WebAssembly execution will automatically consume fuel but if so desired
|
805
|
+
/// the embedder can also consume fuel manually to account for relative
|
806
|
+
/// costs of host functions, for example.
|
807
|
+
///
|
808
|
+
/// This function will attempt to consume `fuel` units of fuel from within
|
809
|
+
/// this store. If the remaining amount of fuel allows this then `Ok(N)` is
|
810
|
+
/// returned where `N` is the amount of remaining fuel. Otherwise an error
|
811
|
+
/// is returned and no fuel is consumed.
|
812
|
+
///
|
813
|
+
/// # Errors
|
814
|
+
///
|
815
|
+
/// This function will return an error either if fuel consumption is not
|
816
|
+
/// enabled via [`Config::consume_fuel`](crate::Config::consume_fuel) or if
|
817
|
+
/// `fuel` exceeds the amount of remaining fuel within this store.
|
818
|
+
pub fn consume_fuel(&mut self, fuel: u64) -> Result<u64> {
|
819
|
+
self.inner.consume_fuel(fuel)
|
820
|
+
}
|
821
|
+
|
822
|
+
/// Configures a [`Store`] to generate a [`Trap`] whenever it runs out of
|
823
|
+
/// fuel.
|
824
|
+
///
|
825
|
+
/// When a [`Store`] is configured to consume fuel with
|
826
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel) this method will
|
827
|
+
/// configure what happens when fuel runs out. Specifically a WebAssembly
|
828
|
+
/// trap will be raised and the current execution of WebAssembly will be
|
829
|
+
/// aborted.
|
830
|
+
///
|
831
|
+
/// This is the default behavior for running out of fuel.
|
832
|
+
pub fn out_of_fuel_trap(&mut self) {
|
833
|
+
self.inner.out_of_fuel_trap()
|
834
|
+
}
|
835
|
+
|
836
|
+
/// Configures a [`Store`] to yield execution of async WebAssembly code
|
837
|
+
/// periodically.
|
838
|
+
///
|
839
|
+
/// When a [`Store`] is configured to consume fuel with
|
840
|
+
/// [`Config::consume_fuel`](crate::Config::consume_fuel) this method will
|
841
|
+
/// configure what happens when fuel runs out. Specifically executing
|
842
|
+
/// WebAssembly will be suspended and control will be yielded back to the
|
843
|
+
/// caller. This is only suitable with use of a store associated with an [async
|
844
|
+
/// config](crate::Config::async_support) because only then are futures used and yields
|
845
|
+
/// are possible.
|
846
|
+
///
|
847
|
+
/// The purpose of this behavior is to ensure that futures which represent
|
848
|
+
/// execution of WebAssembly do not execute too long inside their
|
849
|
+
/// `Future::poll` method. This allows for some form of cooperative
|
850
|
+
/// multitasking where WebAssembly will voluntarily yield control
|
851
|
+
/// periodically (based on fuel consumption) back to the running thread.
|
852
|
+
///
|
853
|
+
/// Note that futures returned by this crate will automatically flag
|
854
|
+
/// themselves to get re-polled if a yield happens. This means that
|
855
|
+
/// WebAssembly will continue to execute, just after giving the host an
|
856
|
+
/// opportunity to do something else.
|
857
|
+
///
|
858
|
+
/// The `fuel_to_inject` parameter indicates how much fuel should be
|
859
|
+
/// automatically re-injected after fuel runs out. This is how much fuel
|
860
|
+
/// will be consumed between yields of an async future.
|
861
|
+
///
|
862
|
+
/// The `injection_count` parameter indicates how many times this fuel will
|
863
|
+
/// be injected. Multiplying the two parameters is the total amount of fuel
|
864
|
+
/// this store is allowed before wasm traps.
|
865
|
+
///
|
866
|
+
/// # Panics
|
867
|
+
///
|
868
|
+
/// This method will panic if it is not called on a store associated with an [async
|
869
|
+
/// config](crate::Config::async_support).
|
870
|
+
pub fn out_of_fuel_async_yield(&mut self, injection_count: u64, fuel_to_inject: u64) {
|
871
|
+
self.inner
|
872
|
+
.out_of_fuel_async_yield(injection_count, fuel_to_inject)
|
873
|
+
}
|
874
|
+
|
875
|
+
/// Sets the epoch deadline to a certain number of ticks in the future.
|
876
|
+
///
|
877
|
+
/// When the Wasm guest code is compiled with epoch-interruption
|
878
|
+
/// instrumentation
|
879
|
+
/// ([`Config::epoch_interruption()`](crate::Config::epoch_interruption)),
|
880
|
+
/// and when the `Engine`'s epoch is incremented
|
881
|
+
/// ([`Engine::increment_epoch()`](crate::Engine::increment_epoch))
|
882
|
+
/// past a deadline, execution can be configured to either trap or
|
883
|
+
/// yield and then continue.
|
884
|
+
///
|
885
|
+
/// This deadline is always set relative to the current epoch:
|
886
|
+
/// `delta_beyond_current` ticks in the future. The deadline can
|
887
|
+
/// be set explicitly via this method, or refilled automatically
|
888
|
+
/// on a yield if configured via
|
889
|
+
/// [`epoch_deadline_async_yield_and_update()`](Store::epoch_deadline_async_yield_and_update). After
|
890
|
+
/// this method is invoked, the deadline is reached when
|
891
|
+
/// [`Engine::increment_epoch()`] has been invoked at least
|
892
|
+
/// `ticks_beyond_current` times.
|
893
|
+
///
|
894
|
+
/// By default a store will trap immediately with an epoch deadline of 0
|
895
|
+
/// (which has always "elapsed"). This method is required to be configured
|
896
|
+
/// for stores with epochs enabled to some future epoch deadline.
|
897
|
+
///
|
898
|
+
/// See documentation on
|
899
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
900
|
+
/// for an introduction to epoch-based interruption.
|
901
|
+
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64) {
|
902
|
+
self.inner.set_epoch_deadline(ticks_beyond_current);
|
903
|
+
}
|
904
|
+
|
905
|
+
/// Configures epoch-deadline expiration to trap.
|
906
|
+
///
|
907
|
+
/// When epoch-interruption-instrumented code is executed on this
|
908
|
+
/// store and the epoch deadline is reached before completion,
|
909
|
+
/// with the store configured in this way, execution will
|
910
|
+
/// terminate with a trap as soon as an epoch check in the
|
911
|
+
/// instrumented code is reached.
|
912
|
+
///
|
913
|
+
/// This behavior is the default if the store is not otherwise
|
914
|
+
/// configured via
|
915
|
+
/// [`epoch_deadline_trap()`](Store::epoch_deadline_trap),
|
916
|
+
/// [`epoch_deadline_callback()`](Store::epoch_deadline_callback) or
|
917
|
+
/// [`epoch_deadline_async_yield_and_update()`](Store::epoch_deadline_async_yield_and_update).
|
918
|
+
///
|
919
|
+
/// This setting is intended to allow for coarse-grained
|
920
|
+
/// interruption, but not a deterministic deadline of a fixed,
|
921
|
+
/// finite interval. For deterministic interruption, see the
|
922
|
+
/// "fuel" mechanism instead.
|
923
|
+
///
|
924
|
+
/// Note that when this is used it's required to call
|
925
|
+
/// [`Store::set_epoch_deadline`] or otherwise wasm will always immediately
|
926
|
+
/// trap.
|
927
|
+
///
|
928
|
+
/// See documentation on
|
929
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
930
|
+
/// for an introduction to epoch-based interruption.
|
931
|
+
pub fn epoch_deadline_trap(&mut self) {
|
932
|
+
self.inner.epoch_deadline_trap();
|
933
|
+
}
|
934
|
+
|
935
|
+
/// Configures epoch-deadline expiration to invoke a custom callback
|
936
|
+
/// function.
|
937
|
+
///
|
938
|
+
/// When epoch-interruption-instrumented code is executed on this
|
939
|
+
/// store and the epoch deadline is reached before completion, the
|
940
|
+
/// provided callback function is invoked.
|
941
|
+
///
|
942
|
+
/// This callback should either return an [`UpdateDeadline`], or
|
943
|
+
/// return an error, which will terminate execution with a trap.
|
944
|
+
///
|
945
|
+
/// The [`UpdateDeadline`] is a positive number of ticks to
|
946
|
+
/// add to the epoch deadline, as well as indicating what
|
947
|
+
/// to do after the callback returns. If the [`Store`] is
|
948
|
+
/// configured with async support, then the callback may return
|
949
|
+
/// [`UpdateDeadline::Yield`] to yield to the async executor before
|
950
|
+
/// updating the epoch deadline. Alternatively, the callback may
|
951
|
+
/// return [`UpdateDeadline::Continue`] to update the epoch deadline
|
952
|
+
/// immediately.
|
953
|
+
///
|
954
|
+
/// This setting is intended to allow for coarse-grained
|
955
|
+
/// interruption, but not a deterministic deadline of a fixed,
|
956
|
+
/// finite interval. For deterministic interruption, see the
|
957
|
+
/// "fuel" mechanism instead.
|
958
|
+
///
|
959
|
+
/// See documentation on
|
960
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
961
|
+
/// for an introduction to epoch-based interruption.
|
962
|
+
pub fn epoch_deadline_callback(
|
963
|
+
&mut self,
|
964
|
+
callback: impl FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync + 'static,
|
965
|
+
) {
|
966
|
+
self.inner.epoch_deadline_callback(Box::new(callback));
|
967
|
+
}
|
968
|
+
|
969
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
970
|
+
/// Configures epoch-deadline expiration to yield to the async
|
971
|
+
/// caller and the update the deadline.
|
972
|
+
///
|
973
|
+
/// When epoch-interruption-instrumented code is executed on this
|
974
|
+
/// store and the epoch deadline is reached before completion,
|
975
|
+
/// with the store configured in this way, execution will yield
|
976
|
+
/// (the future will return `Pending` but re-awake itself for
|
977
|
+
/// later execution) and, upon resuming, the store will be
|
978
|
+
/// configured with an epoch deadline equal to the current epoch
|
979
|
+
/// plus `delta` ticks.
|
980
|
+
///
|
981
|
+
/// This setting is intended to allow for cooperative timeslicing
|
982
|
+
/// of multiple CPU-bound Wasm guests in different stores, all
|
983
|
+
/// executing under the control of an async executor. To drive
|
984
|
+
/// this, stores should be configured to "yield and update"
|
985
|
+
/// automatically with this function, and some external driver (a
|
986
|
+
/// thread that wakes up periodically, or a timer
|
987
|
+
/// signal/interrupt) should call
|
988
|
+
/// [`Engine::increment_epoch()`](crate::Engine::increment_epoch).
|
989
|
+
///
|
990
|
+
/// See documentation on
|
991
|
+
/// [`Config::epoch_interruption()`](crate::Config::epoch_interruption)
|
992
|
+
/// for an introduction to epoch-based interruption.
|
993
|
+
#[cfg(feature = "async")]
|
994
|
+
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
995
|
+
self.inner.epoch_deadline_async_yield_and_update(delta);
|
996
|
+
}
|
997
|
+
}
|
998
|
+
|
999
|
+
impl<'a, T> StoreContext<'a, T> {
|
1000
|
+
pub(crate) fn async_support(&self) -> bool {
|
1001
|
+
self.0.async_support()
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
/// Returns the underlying [`Engine`] this store is connected to.
|
1005
|
+
pub fn engine(&self) -> &Engine {
|
1006
|
+
self.0.engine()
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
/// Access the underlying data owned by this `Store`.
|
1010
|
+
///
|
1011
|
+
/// Same as [`Store::data`].
|
1012
|
+
pub fn data(&self) -> &'a T {
|
1013
|
+
self.0.data()
|
1014
|
+
}
|
1015
|
+
|
1016
|
+
/// Returns the fuel consumed by this store.
|
1017
|
+
///
|
1018
|
+
/// For more information see [`Store::fuel_consumed`].
|
1019
|
+
pub fn fuel_consumed(&self) -> Option<u64> {
|
1020
|
+
self.0.fuel_consumed()
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
/// Returns remaining fuel in this store.
|
1024
|
+
///
|
1025
|
+
/// For more information see [`Store::fuel_remaining`]
|
1026
|
+
pub fn fuel_remaining(&mut self) -> Option<u64> {
|
1027
|
+
self.0.fuel_remaining()
|
1028
|
+
}
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
impl<'a, T> StoreContextMut<'a, T> {
|
1032
|
+
/// Access the underlying data owned by this `Store`.
|
1033
|
+
///
|
1034
|
+
/// Same as [`Store::data`].
|
1035
|
+
pub fn data(&self) -> &T {
|
1036
|
+
self.0.data()
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
/// Access the underlying data owned by this `Store`.
|
1040
|
+
///
|
1041
|
+
/// Same as [`Store::data_mut`].
|
1042
|
+
pub fn data_mut(&mut self) -> &mut T {
|
1043
|
+
self.0.data_mut()
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
/// Returns the underlying [`Engine`] this store is connected to.
|
1047
|
+
pub fn engine(&self) -> &Engine {
|
1048
|
+
self.0.engine()
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
/// Perform garbage collection of `ExternRef`s.
|
1052
|
+
///
|
1053
|
+
/// Same as [`Store::gc`].
|
1054
|
+
pub fn gc(&mut self) {
|
1055
|
+
self.0.gc()
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
/// Returns the fuel consumed by this store.
|
1059
|
+
///
|
1060
|
+
/// For more information see [`Store::fuel_consumed`].
|
1061
|
+
pub fn fuel_consumed(&self) -> Option<u64> {
|
1062
|
+
self.0.fuel_consumed()
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
/// Returns remaining fuel in this store.
|
1066
|
+
///
|
1067
|
+
/// For more information see [`Store::fuel_remaining`]
|
1068
|
+
pub fn fuel_remaining(&self) -> Option<u64> {
|
1069
|
+
self.0.fuel_remaining()
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
/// Inject more fuel into this store to be consumed when executing wasm code.
|
1073
|
+
///
|
1074
|
+
/// For more information see [`Store::add_fuel`]
|
1075
|
+
pub fn add_fuel(&mut self, fuel: u64) -> Result<()> {
|
1076
|
+
self.0.add_fuel(fuel)
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
/// Synthetically consume fuel from this store.
|
1080
|
+
///
|
1081
|
+
/// For more information see [`Store::consume_fuel`]
|
1082
|
+
pub fn consume_fuel(&mut self, fuel: u64) -> Result<u64> {
|
1083
|
+
self.0.consume_fuel(fuel)
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
/// Configures this `Store` to trap whenever fuel runs out.
|
1087
|
+
///
|
1088
|
+
/// For more information see [`Store::out_of_fuel_trap`]
|
1089
|
+
pub fn out_of_fuel_trap(&mut self) {
|
1090
|
+
self.0.out_of_fuel_trap()
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
/// Configures this `Store` to yield while executing futures whenever fuel
|
1094
|
+
/// runs out.
|
1095
|
+
///
|
1096
|
+
/// For more information see [`Store::out_of_fuel_async_yield`]
|
1097
|
+
pub fn out_of_fuel_async_yield(&mut self, injection_count: u64, fuel_to_inject: u64) {
|
1098
|
+
self.0
|
1099
|
+
.out_of_fuel_async_yield(injection_count, fuel_to_inject)
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
/// Sets the epoch deadline to a certain number of ticks in the future.
|
1103
|
+
///
|
1104
|
+
/// For more information see [`Store::set_epoch_deadline`].
|
1105
|
+
pub fn set_epoch_deadline(&mut self, ticks_beyond_current: u64) {
|
1106
|
+
self.0.set_epoch_deadline(ticks_beyond_current);
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
/// Configures epoch-deadline expiration to trap.
|
1110
|
+
///
|
1111
|
+
/// For more information see [`Store::epoch_deadline_trap`].
|
1112
|
+
pub fn epoch_deadline_trap(&mut self) {
|
1113
|
+
self.0.epoch_deadline_trap();
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
#[cfg_attr(nightlydoc, doc(cfg(feature = "async")))]
|
1117
|
+
/// Configures epoch-deadline expiration to yield to the async
|
1118
|
+
/// caller and the update the deadline.
|
1119
|
+
///
|
1120
|
+
/// For more information see
|
1121
|
+
/// [`Store::epoch_deadline_async_yield_and_update`].
|
1122
|
+
#[cfg(feature = "async")]
|
1123
|
+
pub fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
1124
|
+
self.0.epoch_deadline_async_yield_and_update(delta);
|
1125
|
+
}
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
impl<T> StoreInner<T> {
|
1129
|
+
#[inline]
|
1130
|
+
fn data(&self) -> &T {
|
1131
|
+
&self.data
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
#[inline]
|
1135
|
+
fn data_mut(&mut self) -> &mut T {
|
1136
|
+
&mut self.data
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
pub fn call_hook(&mut self, s: CallHook) -> Result<()> {
|
1140
|
+
match &mut self.call_hook {
|
1141
|
+
Some(CallHookInner::Sync(hook)) => hook(&mut self.data, s),
|
1142
|
+
|
1143
|
+
#[cfg(feature = "async")]
|
1144
|
+
Some(CallHookInner::Async(handler)) => unsafe {
|
1145
|
+
Ok(self
|
1146
|
+
.inner
|
1147
|
+
.async_cx()
|
1148
|
+
.ok_or_else(|| anyhow!("couldn't grab async_cx for call hook"))?
|
1149
|
+
.block_on(handler.handle_call_event(&mut self.data, s).as_mut())??)
|
1150
|
+
},
|
1151
|
+
|
1152
|
+
None => Ok(()),
|
1153
|
+
}
|
1154
|
+
}
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
#[doc(hidden)]
|
1158
|
+
impl StoreOpaque {
|
1159
|
+
pub fn id(&self) -> StoreId {
|
1160
|
+
self.store_data.id()
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
pub fn bump_resource_counts(&mut self, module: &Module) -> Result<()> {
|
1164
|
+
fn bump(slot: &mut usize, max: usize, amt: usize, desc: &str) -> Result<()> {
|
1165
|
+
let new = slot.saturating_add(amt);
|
1166
|
+
if new > max {
|
1167
|
+
bail!(
|
1168
|
+
"resource limit exceeded: {} count too high at {}",
|
1169
|
+
desc,
|
1170
|
+
new
|
1171
|
+
);
|
1172
|
+
}
|
1173
|
+
*slot = new;
|
1174
|
+
Ok(())
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
let module = module.env_module();
|
1178
|
+
let memories = module.memory_plans.len() - module.num_imported_memories;
|
1179
|
+
let tables = module.table_plans.len() - module.num_imported_tables;
|
1180
|
+
|
1181
|
+
bump(&mut self.instance_count, self.instance_limit, 1, "instance")?;
|
1182
|
+
bump(
|
1183
|
+
&mut self.memory_count,
|
1184
|
+
self.memory_limit,
|
1185
|
+
memories,
|
1186
|
+
"memory",
|
1187
|
+
)?;
|
1188
|
+
bump(&mut self.table_count, self.table_limit, tables, "table")?;
|
1189
|
+
|
1190
|
+
Ok(())
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
#[inline]
|
1194
|
+
pub fn async_support(&self) -> bool {
|
1195
|
+
cfg!(feature = "async") && self.engine().config().async_support
|
1196
|
+
}
|
1197
|
+
|
1198
|
+
#[inline]
|
1199
|
+
pub fn engine(&self) -> &Engine {
|
1200
|
+
&self.engine
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
#[inline]
|
1204
|
+
pub fn store_data(&self) -> &StoreData {
|
1205
|
+
&self.store_data
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
#[inline]
|
1209
|
+
pub fn store_data_mut(&mut self) -> &mut StoreData {
|
1210
|
+
&mut self.store_data
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
#[inline]
|
1214
|
+
pub(crate) fn modules(&self) -> &ModuleRegistry {
|
1215
|
+
&self.modules
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
#[inline]
|
1219
|
+
pub(crate) fn modules_mut(&mut self) -> &mut ModuleRegistry {
|
1220
|
+
&mut self.modules
|
1221
|
+
}
|
1222
|
+
|
1223
|
+
pub(crate) fn func_refs(&mut self) -> &mut FuncRefs {
|
1224
|
+
&mut self.func_refs
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
pub(crate) fn fill_func_refs(&mut self) {
|
1228
|
+
self.func_refs.fill(&mut self.modules);
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
pub(crate) fn push_instance_pre_func_refs(&mut self, func_refs: Arc<[VMFuncRef]>) {
|
1232
|
+
self.func_refs.push_instance_pre_func_refs(func_refs);
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
pub(crate) fn host_globals(&mut self) -> &mut Vec<StoreBox<VMHostGlobalContext>> {
|
1236
|
+
&mut self.host_globals
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
pub unsafe fn add_instance(&mut self, handle: InstanceHandle, ondemand: bool) -> InstanceId {
|
1240
|
+
self.instances.push(StoreInstance {
|
1241
|
+
handle: handle.clone(),
|
1242
|
+
ondemand,
|
1243
|
+
});
|
1244
|
+
InstanceId(self.instances.len() - 1)
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
pub fn instance(&self, id: InstanceId) -> &InstanceHandle {
|
1248
|
+
&self.instances[id.0].handle
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
pub fn instance_mut(&mut self, id: InstanceId) -> &mut InstanceHandle {
|
1252
|
+
&mut self.instances[id.0].handle
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
pub fn all_instances(&self) -> impl ExactSizeIterator<Item = Instance> {
|
1256
|
+
self.store_data()
|
1257
|
+
.iter::<InstanceData>()
|
1258
|
+
.map(Instance::from_stored)
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
pub fn all_memories(&self) -> impl ExactSizeIterator<Item = Memory> {
|
1262
|
+
self.store_data()
|
1263
|
+
.iter::<ExportMemory>()
|
1264
|
+
.map(Memory::from_stored)
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
pub fn all_globals(&self) -> impl ExactSizeIterator<Item = Global> {
|
1268
|
+
self.store_data()
|
1269
|
+
.iter::<ExportGlobal>()
|
1270
|
+
.map(Global::from_stored)
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
#[cfg_attr(not(target_os = "linux"), allow(dead_code))] // not used on all platforms
|
1274
|
+
pub fn set_signal_handler(&mut self, handler: Option<Box<SignalHandler<'static>>>) {
|
1275
|
+
self.signal_handler = handler;
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
#[inline]
|
1279
|
+
pub fn runtime_limits(&self) -> &VMRuntimeLimits {
|
1280
|
+
&self.runtime_limits
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
#[inline]
|
1284
|
+
pub fn externref_activations_table(&mut self) -> &mut VMExternRefActivationsTable {
|
1285
|
+
&mut self.externref_activations_table
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
pub fn gc(&mut self) {
|
1289
|
+
// For this crate's API, we ensure that `set_stack_canary` invariants
|
1290
|
+
// are upheld for all host-->Wasm calls.
|
1291
|
+
unsafe {
|
1292
|
+
wasmtime_runtime::gc(
|
1293
|
+
self.runtime_limits(),
|
1294
|
+
&self.modules,
|
1295
|
+
&mut self.externref_activations_table,
|
1296
|
+
)
|
1297
|
+
}
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
/// Yields the async context, assuming that we are executing on a fiber and
|
1301
|
+
/// that fiber is not in the process of dying. This function will return
|
1302
|
+
/// None in the latter case (the fiber is dying), and panic if
|
1303
|
+
/// `async_support()` is false.
|
1304
|
+
#[cfg(feature = "async")]
|
1305
|
+
#[inline]
|
1306
|
+
pub fn async_cx(&self) -> Option<AsyncCx> {
|
1307
|
+
debug_assert!(self.async_support());
|
1308
|
+
|
1309
|
+
let poll_cx_box_ptr = self.async_state.current_poll_cx.get();
|
1310
|
+
if poll_cx_box_ptr.is_null() {
|
1311
|
+
return None;
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
let poll_cx_inner_ptr = unsafe { *poll_cx_box_ptr };
|
1315
|
+
if poll_cx_inner_ptr.is_null() {
|
1316
|
+
return None;
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
Some(AsyncCx {
|
1320
|
+
current_suspend: self.async_state.current_suspend.get(),
|
1321
|
+
current_poll_cx: poll_cx_box_ptr,
|
1322
|
+
})
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
pub fn fuel_consumed(&self) -> Option<u64> {
|
1326
|
+
if !self.engine.config().tunables.consume_fuel {
|
1327
|
+
return None;
|
1328
|
+
}
|
1329
|
+
let consumed = unsafe { *self.runtime_limits.fuel_consumed.get() };
|
1330
|
+
Some(u64::try_from(self.fuel_adj + consumed).unwrap())
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
fn fuel_remaining(&self) -> Option<u64> {
|
1334
|
+
if !self.engine.config().tunables.consume_fuel {
|
1335
|
+
return None;
|
1336
|
+
}
|
1337
|
+
let consumed = unsafe { *self.runtime_limits.fuel_consumed.get() };
|
1338
|
+
Some(u64::try_from(-consumed).unwrap())
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
fn out_of_fuel_trap(&mut self) {
|
1342
|
+
self.out_of_gas_behavior = OutOfGas::Trap;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
fn out_of_fuel_async_yield(&mut self, injection_count: u64, fuel_to_inject: u64) {
|
1346
|
+
assert!(
|
1347
|
+
self.async_support(),
|
1348
|
+
"cannot use `out_of_fuel_async_yield` without enabling async support in the config"
|
1349
|
+
);
|
1350
|
+
self.out_of_gas_behavior = OutOfGas::InjectFuel {
|
1351
|
+
injection_count,
|
1352
|
+
fuel_to_inject,
|
1353
|
+
};
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
/// Yields execution to the caller on out-of-gas or epoch interruption.
|
1357
|
+
///
|
1358
|
+
/// This only works on async futures and stores, and assumes that we're
|
1359
|
+
/// executing on a fiber. This will yield execution back to the caller once.
|
1360
|
+
#[cfg(feature = "async")]
|
1361
|
+
fn async_yield_impl(&mut self) -> Result<()> {
|
1362
|
+
// Small future that yields once and then returns ()
|
1363
|
+
#[derive(Default)]
|
1364
|
+
struct Yield {
|
1365
|
+
yielded: bool,
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
impl Future for Yield {
|
1369
|
+
type Output = ();
|
1370
|
+
|
1371
|
+
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
|
1372
|
+
if self.yielded {
|
1373
|
+
Poll::Ready(())
|
1374
|
+
} else {
|
1375
|
+
// Flag ourselves as yielded to return next time, and also
|
1376
|
+
// flag the waker that we're already ready to get
|
1377
|
+
// re-enqueued for another poll.
|
1378
|
+
self.yielded = true;
|
1379
|
+
cx.waker().wake_by_ref();
|
1380
|
+
Poll::Pending
|
1381
|
+
}
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
let mut future = Yield::default();
|
1386
|
+
|
1387
|
+
// When control returns, we have a `Result<()>` passed
|
1388
|
+
// in from the host fiber. If this finished successfully then
|
1389
|
+
// we were resumed normally via a `poll`, so keep going. If
|
1390
|
+
// the future was dropped while we were yielded, then we need
|
1391
|
+
// to clean up this fiber. Do so by raising a trap which will
|
1392
|
+
// abort all wasm and get caught on the other side to clean
|
1393
|
+
// things up.
|
1394
|
+
unsafe {
|
1395
|
+
self.async_cx()
|
1396
|
+
.expect("attempted to pull async context during shutdown")
|
1397
|
+
.block_on(Pin::new_unchecked(&mut future))
|
1398
|
+
}
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
fn add_fuel(&mut self, fuel: u64) -> Result<()> {
|
1402
|
+
anyhow::ensure!(
|
1403
|
+
self.engine().config().tunables.consume_fuel,
|
1404
|
+
"fuel is not configured in this store"
|
1405
|
+
);
|
1406
|
+
|
1407
|
+
// Fuel is stored as an i64, so we need to cast it. If the provided fuel
|
1408
|
+
// value overflows that just assume that i64::max will suffice. Wasm
|
1409
|
+
// execution isn't fast enough to burn through i64::max fuel in any
|
1410
|
+
// reasonable amount of time anyway.
|
1411
|
+
let fuel = i64::try_from(fuel).unwrap_or(i64::max_value());
|
1412
|
+
let adj = self.fuel_adj;
|
1413
|
+
let consumed_ptr = unsafe { &mut *self.runtime_limits.fuel_consumed.get() };
|
1414
|
+
|
1415
|
+
match (consumed_ptr.checked_sub(fuel), adj.checked_add(fuel)) {
|
1416
|
+
// If we succesfully did arithmetic without overflowing then we can
|
1417
|
+
// just update our fields.
|
1418
|
+
(Some(consumed), Some(adj)) => {
|
1419
|
+
self.fuel_adj = adj;
|
1420
|
+
*consumed_ptr = consumed;
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
// Otherwise something overflowed. Make sure that we preserve the
|
1424
|
+
// amount of fuel that's already consumed, but otherwise assume that
|
1425
|
+
// we were given infinite fuel.
|
1426
|
+
_ => {
|
1427
|
+
self.fuel_adj = i64::max_value();
|
1428
|
+
*consumed_ptr = (*consumed_ptr + adj) - i64::max_value();
|
1429
|
+
}
|
1430
|
+
}
|
1431
|
+
|
1432
|
+
Ok(())
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
fn consume_fuel(&mut self, fuel: u64) -> Result<u64> {
|
1436
|
+
let consumed_ptr = unsafe { &mut *self.runtime_limits.fuel_consumed.get() };
|
1437
|
+
match i64::try_from(fuel)
|
1438
|
+
.ok()
|
1439
|
+
.and_then(|fuel| consumed_ptr.checked_add(fuel))
|
1440
|
+
{
|
1441
|
+
Some(consumed) if consumed <= 0 => {
|
1442
|
+
*consumed_ptr = consumed;
|
1443
|
+
Ok(u64::try_from(-consumed).unwrap())
|
1444
|
+
}
|
1445
|
+
_ => bail!("not enough fuel remaining in store"),
|
1446
|
+
}
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
#[inline]
|
1450
|
+
pub fn signal_handler(&self) -> Option<*const SignalHandler<'static>> {
|
1451
|
+
let handler = self.signal_handler.as_ref()?;
|
1452
|
+
Some(&**handler as *const _)
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
#[inline]
|
1456
|
+
pub fn vmruntime_limits(&self) -> *mut VMRuntimeLimits {
|
1457
|
+
&self.runtime_limits as *const VMRuntimeLimits as *mut VMRuntimeLimits
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
pub unsafe fn insert_vmexternref_without_gc(&mut self, r: VMExternRef) {
|
1461
|
+
self.externref_activations_table.insert_without_gc(r);
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
#[inline]
|
1465
|
+
pub fn default_caller(&self) -> *mut VMContext {
|
1466
|
+
self.default_caller.vmctx()
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
pub fn traitobj(&self) -> *mut dyn wasmtime_runtime::Store {
|
1470
|
+
self.default_caller.store()
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
/// Takes the cached `Vec<Val>` stored internally across hostcalls to get
|
1474
|
+
/// used as part of calling the host in a `Func::new` method invocation.
|
1475
|
+
#[inline]
|
1476
|
+
pub fn take_hostcall_val_storage(&mut self) -> Vec<Val> {
|
1477
|
+
mem::take(&mut self.hostcall_val_storage)
|
1478
|
+
}
|
1479
|
+
|
1480
|
+
/// Restores the vector previously taken by `take_hostcall_val_storage`
|
1481
|
+
/// above back into the store, allowing it to be used in the future for the
|
1482
|
+
/// next wasm->host call.
|
1483
|
+
#[inline]
|
1484
|
+
pub fn save_hostcall_val_storage(&mut self, storage: Vec<Val>) {
|
1485
|
+
if storage.capacity() > self.hostcall_val_storage.capacity() {
|
1486
|
+
self.hostcall_val_storage = storage;
|
1487
|
+
}
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
/// Same as `take_hostcall_val_storage`, but for the direction of the host
|
1491
|
+
/// calling wasm.
|
1492
|
+
#[inline]
|
1493
|
+
pub fn take_wasm_val_raw_storage(&mut self) -> Vec<ValRaw> {
|
1494
|
+
mem::take(&mut self.wasm_val_raw_storage)
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
/// Same as `save_hostcall_val_storage`, but for the direction of the host
|
1498
|
+
/// calling wasm.
|
1499
|
+
#[inline]
|
1500
|
+
pub fn save_wasm_val_raw_storage(&mut self, storage: Vec<ValRaw>) {
|
1501
|
+
if storage.capacity() > self.wasm_val_raw_storage.capacity() {
|
1502
|
+
self.wasm_val_raw_storage = storage;
|
1503
|
+
}
|
1504
|
+
}
|
1505
|
+
|
1506
|
+
pub(crate) fn push_rooted_funcs(&mut self, funcs: Arc<[Definition]>) {
|
1507
|
+
self.rooted_host_funcs.push(funcs);
|
1508
|
+
}
|
1509
|
+
|
1510
|
+
/// Translates a WebAssembly fault at the native `pc` and native `addr` to a
|
1511
|
+
/// WebAssembly-relative fault.
|
1512
|
+
///
|
1513
|
+
/// This function may abort the process if `addr` is not found to actually
|
1514
|
+
/// reside in any linear memory. In such a situation it means that the
|
1515
|
+
/// segfault was erroneously caught by Wasmtime and is possibly indicative
|
1516
|
+
/// of a code generator bug.
|
1517
|
+
///
|
1518
|
+
/// This function returns `None` for dynamically-bounds-checked-memories
|
1519
|
+
/// with spectre mitigations enabled since the hardware fault address is
|
1520
|
+
/// always zero in these situations which means that the trapping context
|
1521
|
+
/// doesn't have enough information to report the fault address.
|
1522
|
+
pub(crate) fn wasm_fault(&self, pc: usize, addr: usize) -> Option<WasmFault> {
|
1523
|
+
// Explicitly bounds-checked memories with spectre-guards enabled will
|
1524
|
+
// cause out-of-bounds accesses to get routed to address 0, so allow
|
1525
|
+
// wasm instructions to fault on the null address.
|
1526
|
+
if addr == 0 {
|
1527
|
+
return None;
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
// Search all known instances in this store for this address. Note that
|
1531
|
+
// this is probably not the speediest way to do this. Traps, however,
|
1532
|
+
// are generally not expected to be super fast and additionally stores
|
1533
|
+
// probably don't have all that many instances or memories.
|
1534
|
+
//
|
1535
|
+
// If this loop becomes hot in the future, however, it should be
|
1536
|
+
// possible to precompute maps about linear memories in a store and have
|
1537
|
+
// a quicker lookup.
|
1538
|
+
let mut fault = None;
|
1539
|
+
for instance in self.instances.iter() {
|
1540
|
+
if let Some(f) = instance.handle.wasm_fault(addr) {
|
1541
|
+
assert!(fault.is_none());
|
1542
|
+
fault = Some(f);
|
1543
|
+
}
|
1544
|
+
}
|
1545
|
+
if fault.is_some() {
|
1546
|
+
return fault;
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
eprintln!(
|
1550
|
+
"\
|
1551
|
+
Wasmtime caught a segfault for a wasm program because the faulting instruction
|
1552
|
+
is allowed to segfault due to how linear memories are implemented. The address
|
1553
|
+
that was accessed, however, is not known to any linear memory in use within this
|
1554
|
+
Store. This may be indicative of a critical bug in Wasmtime's code generation
|
1555
|
+
because all addresses which are known to be reachable from wasm won't reach this
|
1556
|
+
message.
|
1557
|
+
|
1558
|
+
pc: 0x{pc:x}
|
1559
|
+
address: 0x{addr:x}
|
1560
|
+
|
1561
|
+
This is a possible security issue because WebAssembly has accessed something it
|
1562
|
+
shouldn't have been able to. Other accesses may have succeeded and this one just
|
1563
|
+
happened to be caught. The process will now be aborted to prevent this damage
|
1564
|
+
from going any further and to alert what's going on. If this is a security
|
1565
|
+
issue please reach out to the Wasmtime team via its security policy
|
1566
|
+
at https://bytecodealliance.org/security.
|
1567
|
+
"
|
1568
|
+
);
|
1569
|
+
std::process::abort();
|
1570
|
+
}
|
1571
|
+
|
1572
|
+
#[cfg(feature = "component-model")]
|
1573
|
+
pub(crate) fn component_calls_and_host_table(
|
1574
|
+
&mut self,
|
1575
|
+
) -> (
|
1576
|
+
&mut wasmtime_runtime::component::CallContexts,
|
1577
|
+
&mut wasmtime_runtime::component::ResourceTable,
|
1578
|
+
) {
|
1579
|
+
(&mut self.component_calls, &mut self.component_host_table)
|
1580
|
+
}
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
impl<T> StoreContextMut<'_, T> {
|
1584
|
+
/// Executes a synchronous computation `func` asynchronously on a new fiber.
|
1585
|
+
///
|
1586
|
+
/// This function will convert the synchronous `func` into an asynchronous
|
1587
|
+
/// future. This is done by running `func` in a fiber on a separate native
|
1588
|
+
/// stack which can be suspended and resumed from.
|
1589
|
+
///
|
1590
|
+
/// Most of the nitty-gritty here is how we juggle the various contexts
|
1591
|
+
/// necessary to suspend the fiber later on and poll sub-futures. It's hoped
|
1592
|
+
/// that the various comments are illuminating as to what's going on here.
|
1593
|
+
#[cfg(feature = "async")]
|
1594
|
+
pub(crate) async fn on_fiber<R>(
|
1595
|
+
&mut self,
|
1596
|
+
func: impl FnOnce(&mut StoreContextMut<'_, T>) -> R + Send,
|
1597
|
+
) -> Result<R>
|
1598
|
+
where
|
1599
|
+
T: Send,
|
1600
|
+
{
|
1601
|
+
let config = self.engine().config();
|
1602
|
+
debug_assert!(self.0.async_support());
|
1603
|
+
debug_assert!(config.async_stack_size > 0);
|
1604
|
+
|
1605
|
+
let mut slot = None;
|
1606
|
+
let future = {
|
1607
|
+
let current_poll_cx = self.0.async_state.current_poll_cx.get();
|
1608
|
+
let current_suspend = self.0.async_state.current_suspend.get();
|
1609
|
+
let stack = self.engine().allocator().allocate_fiber_stack()?;
|
1610
|
+
|
1611
|
+
let engine = self.engine().clone();
|
1612
|
+
let slot = &mut slot;
|
1613
|
+
let fiber = wasmtime_fiber::Fiber::new(stack, move |keep_going, suspend| {
|
1614
|
+
// First check and see if we were interrupted/dropped, and only
|
1615
|
+
// continue if we haven't been.
|
1616
|
+
keep_going?;
|
1617
|
+
|
1618
|
+
// Configure our store's suspension context for the rest of the
|
1619
|
+
// execution of this fiber. Note that a raw pointer is stored here
|
1620
|
+
// which is only valid for the duration of this closure.
|
1621
|
+
// Consequently we at least replace it with the previous value when
|
1622
|
+
// we're done. This reset is also required for correctness because
|
1623
|
+
// otherwise our value will overwrite another active fiber's value.
|
1624
|
+
// There should be a test that segfaults in `async_functions.rs` if
|
1625
|
+
// this `Replace` is removed.
|
1626
|
+
unsafe {
|
1627
|
+
let _reset = Reset(current_suspend, *current_suspend);
|
1628
|
+
*current_suspend = suspend;
|
1629
|
+
|
1630
|
+
*slot = Some(func(self));
|
1631
|
+
Ok(())
|
1632
|
+
}
|
1633
|
+
})?;
|
1634
|
+
|
1635
|
+
// Once we have the fiber representing our synchronous computation, we
|
1636
|
+
// wrap that in a custom future implementation which does the
|
1637
|
+
// translation from the future protocol to our fiber API.
|
1638
|
+
FiberFuture {
|
1639
|
+
fiber,
|
1640
|
+
current_poll_cx,
|
1641
|
+
engine,
|
1642
|
+
state: Some(wasmtime_runtime::AsyncWasmCallState::new()),
|
1643
|
+
}
|
1644
|
+
};
|
1645
|
+
future.await?;
|
1646
|
+
|
1647
|
+
return Ok(slot.unwrap());
|
1648
|
+
|
1649
|
+
struct FiberFuture<'a> {
|
1650
|
+
fiber: wasmtime_fiber::Fiber<'a, Result<()>, (), Result<()>>,
|
1651
|
+
current_poll_cx: *mut *mut Context<'static>,
|
1652
|
+
engine: Engine,
|
1653
|
+
// See comments in `FiberFuture::resume` for this
|
1654
|
+
state: Option<wasmtime_runtime::AsyncWasmCallState>,
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
// This is surely the most dangerous `unsafe impl Send` in the entire
|
1658
|
+
// crate. There are two members in `FiberFuture` which cause it to not
|
1659
|
+
// be `Send`. One is `current_poll_cx` and is entirely uninteresting.
|
1660
|
+
// This is just used to manage `Context` pointers across `await` points
|
1661
|
+
// in the future, and requires raw pointers to get it to happen easily.
|
1662
|
+
// Nothing too weird about the `Send`-ness, values aren't actually
|
1663
|
+
// crossing threads.
|
1664
|
+
//
|
1665
|
+
// The really interesting piece is `fiber`. Now the "fiber" here is
|
1666
|
+
// actual honest-to-god Rust code which we're moving around. What we're
|
1667
|
+
// doing is the equivalent of moving our thread's stack to another OS
|
1668
|
+
// thread. Turns out we, in general, have no idea what's on the stack
|
1669
|
+
// and would generally have no way to verify that this is actually safe
|
1670
|
+
// to do!
|
1671
|
+
//
|
1672
|
+
// Thankfully, though, Wasmtime has the power. Without being glib it's
|
1673
|
+
// actually worth examining what's on the stack. It's unfortunately not
|
1674
|
+
// super-local to this function itself. Our closure to `Fiber::new` runs
|
1675
|
+
// `func`, which is given to us from the outside. Thankfully, though, we
|
1676
|
+
// have tight control over this. Usage of `on_fiber` is typically done
|
1677
|
+
// *just* before entering WebAssembly itself, so we'll have a few stack
|
1678
|
+
// frames of Rust code (all in Wasmtime itself) before we enter wasm.
|
1679
|
+
//
|
1680
|
+
// Once we've entered wasm, well then we have a whole bunch of wasm
|
1681
|
+
// frames on the stack. We've got this nifty thing called Cranelift,
|
1682
|
+
// though, which allows us to also have complete control over everything
|
1683
|
+
// on the stack!
|
1684
|
+
//
|
1685
|
+
// Finally, when wasm switches back to the fiber's starting pointer
|
1686
|
+
// (this future we're returning) then it means wasm has reentered Rust.
|
1687
|
+
// Suspension can only happen via the `block_on` function of an
|
1688
|
+
// `AsyncCx`. This, conveniently, also happens entirely in Wasmtime
|
1689
|
+
// controlled code!
|
1690
|
+
//
|
1691
|
+
// There's an extremely important point that should be called out here.
|
1692
|
+
// User-provided futures **are not on the stack** during suspension
|
1693
|
+
// points. This is extremely crucial because we in general cannot reason
|
1694
|
+
// about Send/Sync for stack-local variables since rustc doesn't analyze
|
1695
|
+
// them at all. With our construction, though, we are guaranteed that
|
1696
|
+
// Wasmtime owns all stack frames between the stack of a fiber and when
|
1697
|
+
// the fiber suspends (and it could move across threads). At this time
|
1698
|
+
// the only user-provided piece of data on the stack is the future
|
1699
|
+
// itself given to us. Lo-and-behold as you might notice the future is
|
1700
|
+
// required to be `Send`!
|
1701
|
+
//
|
1702
|
+
// What this all boils down to is that we, as the authors of Wasmtime,
|
1703
|
+
// need to be extremely careful that on the async fiber stack we only
|
1704
|
+
// store Send things. For example we can't start using `Rc` willy nilly
|
1705
|
+
// by accident and leave a copy in TLS somewhere. (similarly we have to
|
1706
|
+
// be ready for TLS to change while we're executing wasm code between
|
1707
|
+
// suspension points).
|
1708
|
+
//
|
1709
|
+
// While somewhat onerous it shouldn't be too too hard (the TLS bit is
|
1710
|
+
// the hardest bit so far). This does mean, though, that no user should
|
1711
|
+
// ever have to worry about the `Send`-ness of Wasmtime. If rustc says
|
1712
|
+
// it's ok, then it's ok.
|
1713
|
+
//
|
1714
|
+
// With all that in mind we unsafely assert here that wasmtime is
|
1715
|
+
// correct. We declare the fiber as only containing Send data on its
|
1716
|
+
// stack, despite not knowing for sure at compile time that this is
|
1717
|
+
// correct. That's what `unsafe` in Rust is all about, though, right?
|
1718
|
+
unsafe impl Send for FiberFuture<'_> {}
|
1719
|
+
|
1720
|
+
impl FiberFuture<'_> {
|
1721
|
+
/// This is a helper function to call `resume` on the underlying
|
1722
|
+
/// fiber while correctly managing Wasmtime's thread-local data.
|
1723
|
+
///
|
1724
|
+
/// Wasmtime's implementation of traps leverages thread-local data
|
1725
|
+
/// to get access to metadata during a signal. This thread-local
|
1726
|
+
/// data is a linked list of "activations" where the nodes of the
|
1727
|
+
/// linked list are stored on the stack. It would be invalid as a
|
1728
|
+
/// result to suspend a computation with the head of the linked list
|
1729
|
+
/// on this stack then move the stack to another thread and resume
|
1730
|
+
/// it. That means that a different thread would point to our stack
|
1731
|
+
/// and our thread doesn't point to our stack at all!
|
1732
|
+
///
|
1733
|
+
/// Basically management of TLS is required here one way or another.
|
1734
|
+
/// The strategy currently settled on is to manage the list of
|
1735
|
+
/// activations created by this fiber as a unit. When a fiber
|
1736
|
+
/// resumes the linked list is prepended to the current thread's
|
1737
|
+
/// list. When the fiber is suspended then the fiber's list of
|
1738
|
+
/// activations are all removed en-masse and saved within the fiber.
|
1739
|
+
fn resume(&mut self, val: Result<()>) -> Result<Result<()>, ()> {
|
1740
|
+
unsafe {
|
1741
|
+
let prev = self.state.take().unwrap().push();
|
1742
|
+
let restore = Restore {
|
1743
|
+
fiber: self,
|
1744
|
+
state: Some(prev),
|
1745
|
+
};
|
1746
|
+
return restore.fiber.fiber.resume(val);
|
1747
|
+
}
|
1748
|
+
|
1749
|
+
struct Restore<'a, 'b> {
|
1750
|
+
fiber: &'a mut FiberFuture<'b>,
|
1751
|
+
state: Option<wasmtime_runtime::PreviousAsyncWasmCallState>,
|
1752
|
+
}
|
1753
|
+
|
1754
|
+
impl Drop for Restore<'_, '_> {
|
1755
|
+
fn drop(&mut self) {
|
1756
|
+
unsafe {
|
1757
|
+
self.fiber.state = Some(self.state.take().unwrap().restore());
|
1758
|
+
}
|
1759
|
+
}
|
1760
|
+
}
|
1761
|
+
}
|
1762
|
+
}
|
1763
|
+
|
1764
|
+
impl Future for FiberFuture<'_> {
|
1765
|
+
type Output = Result<()>;
|
1766
|
+
|
1767
|
+
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
1768
|
+
// We need to carry over this `cx` into our fiber's runtime
|
1769
|
+
// for when it tries to poll sub-futures that are created. Doing
|
1770
|
+
// this must be done unsafely, however, since `cx` is only alive
|
1771
|
+
// for this one singular function call. Here we do a `transmute`
|
1772
|
+
// to extend the lifetime of `Context` so it can be stored in
|
1773
|
+
// our `Store`, and then we replace the current polling context
|
1774
|
+
// with this one.
|
1775
|
+
//
|
1776
|
+
// Note that the replace is done for weird situations where
|
1777
|
+
// futures might be switching contexts and there's multiple
|
1778
|
+
// wasmtime futures in a chain of futures.
|
1779
|
+
//
|
1780
|
+
// On exit from this function, though, we reset the polling
|
1781
|
+
// context back to what it was to signify that `Store` no longer
|
1782
|
+
// has access to this pointer.
|
1783
|
+
unsafe {
|
1784
|
+
let _reset = Reset(self.current_poll_cx, *self.current_poll_cx);
|
1785
|
+
*self.current_poll_cx =
|
1786
|
+
std::mem::transmute::<&mut Context<'_>, *mut Context<'static>>(cx);
|
1787
|
+
|
1788
|
+
// After that's set up we resume execution of the fiber, which
|
1789
|
+
// may also start the fiber for the first time. This either
|
1790
|
+
// returns `Ok` saying the fiber finished (yay!) or it
|
1791
|
+
// returns `Err` with the payload passed to `suspend`, which
|
1792
|
+
// in our case is `()`.
|
1793
|
+
match self.resume(Ok(())) {
|
1794
|
+
Ok(result) => Poll::Ready(result),
|
1795
|
+
|
1796
|
+
// If `Err` is returned that means the fiber polled a
|
1797
|
+
// future but it said "Pending", so we propagate that
|
1798
|
+
// here.
|
1799
|
+
//
|
1800
|
+
// An additional safety check is performed when leaving
|
1801
|
+
// this function to help bolster the guarantees of
|
1802
|
+
// `unsafe impl Send` above. Notably this future may get
|
1803
|
+
// re-polled on a different thread. Wasmtime's
|
1804
|
+
// thread-local state points to the stack, however,
|
1805
|
+
// meaning that it would be incorrect to leave a pointer
|
1806
|
+
// in TLS when this function returns. This function
|
1807
|
+
// performs a runtime assert to verify that this is the
|
1808
|
+
// case, notably that the one TLS pointer Wasmtime uses
|
1809
|
+
// is not pointing anywhere within the stack. If it is
|
1810
|
+
// then that's a bug indicating that TLS management in
|
1811
|
+
// Wasmtime is incorrect.
|
1812
|
+
Err(()) => {
|
1813
|
+
if let Some(range) = self.fiber.stack().range() {
|
1814
|
+
wasmtime_runtime::AsyncWasmCallState::assert_current_state_not_in_range(range);
|
1815
|
+
}
|
1816
|
+
Poll::Pending
|
1817
|
+
}
|
1818
|
+
}
|
1819
|
+
}
|
1820
|
+
}
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
// Dropping futures is pretty special in that it means the future has
|
1824
|
+
// been requested to be cancelled. Here we run the risk of dropping an
|
1825
|
+
// in-progress fiber, and if we were to do nothing then the fiber would
|
1826
|
+
// leak all its owned stack resources.
|
1827
|
+
//
|
1828
|
+
// To handle this we implement `Drop` here and, if the fiber isn't done,
|
1829
|
+
// resume execution of the fiber saying "hey please stop you're
|
1830
|
+
// interrupted". Our `Trap` created here (which has the stack trace
|
1831
|
+
// of whomever dropped us) will then get propagated in whatever called
|
1832
|
+
// `block_on`, and the idea is that the trap propagates all the way back
|
1833
|
+
// up to the original fiber start, finishing execution.
|
1834
|
+
//
|
1835
|
+
// We don't actually care about the fiber's return value here (no one's
|
1836
|
+
// around to look at it), we just assert the fiber finished to
|
1837
|
+
// completion.
|
1838
|
+
impl Drop for FiberFuture<'_> {
|
1839
|
+
fn drop(&mut self) {
|
1840
|
+
if !self.fiber.done() {
|
1841
|
+
let result = self.resume(Err(anyhow!("future dropped")));
|
1842
|
+
// This resumption with an error should always complete the
|
1843
|
+
// fiber. While it's technically possible for host code to catch
|
1844
|
+
// the trap and re-resume, we'd ideally like to signal that to
|
1845
|
+
// callers that they shouldn't be doing that.
|
1846
|
+
debug_assert!(result.is_ok());
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
self.state.take().unwrap().assert_null();
|
1850
|
+
|
1851
|
+
unsafe {
|
1852
|
+
self.engine
|
1853
|
+
.allocator()
|
1854
|
+
.deallocate_fiber_stack(self.fiber.stack());
|
1855
|
+
}
|
1856
|
+
}
|
1857
|
+
}
|
1858
|
+
}
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
#[cfg(feature = "async")]
|
1862
|
+
pub struct AsyncCx {
|
1863
|
+
current_suspend: *mut *const wasmtime_fiber::Suspend<Result<()>, (), Result<()>>,
|
1864
|
+
current_poll_cx: *mut *mut Context<'static>,
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
#[cfg(feature = "async")]
|
1868
|
+
impl AsyncCx {
|
1869
|
+
/// Blocks on the asynchronous computation represented by `future` and
|
1870
|
+
/// produces the result here, in-line.
|
1871
|
+
///
|
1872
|
+
/// This function is designed to only work when it's currently executing on
|
1873
|
+
/// a native fiber. This fiber provides the ability for us to handle the
|
1874
|
+
/// future's `Pending` state as "jump back to whomever called the fiber in
|
1875
|
+
/// an asynchronous fashion and propagate `Pending`". This tight coupling
|
1876
|
+
/// with `on_fiber` below is what powers the asynchronicity of calling wasm.
|
1877
|
+
/// Note that the asynchronous part only applies to host functions, wasm
|
1878
|
+
/// itself never really does anything asynchronous at this time.
|
1879
|
+
///
|
1880
|
+
/// This function takes a `future` and will (appear to) synchronously wait
|
1881
|
+
/// on the result. While this function is executing it will fiber switch
|
1882
|
+
/// to-and-from the original frame calling `on_fiber` which should be a
|
1883
|
+
/// guarantee due to how async stores are configured.
|
1884
|
+
///
|
1885
|
+
/// The return value here is either the output of the future `T`, or a trap
|
1886
|
+
/// which represents that the asynchronous computation was cancelled. It is
|
1887
|
+
/// not recommended to catch the trap and try to keep executing wasm, so
|
1888
|
+
/// we've tried to liberally document this.
|
1889
|
+
pub unsafe fn block_on<U>(
|
1890
|
+
&self,
|
1891
|
+
mut future: Pin<&mut (dyn Future<Output = U> + Send)>,
|
1892
|
+
) -> Result<U> {
|
1893
|
+
// Take our current `Suspend` context which was configured as soon as
|
1894
|
+
// our fiber started. Note that we must load it at the front here and
|
1895
|
+
// save it on our stack frame. While we're polling the future other
|
1896
|
+
// fibers may be started for recursive computations, and the current
|
1897
|
+
// suspend context is only preserved at the edges of the fiber, not
|
1898
|
+
// during the fiber itself.
|
1899
|
+
//
|
1900
|
+
// For a little bit of extra safety we also replace the current value
|
1901
|
+
// with null to try to catch any accidental bugs on our part early.
|
1902
|
+
// This is all pretty unsafe so we're trying to be careful...
|
1903
|
+
//
|
1904
|
+
// Note that there should be a segfaulting test in `async_functions.rs`
|
1905
|
+
// if this `Reset` is removed.
|
1906
|
+
let suspend = *self.current_suspend;
|
1907
|
+
let _reset = Reset(self.current_suspend, suspend);
|
1908
|
+
*self.current_suspend = ptr::null();
|
1909
|
+
assert!(!suspend.is_null());
|
1910
|
+
|
1911
|
+
loop {
|
1912
|
+
let future_result = {
|
1913
|
+
let poll_cx = *self.current_poll_cx;
|
1914
|
+
let _reset = Reset(self.current_poll_cx, poll_cx);
|
1915
|
+
*self.current_poll_cx = ptr::null_mut();
|
1916
|
+
assert!(!poll_cx.is_null());
|
1917
|
+
future.as_mut().poll(&mut *poll_cx)
|
1918
|
+
};
|
1919
|
+
|
1920
|
+
match future_result {
|
1921
|
+
Poll::Ready(t) => break Ok(t),
|
1922
|
+
Poll::Pending => {}
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
(*suspend).suspend(())?;
|
1926
|
+
}
|
1927
|
+
}
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
unsafe impl<T> wasmtime_runtime::Store for StoreInner<T> {
|
1931
|
+
fn vmruntime_limits(&self) -> *mut VMRuntimeLimits {
|
1932
|
+
<StoreOpaque>::vmruntime_limits(self)
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
fn epoch_ptr(&self) -> *const AtomicU64 {
|
1936
|
+
self.engine.epoch_counter() as *const _
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
fn externref_activations_table(
|
1940
|
+
&mut self,
|
1941
|
+
) -> (
|
1942
|
+
&mut VMExternRefActivationsTable,
|
1943
|
+
&dyn wasmtime_runtime::ModuleInfoLookup,
|
1944
|
+
) {
|
1945
|
+
let inner = &mut self.inner;
|
1946
|
+
(&mut inner.externref_activations_table, &inner.modules)
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
fn memory_growing(
|
1950
|
+
&mut self,
|
1951
|
+
current: usize,
|
1952
|
+
desired: usize,
|
1953
|
+
maximum: Option<usize>,
|
1954
|
+
) -> Result<bool, anyhow::Error> {
|
1955
|
+
match self.limiter {
|
1956
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
1957
|
+
limiter(&mut self.data).memory_growing(current, desired, maximum)
|
1958
|
+
}
|
1959
|
+
#[cfg(feature = "async")]
|
1960
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => unsafe {
|
1961
|
+
self.inner
|
1962
|
+
.async_cx()
|
1963
|
+
.expect("ResourceLimiterAsync requires async Store")
|
1964
|
+
.block_on(
|
1965
|
+
limiter(&mut self.data)
|
1966
|
+
.memory_growing(current, desired, maximum)
|
1967
|
+
.as_mut(),
|
1968
|
+
)?
|
1969
|
+
},
|
1970
|
+
None => Ok(true),
|
1971
|
+
}
|
1972
|
+
}
|
1973
|
+
|
1974
|
+
fn memory_grow_failed(&mut self, error: &anyhow::Error) {
|
1975
|
+
match self.limiter {
|
1976
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
1977
|
+
limiter(&mut self.data).memory_grow_failed(error)
|
1978
|
+
}
|
1979
|
+
#[cfg(feature = "async")]
|
1980
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => {
|
1981
|
+
limiter(&mut self.data).memory_grow_failed(error)
|
1982
|
+
}
|
1983
|
+
None => {}
|
1984
|
+
}
|
1985
|
+
}
|
1986
|
+
|
1987
|
+
fn table_growing(
|
1988
|
+
&mut self,
|
1989
|
+
current: u32,
|
1990
|
+
desired: u32,
|
1991
|
+
maximum: Option<u32>,
|
1992
|
+
) -> Result<bool, anyhow::Error> {
|
1993
|
+
// Need to borrow async_cx before the mut borrow of the limiter.
|
1994
|
+
// self.async_cx() panicks when used with a non-async store, so
|
1995
|
+
// wrap this in an option.
|
1996
|
+
#[cfg(feature = "async")]
|
1997
|
+
let async_cx = if self.async_support() {
|
1998
|
+
Some(self.async_cx().unwrap())
|
1999
|
+
} else {
|
2000
|
+
None
|
2001
|
+
};
|
2002
|
+
|
2003
|
+
match self.limiter {
|
2004
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2005
|
+
limiter(&mut self.data).table_growing(current, desired, maximum)
|
2006
|
+
}
|
2007
|
+
#[cfg(feature = "async")]
|
2008
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => unsafe {
|
2009
|
+
async_cx
|
2010
|
+
.expect("ResourceLimiterAsync requires async Store")
|
2011
|
+
.block_on(
|
2012
|
+
limiter(&mut self.data)
|
2013
|
+
.table_growing(current, desired, maximum)
|
2014
|
+
.as_mut(),
|
2015
|
+
)?
|
2016
|
+
},
|
2017
|
+
None => Ok(true),
|
2018
|
+
}
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
fn table_grow_failed(&mut self, error: &anyhow::Error) {
|
2022
|
+
match self.limiter {
|
2023
|
+
Some(ResourceLimiterInner::Sync(ref mut limiter)) => {
|
2024
|
+
limiter(&mut self.data).table_grow_failed(error)
|
2025
|
+
}
|
2026
|
+
#[cfg(feature = "async")]
|
2027
|
+
Some(ResourceLimiterInner::Async(ref mut limiter)) => {
|
2028
|
+
limiter(&mut self.data).table_grow_failed(error)
|
2029
|
+
}
|
2030
|
+
None => {}
|
2031
|
+
}
|
2032
|
+
}
|
2033
|
+
|
2034
|
+
fn out_of_gas(&mut self) -> Result<(), anyhow::Error> {
|
2035
|
+
return match &mut self.out_of_gas_behavior {
|
2036
|
+
OutOfGas::Trap => Err(Trap::OutOfFuel.into()),
|
2037
|
+
#[cfg(feature = "async")]
|
2038
|
+
OutOfGas::InjectFuel {
|
2039
|
+
injection_count,
|
2040
|
+
fuel_to_inject,
|
2041
|
+
} => {
|
2042
|
+
if *injection_count == 0 {
|
2043
|
+
return Err(Trap::OutOfFuel.into());
|
2044
|
+
}
|
2045
|
+
*injection_count -= 1;
|
2046
|
+
let fuel = *fuel_to_inject;
|
2047
|
+
self.async_yield_impl()?;
|
2048
|
+
if fuel > 0 {
|
2049
|
+
self.add_fuel(fuel).unwrap();
|
2050
|
+
}
|
2051
|
+
Ok(())
|
2052
|
+
}
|
2053
|
+
#[cfg(not(feature = "async"))]
|
2054
|
+
OutOfGas::InjectFuel { .. } => unreachable!(),
|
2055
|
+
};
|
2056
|
+
}
|
2057
|
+
|
2058
|
+
fn new_epoch(&mut self) -> Result<u64, anyhow::Error> {
|
2059
|
+
// Temporarily take the configured behavior to avoid mutably borrowing
|
2060
|
+
// multiple times.
|
2061
|
+
let mut behavior = self.epoch_deadline_behavior.take();
|
2062
|
+
let delta_result = match &mut behavior {
|
2063
|
+
None => Err(Trap::Interrupt.into()),
|
2064
|
+
Some(callback) => callback((&mut *self).as_context_mut()).and_then(|update| {
|
2065
|
+
let delta = match update {
|
2066
|
+
UpdateDeadline::Continue(delta) => delta,
|
2067
|
+
|
2068
|
+
#[cfg(feature = "async")]
|
2069
|
+
UpdateDeadline::Yield(delta) => {
|
2070
|
+
assert!(
|
2071
|
+
self.async_support(),
|
2072
|
+
"cannot use `UpdateDeadline::Yield` without enabling async support in the config"
|
2073
|
+
);
|
2074
|
+
// Do the async yield. May return a trap if future was
|
2075
|
+
// canceled while we're yielded.
|
2076
|
+
self.async_yield_impl()?;
|
2077
|
+
delta
|
2078
|
+
}
|
2079
|
+
};
|
2080
|
+
|
2081
|
+
// Set a new deadline and return the new epoch deadline so
|
2082
|
+
// the Wasm code doesn't have to reload it.
|
2083
|
+
self.set_epoch_deadline(delta);
|
2084
|
+
Ok(self.get_epoch_deadline())
|
2085
|
+
})
|
2086
|
+
};
|
2087
|
+
|
2088
|
+
// Put back the original behavior which was replaced by `take`.
|
2089
|
+
self.epoch_deadline_behavior = behavior;
|
2090
|
+
delta_result
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
#[cfg(feature = "component-model")]
|
2094
|
+
fn component_calls(&mut self) -> &mut wasmtime_runtime::component::CallContexts {
|
2095
|
+
&mut self.component_calls
|
2096
|
+
}
|
2097
|
+
}
|
2098
|
+
|
2099
|
+
impl<T> StoreInner<T> {
|
2100
|
+
pub(crate) fn set_epoch_deadline(&mut self, delta: u64) {
|
2101
|
+
// Set a new deadline based on the "epoch deadline delta".
|
2102
|
+
//
|
2103
|
+
// Safety: this is safe because the epoch deadline in the
|
2104
|
+
// `VMRuntimeLimits` is accessed only here and by Wasm guest code
|
2105
|
+
// running in this store, and we have a `&mut self` here.
|
2106
|
+
//
|
2107
|
+
// Also, note that when this update is performed while Wasm is
|
2108
|
+
// on the stack, the Wasm will reload the new value once we
|
2109
|
+
// return into it.
|
2110
|
+
let epoch_deadline = unsafe { (*self.vmruntime_limits()).epoch_deadline.get_mut() };
|
2111
|
+
*epoch_deadline = self.engine().current_epoch() + delta;
|
2112
|
+
}
|
2113
|
+
|
2114
|
+
fn epoch_deadline_trap(&mut self) {
|
2115
|
+
self.epoch_deadline_behavior = None;
|
2116
|
+
}
|
2117
|
+
|
2118
|
+
fn epoch_deadline_callback(
|
2119
|
+
&mut self,
|
2120
|
+
callback: Box<dyn FnMut(StoreContextMut<T>) -> Result<UpdateDeadline> + Send + Sync>,
|
2121
|
+
) {
|
2122
|
+
self.epoch_deadline_behavior = Some(callback);
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
fn epoch_deadline_async_yield_and_update(&mut self, delta: u64) {
|
2126
|
+
assert!(
|
2127
|
+
self.async_support(),
|
2128
|
+
"cannot use `epoch_deadline_async_yield_and_update` without enabling async support in the config"
|
2129
|
+
);
|
2130
|
+
#[cfg(feature = "async")]
|
2131
|
+
{
|
2132
|
+
self.epoch_deadline_behavior =
|
2133
|
+
Some(Box::new(move |_store| Ok(UpdateDeadline::Yield(delta))));
|
2134
|
+
}
|
2135
|
+
let _ = delta; // suppress warning in non-async build
|
2136
|
+
}
|
2137
|
+
|
2138
|
+
fn get_epoch_deadline(&self) -> u64 {
|
2139
|
+
// Safety: this is safe because, as above, it is only invoked
|
2140
|
+
// from within `new_epoch` which is called from guest Wasm
|
2141
|
+
// code, which will have an exclusive borrow on the Store.
|
2142
|
+
let epoch_deadline = unsafe { (*self.vmruntime_limits()).epoch_deadline.get_mut() };
|
2143
|
+
*epoch_deadline
|
2144
|
+
}
|
2145
|
+
}
|
2146
|
+
|
2147
|
+
impl<T: Default> Default for Store<T> {
|
2148
|
+
fn default() -> Store<T> {
|
2149
|
+
Store::new(&Engine::default(), T::default())
|
2150
|
+
}
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
impl<T: fmt::Debug> fmt::Debug for Store<T> {
|
2154
|
+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2155
|
+
let inner = &**self.inner as *const StoreInner<T>;
|
2156
|
+
f.debug_struct("Store")
|
2157
|
+
.field("inner", &inner)
|
2158
|
+
.field("data", &self.inner.data)
|
2159
|
+
.finish()
|
2160
|
+
}
|
2161
|
+
}
|
2162
|
+
|
2163
|
+
impl<T> Drop for Store<T> {
|
2164
|
+
fn drop(&mut self) {
|
2165
|
+
// for documentation on this `unsafe`, see `into_data`.
|
2166
|
+
unsafe {
|
2167
|
+
ManuallyDrop::drop(&mut self.inner.data);
|
2168
|
+
ManuallyDrop::drop(&mut self.inner);
|
2169
|
+
}
|
2170
|
+
}
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
impl Drop for StoreOpaque {
|
2174
|
+
fn drop(&mut self) {
|
2175
|
+
// NB it's important that this destructor does not access `self.data`.
|
2176
|
+
// That is deallocated by `Drop for Store<T>` above.
|
2177
|
+
|
2178
|
+
unsafe {
|
2179
|
+
let allocator = self.engine.allocator();
|
2180
|
+
let ondemand = OnDemandInstanceAllocator::default();
|
2181
|
+
for instance in self.instances.iter_mut() {
|
2182
|
+
if instance.ondemand {
|
2183
|
+
ondemand.deallocate(&mut instance.handle);
|
2184
|
+
} else {
|
2185
|
+
allocator.deallocate(&mut instance.handle);
|
2186
|
+
}
|
2187
|
+
}
|
2188
|
+
ondemand.deallocate(&mut self.default_caller);
|
2189
|
+
|
2190
|
+
// See documentation for these fields on `StoreOpaque` for why they
|
2191
|
+
// must be dropped in this order.
|
2192
|
+
ManuallyDrop::drop(&mut self.store_data);
|
2193
|
+
ManuallyDrop::drop(&mut self.rooted_host_funcs);
|
2194
|
+
}
|
2195
|
+
}
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
impl wasmtime_runtime::ModuleInfoLookup for ModuleRegistry {
|
2199
|
+
fn lookup(&self, pc: usize) -> Option<&dyn ModuleInfo> {
|
2200
|
+
self.lookup_module(pc)
|
2201
|
+
}
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
struct Reset<T: Copy>(*mut T, T);
|
2205
|
+
|
2206
|
+
impl<T: Copy> Drop for Reset<T> {
|
2207
|
+
fn drop(&mut self) {
|
2208
|
+
unsafe {
|
2209
|
+
*self.0 = self.1;
|
2210
|
+
}
|
2211
|
+
}
|
2212
|
+
}
|