wasmtime 11.0.0 → 12.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +234 -173
- data/ext/Cargo.toml +7 -7
- data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +321 -0
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +548 -0
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +145 -0
- data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +306 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/builtin_split_dwarf_loader.rs +164 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/function.rs +555 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/lazy.rs +31 -0
- data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/correctness.rs +126 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/output_equivalence.rs +135 -0
- data/ext/cargo-vendor/addr2line-0.20.0/tests/parse.rs +114 -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/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/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/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/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/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/mod.rs +2125 -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/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/x64/abi.rs +1204 -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/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/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/icmp.isle +177 -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/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/mod.rs +88 -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-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/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/object-0.31.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +621 -0
- data/ext/cargo-vendor/object-0.31.1/Cargo.toml +161 -0
- data/ext/cargo-vendor/object-0.31.1/README.md +58 -0
- data/ext/cargo-vendor/object-0.31.1/clippy.toml +1 -0
- data/ext/cargo-vendor/object-0.31.1/src/common.rs +499 -0
- data/ext/cargo-vendor/object-0.31.1/src/elf.rs +6146 -0
- data/ext/cargo-vendor/object-0.31.1/src/endian.rs +831 -0
- data/ext/cargo-vendor/object-0.31.1/src/lib.rs +116 -0
- data/ext/cargo-vendor/object-0.31.1/src/macho.rs +3307 -0
- data/ext/cargo-vendor/object-0.31.1/src/pe.rs +3050 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +1323 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/comdat.rs +207 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/file.rs +364 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/relocation.rs +104 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/section.rs +574 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/symbol.rs +626 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/attributes.rs +303 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/comdat.rs +160 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +910 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/hash.rs +220 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/mod.rs +42 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +263 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/section.rs +1146 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/segment.rs +332 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +577 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/version.rs +421 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/dyld_cache.rs +343 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/file.rs +731 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/load_command.rs +373 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/section.rs +387 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/segment.rs +301 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/macho/symbol.rs +488 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +760 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/data_directory.rs +211 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/file.rs +1029 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/resource.rs +207 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/rich.rs +91 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/pe/section.rs +434 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/read_cache.rs +182 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/read_ref.rs +137 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/traits.rs +469 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/util.rs +425 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/wasm.rs +951 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/comdat.rs +129 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/relocation.rs +127 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/section.rs +427 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/segment.rs +113 -0
- data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/symbol.rs +695 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/coff.rs +725 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +891 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/writer.rs +2143 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +978 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/mod.rs +943 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/string.rs +159 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/util.rs +260 -0
- data/ext/cargo-vendor/object-0.31.1/src/write/xcoff.rs +556 -0
- data/ext/cargo-vendor/object-0.31.1/src/xcoff.rs +893 -0
- data/ext/cargo-vendor/object-0.31.1/tests/read/coff.rs +23 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/elf.rs +289 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +24 -0
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +636 -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/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/wasi-cap-std-sync-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/Cargo.toml +96 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/src/sched/unix.rs +82 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/src/file.rs +269 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/src/sched/subscription.rs +77 -0
- data/ext/cargo-vendor/wasi-common-12.0.1/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.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/Cargo.toml +186 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/README.md +119 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/compiler.rs +666 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/component.rs +466 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/host.rs +456 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/options.rs +510 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/typed.rs +2326 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func.rs +718 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/instance.rs +781 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/linker.rs +479 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/matching.rs +215 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/mod.rs +316 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/resources.rs +716 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/types.rs +562 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/component/values.rs +1376 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/config.rs +2096 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/coredump.rs +115 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/engine/serialization.rs +629 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/externals.rs +768 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/func.rs +2356 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/instance.rs +883 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/lib.rs +490 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/memory.rs +954 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/module/registry.rs +329 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/module.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/resources.rs +33 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store/data.rs +283 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store/func_refs.rs +85 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/store.rs +2212 -0
- data/ext/cargo-vendor/wasmtime-12.0.1/src/trap.rs +639 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-12.0.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/bindgen.rs +343 -0
- data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/component.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-12.0.1/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/Cargo.toml +93 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/builder.rs +116 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler/component.rs +959 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/expression.rs +1250 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/unit.rs +522 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/utils.rs +187 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/func_environ.rs +2377 -0
- data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/lib.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/src/lib.rs +129 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.lock +736 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/examples/factc.rs +207 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/compilation.rs +400 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/compiler.rs +47 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/dfg.rs +678 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/info.rs +583 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate/adapt.rs +457 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate/inline.rs +1327 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/translate.rs +943 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types/resources.rs +240 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types.rs +1920 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component.rs +95 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/signature.rs +135 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/trampoline.rs +3269 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/transcode.rs +168 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact.rs +713 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_environ.rs +887 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/trap_encoding.rs +246 -0
- data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/tunables.rs +115 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/Cargo.toml +51 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/build.rs +26 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/aarch64.rs +184 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/arm.rs +85 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/riscv64.rs +158 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/s390x.S +123 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix/x86_64.rs +160 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/unix.rs +215 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/windows.c +9 -0
- data/ext/cargo-vendor/wasmtime-fiber-12.0.1/src/windows.rs +162 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/profiling.rs +108 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/src/gdb_jit_int.rs +130 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/Cargo.toml +119 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/build.rs +19 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component/libcalls.rs +574 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component/resources.rs +327 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/component.rs +853 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/debug_builtins.rs +59 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/helpers.c +108 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/on_demand.rs +127 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator.rs +414 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/lib.rs +289 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/libcalls.rs +627 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/mmap/unix.rs +148 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/send_sync_ptr.rs +77 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/aarch64.rs +42 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/riscv64.rs +43 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/s390x.S +62 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/x86_64.rs +64 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/coredump.rs +38 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/unix.rs +402 -0
- data/ext/cargo-vendor/wasmtime-runtime-12.0.1/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.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/src/lib.rs +66 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/Cargo.toml +191 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/command.rs +91 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/ctx.rs +237 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/filesystem.rs +216 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/mod.rs +185 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/pipe.rs +846 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/poll.rs +148 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview1/mod.rs +1870 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/clocks.rs +107 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/env.rs +37 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/exit.rs +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem/sync.rs +613 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem.rs +1096 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/io.rs +494 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/random.rs +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/unix.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/worker_thread_stdin.rs +133 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio.rs +218 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stream.rs +302 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/table.rs +287 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/io/streams.wit +254 -0
- data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/test.wit +28 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/src/builder.rs +64 -0
- data/ext/cargo-vendor/wasmtime-winch-12.0.1/src/compiler.rs +217 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/lib.rs +1705 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/rust.rs +498 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/types.rs +185 -0
- data/ext/cargo-vendor/wiggle-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-12.0.1/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/src/config.rs +697 -0
- data/ext/cargo-vendor/wiggle-generate-12.0.1/src/types/flags.rs +92 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-12.0.1/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/context.rs +368 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/env.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/mod.rs +330 -0
- data/ext/cargo-vendor/winch-codegen-0.10.1/src/visitor.rs +656 -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 +1992 -1571
- 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/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/cranelift-bforest-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +0 -160
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/cursor.rs +0 -644
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/extfunc.rs +0 -421
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/function.rs +0 -485
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/globalvalue.rs +0 -170
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/mod.rs +0 -107
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +0 -1506
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +0 -3714
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +0 -2980
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst.isle +0 -4037
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +0 -837
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +0 -2899
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +0 -946
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +0 -3058
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +0 -2070
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +0 -2927
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +0 -585
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +0 -1984
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +0 -1220
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +0 -4650
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +0 -140
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +0 -2605
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +0 -2255
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +0 -836
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/lower.rs +0 -1388
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/cprop.isle +0 -197
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/icmp.isle +0 -177
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/value_label.rs +0 -69
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +0 -23
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/gen_inst.rs +0 -1784
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/arm64.rs +0 -61
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/mod.rs +0 -67
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/riscv64.rs +0 -108
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/s390x.rs +0 -47
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +0 -409
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/lib.rs +0 -66
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/mod.rs +0 -87
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/src/lib.rs +0 -204
- data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +0 -3544
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/dummy.rs +0 -924
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +0 -852
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/func_translator.rs +0 -440
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/sections_translator.rs +0 -417
- data/ext/cargo-vendor/cranelift-wasm-0.98.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/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/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/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/macho.rs +0 -63
- 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/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/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/src/sched/unix.rs +0 -82
- data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasi-common-11.0.0/src/file.rs +0 -262
- data/ext/cargo-vendor/wasi-common-11.0.0/src/sched/subscription.rs +0 -76
- data/ext/cargo-vendor/wasi-common-11.0.0/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-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-11.0.0/README.md +0 -119
- data/ext/cargo-vendor/wasmtime-11.0.0/src/compiler.rs +0 -710
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +0 -397
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +0 -472
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +0 -270
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +0 -2298
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +0 -701
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/linker.rs +0 -404
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/matching.rs +0 -112
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +0 -514
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +0 -1319
- data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +0 -2058
- data/ext/cargo-vendor/wasmtime-11.0.0/src/engine/serialization.rs +0 -622
- data/ext/cargo-vendor/wasmtime-11.0.0/src/externals.rs +0 -763
- data/ext/cargo-vendor/wasmtime-11.0.0/src/func.rs +0 -2355
- data/ext/cargo-vendor/wasmtime-11.0.0/src/instance.rs +0 -905
- data/ext/cargo-vendor/wasmtime-11.0.0/src/lib.rs +0 -486
- data/ext/cargo-vendor/wasmtime-11.0.0/src/memory.rs +0 -950
- data/ext/cargo-vendor/wasmtime-11.0.0/src/module/registry.rs +0 -321
- data/ext/cargo-vendor/wasmtime-11.0.0/src/module.rs +0 -1274
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store/data.rs +0 -275
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store/func_refs.rs +0 -85
- data/ext/cargo-vendor/wasmtime-11.0.0/src/store.rs +0 -2166
- data/ext/cargo-vendor/wasmtime-11.0.0/src/trap.rs +0 -631
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +0 -348
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +0 -1354
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/builder.rs +0 -108
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +0 -593
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +0 -1297
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/expression.rs +0 -1250
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/unit.rs +0 -521
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/debug/transform/utils.rs +0 -187
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +0 -2218
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +0 -160
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/lib.rs +0 -120
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +0 -209
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/compilation.rs +0 -400
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/compiler.rs +0 -84
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/dfg.rs +0 -629
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +0 -530
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/adapt.rs +0 -449
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +0 -1069
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +0 -843
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +0 -1827
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/vmcomponent_offsets.rs +0 -336
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component.rs +0 -72
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +0 -3173
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/transcode.rs +0 -168
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact.rs +0 -623
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/module_environ.rs +0 -884
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/trap_encoding.rs +0 -238
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/tunables.rs +0 -111
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/build.rs +0 -23
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/aarch64.rs +0 -184
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/arm.rs +0 -85
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/riscv64.rs +0 -158
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/s390x.S +0 -120
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix/x86_64.rs +0 -160
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/unix.rs +0 -212
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/windows.c +0 -5
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/src/windows.rs +0 -161
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/profiling.rs +0 -108
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/src/gdb_jit_int.rs +0 -128
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/build.rs +0 -17
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component/transcode.rs +0 -451
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +0 -727
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/debug_builtins.rs +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/helpers.c +0 -104
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/instance/allocator.rs +0 -531
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/lib.rs +0 -285
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +0 -626
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/mmap/unix.rs +0 -148
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/send_sync_ptr.rs +0 -69
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/aarch64.rs +0 -42
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/riscv64.rs +0 -43
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/s390x.S +0 -58
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/trampolines/x86_64.rs +0 -64
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/traphandlers/unix.rs +0 -387
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/traphandlers.rs +0 -749
- data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-types-11.0.1/src/lib.rs +0 -462
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +0 -238
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/filesystem.rs +0 -269
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview1/mod.rs +0 -1860
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/env.rs +0 -48
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/exit.rs +0 -12
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/filesystem.rs +0 -1020
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/io.rs +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/mod.rs +0 -7
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +0 -83
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/random.rs +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +0 -110
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/stdio.rs +0 -176
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/stream.rs +0 -210
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/table.rs +0 -107
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/wasi/command.rs +0 -43
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/wasi/mod.rs +0 -30
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/io/streams.wit +0 -215
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/test.wit +0 -19
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/src/builder.rs +0 -59
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/src/compiler.rs +0 -220
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +0 -1648
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +0 -491
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +0 -183
- data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-generate-11.0.0/src/config.rs +0 -696
- data/ext/cargo-vendor/wiggle-generate-11.0.0/src/types/flags.rs +0 -94
- data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-11.0.0/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +0 -328
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +0 -437
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +0 -64
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +0 -319
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +0 -630
- 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.20.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.20.0}/rustfmt.toml +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/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.98.1 → cranelift-bforest-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.98.1 → cranelift-codegen-0.99.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.98.1 → cranelift-codegen-meta-0.99.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.98.1 → cranelift-codegen-shared-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.98.1 → cranelift-control-0.99.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.98.1 → cranelift-entity-0.99.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.98.1 → cranelift-frontend-0.99.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.98.1 → cranelift-isle-0.99.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.98.1 → cranelift-native-0.99.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.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.98.1 → cranelift-wasm-0.99.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.1 → cranelift-wasm-0.99.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.98.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 → 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/{io-extras-0.17.4 → 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 → object-0.31.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/coff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/elf/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.30.4 → object-0.31.1}/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/{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/{system-interface-0.25.9 → 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/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-11.0.0 → wasi-cap-std-sync-12.0.1}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-11.0.0 → wasi-common-12.0.1}/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.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-12.0.1}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-11.0.0 → wasmtime-asm-macros-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-11.0.0 → wasmtime-cache-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cache-12.0.1}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-11.0.0 → wasmtime-component-macro-12.0.1}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-11.0.0 → wasmtime-component-util-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-11.0.0 → wasmtime-cranelift-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-cranelift-12.0.1}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-11.0.0 → wasmtime-cranelift-shared-12.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-11.0.0 → wasmtime-environ-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-environ-12.0.1}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-11.0.0 → wasmtime-fiber-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-fiber-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-fiber-12.0.1}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-11.0.0 → wasmtime-jit-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-jit-12.0.1}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-11.0.0 → wasmtime-jit-debug-12.0.1}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-11.0.0 → wasmtime-jit-icache-coherence-12.0.1}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-11.0.0 → wasmtime-runtime-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-runtime-12.0.1}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-11.0.0 → wasmtime-types-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-11.0.1 → wasmtime-types-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-11.0.1 → wasmtime-wasi-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/poll/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wasmtime-wasi-12.0.1}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-11.0.0 → wasmtime-winch-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-11.0.0 → wasmtime-winch-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-11.0.0 → wasmtime-wit-bindgen-12.0.1}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-11.0.0 → wiggle-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-12.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-11.0.0 → wiggle-generate-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-generate-12.0.1}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-11.0.0 → wiggle-macro-12.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-11.0.0 → wiggle-macro-12.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.9.0 → winch-codegen-0.10.1}/src/trampoline.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
@@ -1,1234 +0,0 @@
|
|
1
|
-
//! This crate provides a cross-platform library and binary for translating addresses into
|
2
|
-
//! function names, file names and line numbers. Given an address in an executable or an
|
3
|
-
//! offset in a section of a relocatable object, it uses the debugging information to
|
4
|
-
//! figure out which file name and line number are associated with it.
|
5
|
-
//!
|
6
|
-
//! When used as a library, files must first be loaded using the
|
7
|
-
//! [`object`](https://github.com/gimli-rs/object) crate.
|
8
|
-
//! A context can then be created with [`Context::new`](./struct.Context.html#method.new).
|
9
|
-
//! The context caches some of the parsed information so that multiple lookups are
|
10
|
-
//! efficient.
|
11
|
-
//! Location information is obtained with
|
12
|
-
//! [`Context::find_location`](./struct.Context.html#method.find_location) or
|
13
|
-
//! [`Context::find_location_range`](./struct.Context.html#method.find_location_range).
|
14
|
-
//! Function information is obtained with
|
15
|
-
//! [`Context::find_frames`](./struct.Context.html#method.find_frames), which returns
|
16
|
-
//! a frame for each inline function. Each frame contains both name and location.
|
17
|
-
//!
|
18
|
-
//! The crate has an example CLI wrapper around the library which provides some of
|
19
|
-
//! the functionality of the `addr2line` command line tool distributed with [GNU
|
20
|
-
//! binutils](https://www.gnu.org/software/binutils/).
|
21
|
-
//!
|
22
|
-
//! Currently this library only provides information from the DWARF debugging information,
|
23
|
-
//! which is parsed using [`gimli`](https://github.com/gimli-rs/gimli). The example CLI
|
24
|
-
//! wrapper also uses symbol table information provided by the `object` crate.
|
25
|
-
#![deny(missing_docs)]
|
26
|
-
#![no_std]
|
27
|
-
|
28
|
-
#[allow(unused_imports)]
|
29
|
-
#[macro_use]
|
30
|
-
extern crate alloc;
|
31
|
-
|
32
|
-
#[cfg(feature = "cpp_demangle")]
|
33
|
-
extern crate cpp_demangle;
|
34
|
-
#[cfg(feature = "fallible-iterator")]
|
35
|
-
pub extern crate fallible_iterator;
|
36
|
-
pub extern crate gimli;
|
37
|
-
#[cfg(feature = "object")]
|
38
|
-
pub extern crate object;
|
39
|
-
#[cfg(feature = "rustc-demangle")]
|
40
|
-
extern crate rustc_demangle;
|
41
|
-
|
42
|
-
use alloc::borrow::Cow;
|
43
|
-
use alloc::boxed::Box;
|
44
|
-
#[cfg(feature = "object")]
|
45
|
-
use alloc::rc::Rc;
|
46
|
-
use alloc::string::{String, ToString};
|
47
|
-
use alloc::sync::Arc;
|
48
|
-
use alloc::vec::Vec;
|
49
|
-
|
50
|
-
use core::cmp::{self, Ordering};
|
51
|
-
use core::iter;
|
52
|
-
use core::mem;
|
53
|
-
use core::num::NonZeroU64;
|
54
|
-
use core::u64;
|
55
|
-
|
56
|
-
use crate::function::{Function, Functions, InlinedFunction};
|
57
|
-
use crate::lazy::LazyCell;
|
58
|
-
|
59
|
-
#[cfg(feature = "smallvec")]
|
60
|
-
mod maybe_small {
|
61
|
-
pub type Vec<T> = smallvec::SmallVec<[T; 16]>;
|
62
|
-
pub type IntoIter<T> = smallvec::IntoIter<[T; 16]>;
|
63
|
-
}
|
64
|
-
#[cfg(not(feature = "smallvec"))]
|
65
|
-
mod maybe_small {
|
66
|
-
pub type Vec<T> = alloc::vec::Vec<T>;
|
67
|
-
pub type IntoIter<T> = alloc::vec::IntoIter<T>;
|
68
|
-
}
|
69
|
-
|
70
|
-
mod function;
|
71
|
-
mod lazy;
|
72
|
-
|
73
|
-
type Error = gimli::Error;
|
74
|
-
|
75
|
-
/// The state necessary to perform address to line translation.
|
76
|
-
///
|
77
|
-
/// Constructing a `Context` is somewhat costly, so users should aim to reuse `Context`s
|
78
|
-
/// when performing lookups for many addresses in the same executable.
|
79
|
-
pub struct Context<R: gimli::Reader> {
|
80
|
-
dwarf: ResDwarf<R>,
|
81
|
-
}
|
82
|
-
|
83
|
-
/// The type of `Context` that supports the `new` method.
|
84
|
-
#[cfg(feature = "std-object")]
|
85
|
-
pub type ObjectContext = Context<gimli::EndianRcSlice<gimli::RunTimeEndian>>;
|
86
|
-
|
87
|
-
#[cfg(feature = "std-object")]
|
88
|
-
impl Context<gimli::EndianRcSlice<gimli::RunTimeEndian>> {
|
89
|
-
/// Construct a new `Context`.
|
90
|
-
///
|
91
|
-
/// The resulting `Context` uses `gimli::EndianRcSlice<gimli::RunTimeEndian>`.
|
92
|
-
/// This means it is not thread safe, has no lifetime constraints (since it copies
|
93
|
-
/// the input data), and works for any endianity.
|
94
|
-
///
|
95
|
-
/// Performance sensitive applications may want to use `Context::from_dwarf`
|
96
|
-
/// with a more specialised `gimli::Reader` implementation.
|
97
|
-
#[inline]
|
98
|
-
pub fn new<'data: 'file, 'file, O: object::Object<'data, 'file>>(
|
99
|
-
file: &'file O,
|
100
|
-
) -> Result<Self, Error> {
|
101
|
-
Self::new_with_sup(file, None)
|
102
|
-
}
|
103
|
-
|
104
|
-
/// Construct a new `Context`.
|
105
|
-
///
|
106
|
-
/// Optionally also use a supplementary object file.
|
107
|
-
///
|
108
|
-
/// The resulting `Context` uses `gimli::EndianRcSlice<gimli::RunTimeEndian>`.
|
109
|
-
/// This means it is not thread safe, has no lifetime constraints (since it copies
|
110
|
-
/// the input data), and works for any endianity.
|
111
|
-
///
|
112
|
-
/// Performance sensitive applications may want to use `Context::from_dwarf_with_sup`
|
113
|
-
/// with a more specialised `gimli::Reader` implementation.
|
114
|
-
pub fn new_with_sup<'data: 'file, 'file, O: object::Object<'data, 'file>>(
|
115
|
-
file: &'file O,
|
116
|
-
sup_file: Option<&'file O>,
|
117
|
-
) -> Result<Self, Error> {
|
118
|
-
let endian = if file.is_little_endian() {
|
119
|
-
gimli::RunTimeEndian::Little
|
120
|
-
} else {
|
121
|
-
gimli::RunTimeEndian::Big
|
122
|
-
};
|
123
|
-
|
124
|
-
fn load_section<'data: 'file, 'file, O, Endian>(
|
125
|
-
id: gimli::SectionId,
|
126
|
-
file: &'file O,
|
127
|
-
endian: Endian,
|
128
|
-
) -> Result<gimli::EndianRcSlice<Endian>, Error>
|
129
|
-
where
|
130
|
-
O: object::Object<'data, 'file>,
|
131
|
-
Endian: gimli::Endianity,
|
132
|
-
{
|
133
|
-
use object::ObjectSection;
|
134
|
-
|
135
|
-
let data = file
|
136
|
-
.section_by_name(id.name())
|
137
|
-
.and_then(|section| section.uncompressed_data().ok())
|
138
|
-
.unwrap_or(Cow::Borrowed(&[]));
|
139
|
-
Ok(gimli::EndianRcSlice::new(Rc::from(&*data), endian))
|
140
|
-
}
|
141
|
-
|
142
|
-
let mut dwarf = gimli::Dwarf::load(|id| load_section(id, file, endian))?;
|
143
|
-
if let Some(sup_file) = sup_file {
|
144
|
-
dwarf.load_sup(|id| load_section(id, sup_file, endian))?;
|
145
|
-
}
|
146
|
-
Context::from_dwarf(dwarf)
|
147
|
-
}
|
148
|
-
}
|
149
|
-
|
150
|
-
impl<R: gimli::Reader> Context<R> {
|
151
|
-
/// Construct a new `Context` from DWARF sections.
|
152
|
-
///
|
153
|
-
/// This method does not support using a supplementary object file.
|
154
|
-
pub fn from_sections(
|
155
|
-
debug_abbrev: gimli::DebugAbbrev<R>,
|
156
|
-
debug_addr: gimli::DebugAddr<R>,
|
157
|
-
debug_aranges: gimli::DebugAranges<R>,
|
158
|
-
debug_info: gimli::DebugInfo<R>,
|
159
|
-
debug_line: gimli::DebugLine<R>,
|
160
|
-
debug_line_str: gimli::DebugLineStr<R>,
|
161
|
-
debug_ranges: gimli::DebugRanges<R>,
|
162
|
-
debug_rnglists: gimli::DebugRngLists<R>,
|
163
|
-
debug_str: gimli::DebugStr<R>,
|
164
|
-
debug_str_offsets: gimli::DebugStrOffsets<R>,
|
165
|
-
default_section: R,
|
166
|
-
) -> Result<Self, Error> {
|
167
|
-
Self::from_dwarf(gimli::Dwarf {
|
168
|
-
debug_abbrev,
|
169
|
-
debug_addr,
|
170
|
-
debug_aranges,
|
171
|
-
debug_info,
|
172
|
-
debug_line,
|
173
|
-
debug_line_str,
|
174
|
-
debug_str,
|
175
|
-
debug_str_offsets,
|
176
|
-
debug_types: default_section.clone().into(),
|
177
|
-
locations: gimli::LocationLists::new(
|
178
|
-
default_section.clone().into(),
|
179
|
-
default_section.clone().into(),
|
180
|
-
),
|
181
|
-
ranges: gimli::RangeLists::new(debug_ranges, debug_rnglists),
|
182
|
-
file_type: gimli::DwarfFileType::Main,
|
183
|
-
sup: None,
|
184
|
-
abbreviations_cache: gimli::AbbreviationsCache::new(),
|
185
|
-
})
|
186
|
-
}
|
187
|
-
|
188
|
-
/// Construct a new `Context` from an existing [`gimli::Dwarf`] object.
|
189
|
-
#[inline]
|
190
|
-
pub fn from_dwarf(sections: gimli::Dwarf<R>) -> Result<Self, Error> {
|
191
|
-
let mut dwarf = ResDwarf::parse(Arc::new(sections))?;
|
192
|
-
dwarf.sup = match dwarf.sections.sup.clone() {
|
193
|
-
Some(sup_sections) => Some(Box::new(ResDwarf::parse(sup_sections)?)),
|
194
|
-
None => None,
|
195
|
-
};
|
196
|
-
Ok(Context { dwarf })
|
197
|
-
}
|
198
|
-
|
199
|
-
/// The dwarf sections associated with this `Context`.
|
200
|
-
pub fn dwarf(&self) -> &gimli::Dwarf<R> {
|
201
|
-
&self.dwarf.sections
|
202
|
-
}
|
203
|
-
|
204
|
-
/// Finds the CUs for the function address given.
|
205
|
-
///
|
206
|
-
/// There might be multiple CUs whose range contains this address.
|
207
|
-
/// Weak symbols have shown up in the wild which cause this to happen
|
208
|
-
/// but otherwise this can happen if the CU has non-contiguous functions
|
209
|
-
/// but only reports a single range.
|
210
|
-
///
|
211
|
-
/// Consequently we return an iterator for all CUs which may contain the
|
212
|
-
/// address, and the caller must check if there is actually a function or
|
213
|
-
/// location in the CU for that address.
|
214
|
-
fn find_units(&self, probe: u64) -> impl Iterator<Item = &ResUnit<R>> {
|
215
|
-
self.find_units_range(probe, probe + 1)
|
216
|
-
.map(|(unit, _range)| unit)
|
217
|
-
}
|
218
|
-
|
219
|
-
/// Finds the CUs covering the range of addresses given.
|
220
|
-
///
|
221
|
-
/// The range is [low, high) (ie, the upper bound is exclusive). This can return multiple
|
222
|
-
/// ranges for the same unit.
|
223
|
-
#[inline]
|
224
|
-
fn find_units_range(
|
225
|
-
&self,
|
226
|
-
probe_low: u64,
|
227
|
-
probe_high: u64,
|
228
|
-
) -> impl Iterator<Item = (&ResUnit<R>, &gimli::Range)> {
|
229
|
-
// First up find the position in the array which could have our function
|
230
|
-
// address.
|
231
|
-
let pos = match self
|
232
|
-
.dwarf
|
233
|
-
.unit_ranges
|
234
|
-
.binary_search_by_key(&probe_high, |i| i.range.begin)
|
235
|
-
{
|
236
|
-
// Although unlikely, we could find an exact match.
|
237
|
-
Ok(i) => i + 1,
|
238
|
-
// No exact match was found, but this probe would fit at slot `i`.
|
239
|
-
// This means that slot `i` is bigger than `probe`, along with all
|
240
|
-
// indices greater than `i`, so we need to search all previous
|
241
|
-
// entries.
|
242
|
-
Err(i) => i,
|
243
|
-
};
|
244
|
-
|
245
|
-
// Once we have our index we iterate backwards from that position
|
246
|
-
// looking for a matching CU.
|
247
|
-
self.dwarf.unit_ranges[..pos]
|
248
|
-
.iter()
|
249
|
-
.rev()
|
250
|
-
.take_while(move |i| {
|
251
|
-
// We know that this CU's start is beneath the probe already because
|
252
|
-
// of our sorted array.
|
253
|
-
debug_assert!(i.range.begin <= probe_high);
|
254
|
-
|
255
|
-
// Each entry keeps track of the maximum end address seen so far,
|
256
|
-
// starting from the beginning of the array of unit ranges. We're
|
257
|
-
// iterating in reverse so if our probe is beyond the maximum range
|
258
|
-
// of this entry, then it's guaranteed to not fit in any prior
|
259
|
-
// entries, so we break out.
|
260
|
-
probe_low < i.max_end
|
261
|
-
})
|
262
|
-
.filter_map(move |i| {
|
263
|
-
// If this CU doesn't actually contain this address, move to the
|
264
|
-
// next CU.
|
265
|
-
if probe_low >= i.range.end || probe_high <= i.range.begin {
|
266
|
-
return None;
|
267
|
-
}
|
268
|
-
Some((&self.dwarf.units[i.unit_id], &i.range))
|
269
|
-
})
|
270
|
-
}
|
271
|
-
|
272
|
-
/// Find the DWARF unit corresponding to the given virtual memory address.
|
273
|
-
pub fn find_dwarf_unit(&self, probe: u64) -> Option<&gimli::Unit<R>> {
|
274
|
-
for unit in self.find_units(probe) {
|
275
|
-
match unit.find_function_or_location(probe, &self.dwarf) {
|
276
|
-
Ok((Some(_), _)) | Ok((_, Some(_))) => return Some(&unit.dw_unit),
|
277
|
-
_ => {}
|
278
|
-
}
|
279
|
-
}
|
280
|
-
None
|
281
|
-
}
|
282
|
-
|
283
|
-
/// Find the source file and line corresponding to the given virtual memory address.
|
284
|
-
pub fn find_location(&self, probe: u64) -> Result<Option<Location<'_>>, Error> {
|
285
|
-
for unit in self.find_units(probe) {
|
286
|
-
if let Some(location) = unit.find_location(probe, &self.dwarf.sections)? {
|
287
|
-
return Ok(Some(location));
|
288
|
-
}
|
289
|
-
}
|
290
|
-
Ok(None)
|
291
|
-
}
|
292
|
-
|
293
|
-
/// Return source file and lines for a range of addresses. For each location it also
|
294
|
-
/// returns the address and size of the range of the underlying instructions.
|
295
|
-
pub fn find_location_range(
|
296
|
-
&self,
|
297
|
-
probe_low: u64,
|
298
|
-
probe_high: u64,
|
299
|
-
) -> Result<LocationRangeIter<'_, R>, Error> {
|
300
|
-
LocationRangeIter::new(self, probe_low, probe_high)
|
301
|
-
}
|
302
|
-
|
303
|
-
/// Return an iterator for the function frames corresponding to the given virtual
|
304
|
-
/// memory address.
|
305
|
-
///
|
306
|
-
/// If the probe address is not for an inline function then only one frame is
|
307
|
-
/// returned.
|
308
|
-
///
|
309
|
-
/// If the probe address is for an inline function then the first frame corresponds
|
310
|
-
/// to the innermost inline function. Subsequent frames contain the caller and call
|
311
|
-
/// location, until an non-inline caller is reached.
|
312
|
-
pub fn find_frames(&self, probe: u64) -> Result<FrameIter<R>, Error> {
|
313
|
-
for unit in self.find_units(probe) {
|
314
|
-
match unit.find_function_or_location(probe, &self.dwarf)? {
|
315
|
-
(Some(function), location) => {
|
316
|
-
let inlined_functions = function.find_inlined_functions(probe);
|
317
|
-
return Ok(FrameIter(FrameIterState::Frames(FrameIterFrames {
|
318
|
-
unit,
|
319
|
-
sections: &self.dwarf.sections,
|
320
|
-
function,
|
321
|
-
inlined_functions,
|
322
|
-
next: location,
|
323
|
-
})));
|
324
|
-
}
|
325
|
-
(None, Some(location)) => {
|
326
|
-
return Ok(FrameIter(FrameIterState::Location(Some(location))));
|
327
|
-
}
|
328
|
-
_ => {}
|
329
|
-
}
|
330
|
-
}
|
331
|
-
Ok(FrameIter(FrameIterState::Empty))
|
332
|
-
}
|
333
|
-
|
334
|
-
/// Initialize all line data structures. This is used for benchmarks.
|
335
|
-
#[doc(hidden)]
|
336
|
-
pub fn parse_lines(&self) -> Result<(), Error> {
|
337
|
-
for unit in &self.dwarf.units {
|
338
|
-
unit.parse_lines(&self.dwarf.sections)?;
|
339
|
-
}
|
340
|
-
Ok(())
|
341
|
-
}
|
342
|
-
|
343
|
-
/// Initialize all function data structures. This is used for benchmarks.
|
344
|
-
#[doc(hidden)]
|
345
|
-
pub fn parse_functions(&self) -> Result<(), Error> {
|
346
|
-
for unit in &self.dwarf.units {
|
347
|
-
unit.parse_functions(&self.dwarf)?;
|
348
|
-
}
|
349
|
-
Ok(())
|
350
|
-
}
|
351
|
-
|
352
|
-
/// Initialize all inlined function data structures. This is used for benchmarks.
|
353
|
-
#[doc(hidden)]
|
354
|
-
pub fn parse_inlined_functions(&self) -> Result<(), Error> {
|
355
|
-
for unit in &self.dwarf.units {
|
356
|
-
unit.parse_inlined_functions(&self.dwarf)?;
|
357
|
-
}
|
358
|
-
Ok(())
|
359
|
-
}
|
360
|
-
}
|
361
|
-
|
362
|
-
struct UnitRange {
|
363
|
-
unit_id: usize,
|
364
|
-
max_end: u64,
|
365
|
-
range: gimli::Range,
|
366
|
-
}
|
367
|
-
|
368
|
-
struct ResDwarf<R: gimli::Reader> {
|
369
|
-
unit_ranges: Vec<UnitRange>,
|
370
|
-
units: Vec<ResUnit<R>>,
|
371
|
-
sections: Arc<gimli::Dwarf<R>>,
|
372
|
-
sup: Option<Box<ResDwarf<R>>>,
|
373
|
-
}
|
374
|
-
|
375
|
-
impl<R: gimli::Reader> ResDwarf<R> {
|
376
|
-
fn parse(sections: Arc<gimli::Dwarf<R>>) -> Result<Self, Error> {
|
377
|
-
// Find all the references to compilation units in .debug_aranges.
|
378
|
-
// Note that we always also iterate through all of .debug_info to
|
379
|
-
// find compilation units, because .debug_aranges may be missing some.
|
380
|
-
let mut aranges = Vec::new();
|
381
|
-
let mut headers = sections.debug_aranges.headers();
|
382
|
-
while let Some(header) = headers.next()? {
|
383
|
-
aranges.push((header.debug_info_offset(), header.offset()));
|
384
|
-
}
|
385
|
-
aranges.sort_by_key(|i| i.0);
|
386
|
-
|
387
|
-
let mut unit_ranges = Vec::new();
|
388
|
-
let mut res_units = Vec::new();
|
389
|
-
let mut units = sections.units();
|
390
|
-
while let Some(header) = units.next()? {
|
391
|
-
let unit_id = res_units.len();
|
392
|
-
let offset = match header.offset().as_debug_info_offset() {
|
393
|
-
Some(offset) => offset,
|
394
|
-
None => continue,
|
395
|
-
};
|
396
|
-
// We mainly want compile units, but we may need to follow references to entries
|
397
|
-
// within other units for function names. We don't need anything from type units.
|
398
|
-
match header.type_() {
|
399
|
-
gimli::UnitType::Type { .. } | gimli::UnitType::SplitType { .. } => continue,
|
400
|
-
_ => {}
|
401
|
-
}
|
402
|
-
let dw_unit = match sections.unit(header) {
|
403
|
-
Ok(dw_unit) => dw_unit,
|
404
|
-
Err(_) => continue,
|
405
|
-
};
|
406
|
-
|
407
|
-
let mut lang = None;
|
408
|
-
let mut have_unit_range = false;
|
409
|
-
{
|
410
|
-
let mut entries = dw_unit.entries_raw(None)?;
|
411
|
-
|
412
|
-
let abbrev = match entries.read_abbreviation()? {
|
413
|
-
Some(abbrev) => abbrev,
|
414
|
-
None => continue,
|
415
|
-
};
|
416
|
-
|
417
|
-
let mut ranges = RangeAttributes::default();
|
418
|
-
for spec in abbrev.attributes() {
|
419
|
-
let attr = entries.read_attribute(*spec)?;
|
420
|
-
match attr.name() {
|
421
|
-
gimli::DW_AT_low_pc => match attr.value() {
|
422
|
-
gimli::AttributeValue::Addr(val) => ranges.low_pc = Some(val),
|
423
|
-
gimli::AttributeValue::DebugAddrIndex(index) => {
|
424
|
-
ranges.low_pc = Some(sections.address(&dw_unit, index)?);
|
425
|
-
}
|
426
|
-
_ => {}
|
427
|
-
},
|
428
|
-
gimli::DW_AT_high_pc => match attr.value() {
|
429
|
-
gimli::AttributeValue::Addr(val) => ranges.high_pc = Some(val),
|
430
|
-
gimli::AttributeValue::DebugAddrIndex(index) => {
|
431
|
-
ranges.high_pc = Some(sections.address(&dw_unit, index)?);
|
432
|
-
}
|
433
|
-
gimli::AttributeValue::Udata(val) => ranges.size = Some(val),
|
434
|
-
_ => {}
|
435
|
-
},
|
436
|
-
gimli::DW_AT_ranges => {
|
437
|
-
ranges.ranges_offset =
|
438
|
-
sections.attr_ranges_offset(&dw_unit, attr.value())?;
|
439
|
-
}
|
440
|
-
gimli::DW_AT_language => {
|
441
|
-
if let gimli::AttributeValue::Language(val) = attr.value() {
|
442
|
-
lang = Some(val);
|
443
|
-
}
|
444
|
-
}
|
445
|
-
_ => {}
|
446
|
-
}
|
447
|
-
}
|
448
|
-
|
449
|
-
// Find the address ranges for the CU, using in order of preference:
|
450
|
-
// - DW_AT_ranges
|
451
|
-
// - .debug_aranges
|
452
|
-
// - DW_AT_low_pc/DW_AT_high_pc
|
453
|
-
//
|
454
|
-
// Using DW_AT_ranges before .debug_aranges is possibly an arbitrary choice,
|
455
|
-
// but the feeling is that DW_AT_ranges is more likely to be reliable or complete
|
456
|
-
// if it is present.
|
457
|
-
//
|
458
|
-
// .debug_aranges must be used before DW_AT_low_pc/DW_AT_high_pc because
|
459
|
-
// it has been observed on macOS that DW_AT_ranges was not emitted even for
|
460
|
-
// discontiguous CUs.
|
461
|
-
let i = match ranges.ranges_offset {
|
462
|
-
Some(_) => None,
|
463
|
-
None => aranges.binary_search_by_key(&offset, |x| x.0).ok(),
|
464
|
-
};
|
465
|
-
if let Some(mut i) = i {
|
466
|
-
// There should be only one set per CU, but in practice multiple
|
467
|
-
// sets have been observed. This is probably a compiler bug, but
|
468
|
-
// either way we need to handle it.
|
469
|
-
while i > 0 && aranges[i - 1].0 == offset {
|
470
|
-
i -= 1;
|
471
|
-
}
|
472
|
-
for (_, aranges_offset) in aranges[i..].iter().take_while(|x| x.0 == offset) {
|
473
|
-
let aranges_header = sections.debug_aranges.header(*aranges_offset)?;
|
474
|
-
let mut aranges = aranges_header.entries();
|
475
|
-
while let Some(arange) = aranges.next()? {
|
476
|
-
if arange.length() != 0 {
|
477
|
-
unit_ranges.push(UnitRange {
|
478
|
-
range: arange.range(),
|
479
|
-
unit_id,
|
480
|
-
max_end: 0,
|
481
|
-
});
|
482
|
-
have_unit_range = true;
|
483
|
-
}
|
484
|
-
}
|
485
|
-
}
|
486
|
-
} else {
|
487
|
-
have_unit_range |= ranges.for_each_range(§ions, &dw_unit, |range| {
|
488
|
-
unit_ranges.push(UnitRange {
|
489
|
-
range,
|
490
|
-
unit_id,
|
491
|
-
max_end: 0,
|
492
|
-
});
|
493
|
-
})?;
|
494
|
-
}
|
495
|
-
}
|
496
|
-
|
497
|
-
let lines = LazyCell::new();
|
498
|
-
if !have_unit_range {
|
499
|
-
// The unit did not declare any ranges.
|
500
|
-
// Try to get some ranges from the line program sequences.
|
501
|
-
if let Some(ref ilnp) = dw_unit.line_program {
|
502
|
-
if let Ok(lines) = lines
|
503
|
-
.borrow_with(|| Lines::parse(&dw_unit, ilnp.clone(), &*sections))
|
504
|
-
.as_ref()
|
505
|
-
{
|
506
|
-
for sequence in lines.sequences.iter() {
|
507
|
-
unit_ranges.push(UnitRange {
|
508
|
-
range: gimli::Range {
|
509
|
-
begin: sequence.start,
|
510
|
-
end: sequence.end,
|
511
|
-
},
|
512
|
-
unit_id,
|
513
|
-
max_end: 0,
|
514
|
-
})
|
515
|
-
}
|
516
|
-
}
|
517
|
-
}
|
518
|
-
}
|
519
|
-
|
520
|
-
res_units.push(ResUnit {
|
521
|
-
offset,
|
522
|
-
dw_unit,
|
523
|
-
lang,
|
524
|
-
lines,
|
525
|
-
funcs: LazyCell::new(),
|
526
|
-
});
|
527
|
-
}
|
528
|
-
|
529
|
-
// Sort this for faster lookup in `find_unit_and_address` below.
|
530
|
-
unit_ranges.sort_by_key(|i| i.range.begin);
|
531
|
-
|
532
|
-
// Calculate the `max_end` field now that we've determined the order of
|
533
|
-
// CUs.
|
534
|
-
let mut max = 0;
|
535
|
-
for i in unit_ranges.iter_mut() {
|
536
|
-
max = max.max(i.range.end);
|
537
|
-
i.max_end = max;
|
538
|
-
}
|
539
|
-
|
540
|
-
Ok(ResDwarf {
|
541
|
-
units: res_units,
|
542
|
-
unit_ranges,
|
543
|
-
sections,
|
544
|
-
sup: None,
|
545
|
-
})
|
546
|
-
}
|
547
|
-
|
548
|
-
fn find_unit(&self, offset: gimli::DebugInfoOffset<R::Offset>) -> Result<&ResUnit<R>, Error> {
|
549
|
-
match self
|
550
|
-
.units
|
551
|
-
.binary_search_by_key(&offset.0, |unit| unit.offset.0)
|
552
|
-
{
|
553
|
-
// There is never a DIE at the unit offset or before the first unit.
|
554
|
-
Ok(_) | Err(0) => Err(gimli::Error::NoEntryAtGivenOffset),
|
555
|
-
Err(i) => Ok(&self.units[i - 1]),
|
556
|
-
}
|
557
|
-
}
|
558
|
-
}
|
559
|
-
|
560
|
-
struct Lines {
|
561
|
-
files: Box<[String]>,
|
562
|
-
sequences: Box<[LineSequence]>,
|
563
|
-
}
|
564
|
-
|
565
|
-
impl Lines {
|
566
|
-
fn parse<R: gimli::Reader>(
|
567
|
-
dw_unit: &gimli::Unit<R>,
|
568
|
-
ilnp: gimli::IncompleteLineProgram<R, R::Offset>,
|
569
|
-
sections: &gimli::Dwarf<R>,
|
570
|
-
) -> Result<Self, Error> {
|
571
|
-
let mut sequences = Vec::new();
|
572
|
-
let mut sequence_rows = Vec::<LineRow>::new();
|
573
|
-
let mut rows = ilnp.rows();
|
574
|
-
while let Some((_, row)) = rows.next_row()? {
|
575
|
-
if row.end_sequence() {
|
576
|
-
if let Some(start) = sequence_rows.first().map(|x| x.address) {
|
577
|
-
let end = row.address();
|
578
|
-
let mut rows = Vec::new();
|
579
|
-
mem::swap(&mut rows, &mut sequence_rows);
|
580
|
-
sequences.push(LineSequence {
|
581
|
-
start,
|
582
|
-
end,
|
583
|
-
rows: rows.into_boxed_slice(),
|
584
|
-
});
|
585
|
-
}
|
586
|
-
continue;
|
587
|
-
}
|
588
|
-
|
589
|
-
let address = row.address();
|
590
|
-
let file_index = row.file_index();
|
591
|
-
let line = row.line().map(NonZeroU64::get).unwrap_or(0) as u32;
|
592
|
-
let column = match row.column() {
|
593
|
-
gimli::ColumnType::LeftEdge => 0,
|
594
|
-
gimli::ColumnType::Column(x) => x.get() as u32,
|
595
|
-
};
|
596
|
-
|
597
|
-
if let Some(last_row) = sequence_rows.last_mut() {
|
598
|
-
if last_row.address == address {
|
599
|
-
last_row.file_index = file_index;
|
600
|
-
last_row.line = line;
|
601
|
-
last_row.column = column;
|
602
|
-
continue;
|
603
|
-
}
|
604
|
-
}
|
605
|
-
|
606
|
-
sequence_rows.push(LineRow {
|
607
|
-
address,
|
608
|
-
file_index,
|
609
|
-
line,
|
610
|
-
column,
|
611
|
-
});
|
612
|
-
}
|
613
|
-
sequences.sort_by_key(|x| x.start);
|
614
|
-
|
615
|
-
let mut files = Vec::new();
|
616
|
-
let header = rows.header();
|
617
|
-
match header.file(0) {
|
618
|
-
Some(file) => files.push(render_file(dw_unit, file, header, sections)?),
|
619
|
-
None => files.push(String::from("")), // DWARF version <= 4 may not have 0th index
|
620
|
-
}
|
621
|
-
let mut index = 1;
|
622
|
-
while let Some(file) = header.file(index) {
|
623
|
-
files.push(render_file(dw_unit, file, header, sections)?);
|
624
|
-
index += 1;
|
625
|
-
}
|
626
|
-
|
627
|
-
Ok(Self {
|
628
|
-
files: files.into_boxed_slice(),
|
629
|
-
sequences: sequences.into_boxed_slice(),
|
630
|
-
})
|
631
|
-
}
|
632
|
-
}
|
633
|
-
|
634
|
-
fn render_file<R: gimli::Reader>(
|
635
|
-
dw_unit: &gimli::Unit<R>,
|
636
|
-
file: &gimli::FileEntry<R, R::Offset>,
|
637
|
-
header: &gimli::LineProgramHeader<R, R::Offset>,
|
638
|
-
sections: &gimli::Dwarf<R>,
|
639
|
-
) -> Result<String, gimli::Error> {
|
640
|
-
let mut path = if let Some(ref comp_dir) = dw_unit.comp_dir {
|
641
|
-
comp_dir.to_string_lossy()?.into_owned()
|
642
|
-
} else {
|
643
|
-
String::new()
|
644
|
-
};
|
645
|
-
|
646
|
-
// The directory index 0 is defined to correspond to the compilation unit directory.
|
647
|
-
if file.directory_index() != 0 {
|
648
|
-
if let Some(directory) = file.directory(header) {
|
649
|
-
path_push(
|
650
|
-
&mut path,
|
651
|
-
sections
|
652
|
-
.attr_string(dw_unit, directory)?
|
653
|
-
.to_string_lossy()?
|
654
|
-
.as_ref(),
|
655
|
-
);
|
656
|
-
}
|
657
|
-
}
|
658
|
-
|
659
|
-
path_push(
|
660
|
-
&mut path,
|
661
|
-
sections
|
662
|
-
.attr_string(dw_unit, file.path_name())?
|
663
|
-
.to_string_lossy()?
|
664
|
-
.as_ref(),
|
665
|
-
);
|
666
|
-
|
667
|
-
Ok(path)
|
668
|
-
}
|
669
|
-
|
670
|
-
struct LineSequence {
|
671
|
-
start: u64,
|
672
|
-
end: u64,
|
673
|
-
rows: Box<[LineRow]>,
|
674
|
-
}
|
675
|
-
|
676
|
-
struct LineRow {
|
677
|
-
address: u64,
|
678
|
-
file_index: u64,
|
679
|
-
line: u32,
|
680
|
-
column: u32,
|
681
|
-
}
|
682
|
-
|
683
|
-
struct ResUnit<R: gimli::Reader> {
|
684
|
-
offset: gimli::DebugInfoOffset<R::Offset>,
|
685
|
-
dw_unit: gimli::Unit<R>,
|
686
|
-
lang: Option<gimli::DwLang>,
|
687
|
-
lines: LazyCell<Result<Lines, Error>>,
|
688
|
-
funcs: LazyCell<Result<Functions<R>, Error>>,
|
689
|
-
}
|
690
|
-
|
691
|
-
impl<R: gimli::Reader> ResUnit<R> {
|
692
|
-
fn parse_lines(&self, sections: &gimli::Dwarf<R>) -> Result<Option<&Lines>, Error> {
|
693
|
-
let ilnp = match self.dw_unit.line_program {
|
694
|
-
Some(ref ilnp) => ilnp,
|
695
|
-
None => return Ok(None),
|
696
|
-
};
|
697
|
-
self.lines
|
698
|
-
.borrow_with(|| Lines::parse(&self.dw_unit, ilnp.clone(), sections))
|
699
|
-
.as_ref()
|
700
|
-
.map(Some)
|
701
|
-
.map_err(Error::clone)
|
702
|
-
}
|
703
|
-
|
704
|
-
fn parse_functions(&self, dwarf: &ResDwarf<R>) -> Result<&Functions<R>, Error> {
|
705
|
-
self.funcs
|
706
|
-
.borrow_with(|| Functions::parse(&self.dw_unit, dwarf))
|
707
|
-
.as_ref()
|
708
|
-
.map_err(Error::clone)
|
709
|
-
}
|
710
|
-
|
711
|
-
fn parse_inlined_functions(&self, dwarf: &ResDwarf<R>) -> Result<(), Error> {
|
712
|
-
self.funcs
|
713
|
-
.borrow_with(|| Functions::parse(&self.dw_unit, dwarf))
|
714
|
-
.as_ref()
|
715
|
-
.map_err(Error::clone)?
|
716
|
-
.parse_inlined_functions(&self.dw_unit, dwarf)
|
717
|
-
}
|
718
|
-
|
719
|
-
fn find_location(
|
720
|
-
&self,
|
721
|
-
probe: u64,
|
722
|
-
sections: &gimli::Dwarf<R>,
|
723
|
-
) -> Result<Option<Location<'_>>, Error> {
|
724
|
-
if let Some(mut iter) = LocationRangeUnitIter::new(self, sections, probe, probe + 1)? {
|
725
|
-
match iter.next() {
|
726
|
-
None => Ok(None),
|
727
|
-
Some((_addr, _len, loc)) => Ok(Some(loc)),
|
728
|
-
}
|
729
|
-
} else {
|
730
|
-
Ok(None)
|
731
|
-
}
|
732
|
-
}
|
733
|
-
|
734
|
-
#[inline]
|
735
|
-
fn find_location_range(
|
736
|
-
&self,
|
737
|
-
probe_low: u64,
|
738
|
-
probe_high: u64,
|
739
|
-
sections: &gimli::Dwarf<R>,
|
740
|
-
) -> Result<Option<LocationRangeUnitIter<'_>>, Error> {
|
741
|
-
LocationRangeUnitIter::new(self, sections, probe_low, probe_high)
|
742
|
-
}
|
743
|
-
|
744
|
-
fn find_function_or_location(
|
745
|
-
&self,
|
746
|
-
probe: u64,
|
747
|
-
dwarf: &ResDwarf<R>,
|
748
|
-
) -> Result<(Option<&Function<R>>, Option<Location<'_>>), Error> {
|
749
|
-
let functions = self.parse_functions(dwarf)?;
|
750
|
-
let function = match functions.find_address(probe) {
|
751
|
-
Some(address) => {
|
752
|
-
let function_index = functions.addresses[address].function;
|
753
|
-
let (offset, ref function) = functions.functions[function_index];
|
754
|
-
Some(
|
755
|
-
function
|
756
|
-
.borrow_with(|| Function::parse(offset, &self.dw_unit, dwarf))
|
757
|
-
.as_ref()
|
758
|
-
.map_err(Error::clone)?,
|
759
|
-
)
|
760
|
-
}
|
761
|
-
None => None,
|
762
|
-
};
|
763
|
-
let location = self.find_location(probe, &dwarf.sections)?;
|
764
|
-
Ok((function, location))
|
765
|
-
}
|
766
|
-
}
|
767
|
-
|
768
|
-
/// Iterator over `Location`s in a range of addresses, returned by `Context::find_location_range`.
|
769
|
-
pub struct LocationRangeIter<'ctx, R: gimli::Reader> {
|
770
|
-
unit_iter: Box<dyn Iterator<Item = (&'ctx ResUnit<R>, &'ctx gimli::Range)> + 'ctx>,
|
771
|
-
iter: Option<LocationRangeUnitIter<'ctx>>,
|
772
|
-
|
773
|
-
probe_low: u64,
|
774
|
-
probe_high: u64,
|
775
|
-
sections: &'ctx gimli::Dwarf<R>,
|
776
|
-
}
|
777
|
-
|
778
|
-
impl<'ctx, R: gimli::Reader> LocationRangeIter<'ctx, R> {
|
779
|
-
#[inline]
|
780
|
-
fn new(ctx: &'ctx Context<R>, probe_low: u64, probe_high: u64) -> Result<Self, Error> {
|
781
|
-
let sections = &ctx.dwarf.sections;
|
782
|
-
let unit_iter = ctx.find_units_range(probe_low, probe_high);
|
783
|
-
Ok(Self {
|
784
|
-
unit_iter: Box::new(unit_iter),
|
785
|
-
iter: None,
|
786
|
-
probe_low,
|
787
|
-
probe_high,
|
788
|
-
sections,
|
789
|
-
})
|
790
|
-
}
|
791
|
-
|
792
|
-
fn next_loc(&mut self) -> Result<Option<(u64, u64, Location<'ctx>)>, Error> {
|
793
|
-
loop {
|
794
|
-
let iter = self.iter.take();
|
795
|
-
match iter {
|
796
|
-
None => match self.unit_iter.next() {
|
797
|
-
Some((unit, range)) => {
|
798
|
-
self.iter = unit.find_location_range(
|
799
|
-
cmp::max(self.probe_low, range.begin),
|
800
|
-
cmp::min(self.probe_high, range.end),
|
801
|
-
self.sections,
|
802
|
-
)?;
|
803
|
-
}
|
804
|
-
None => return Ok(None),
|
805
|
-
},
|
806
|
-
Some(mut iter) => {
|
807
|
-
if let item @ Some(_) = iter.next() {
|
808
|
-
self.iter = Some(iter);
|
809
|
-
return Ok(item);
|
810
|
-
}
|
811
|
-
}
|
812
|
-
}
|
813
|
-
}
|
814
|
-
}
|
815
|
-
}
|
816
|
-
|
817
|
-
impl<'ctx, R> Iterator for LocationRangeIter<'ctx, R>
|
818
|
-
where
|
819
|
-
R: gimli::Reader + 'ctx,
|
820
|
-
{
|
821
|
-
type Item = (u64, u64, Location<'ctx>);
|
822
|
-
|
823
|
-
#[inline]
|
824
|
-
fn next(&mut self) -> Option<Self::Item> {
|
825
|
-
match self.next_loc() {
|
826
|
-
Err(_) => None,
|
827
|
-
Ok(loc) => loc,
|
828
|
-
}
|
829
|
-
}
|
830
|
-
}
|
831
|
-
|
832
|
-
#[cfg(feature = "fallible-iterator")]
|
833
|
-
impl<'ctx, R> fallible_iterator::FallibleIterator for LocationRangeIter<'ctx, R>
|
834
|
-
where
|
835
|
-
R: gimli::Reader + 'ctx,
|
836
|
-
{
|
837
|
-
type Item = (u64, u64, Location<'ctx>);
|
838
|
-
type Error = Error;
|
839
|
-
|
840
|
-
#[inline]
|
841
|
-
fn next(&mut self) -> Result<Option<Self::Item>, Self::Error> {
|
842
|
-
self.next_loc()
|
843
|
-
}
|
844
|
-
}
|
845
|
-
|
846
|
-
struct LocationRangeUnitIter<'ctx> {
|
847
|
-
lines: &'ctx Lines,
|
848
|
-
seqs: &'ctx [LineSequence],
|
849
|
-
seq_idx: usize,
|
850
|
-
row_idx: usize,
|
851
|
-
probe_high: u64,
|
852
|
-
}
|
853
|
-
|
854
|
-
impl<'ctx> LocationRangeUnitIter<'ctx> {
|
855
|
-
fn new<R: gimli::Reader>(
|
856
|
-
resunit: &'ctx ResUnit<R>,
|
857
|
-
sections: &gimli::Dwarf<R>,
|
858
|
-
probe_low: u64,
|
859
|
-
probe_high: u64,
|
860
|
-
) -> Result<Option<Self>, Error> {
|
861
|
-
let lines = resunit.parse_lines(sections)?;
|
862
|
-
|
863
|
-
if let Some(lines) = lines {
|
864
|
-
// Find index for probe_low.
|
865
|
-
let seq_idx = lines.sequences.binary_search_by(|sequence| {
|
866
|
-
if probe_low < sequence.start {
|
867
|
-
Ordering::Greater
|
868
|
-
} else if probe_low >= sequence.end {
|
869
|
-
Ordering::Less
|
870
|
-
} else {
|
871
|
-
Ordering::Equal
|
872
|
-
}
|
873
|
-
});
|
874
|
-
let seq_idx = match seq_idx {
|
875
|
-
Ok(x) => x,
|
876
|
-
Err(0) => 0, // probe below sequence, but range could overlap
|
877
|
-
Err(_) => lines.sequences.len(),
|
878
|
-
};
|
879
|
-
|
880
|
-
let row_idx = if let Some(seq) = lines.sequences.get(seq_idx) {
|
881
|
-
let idx = seq.rows.binary_search_by(|row| row.address.cmp(&probe_low));
|
882
|
-
let idx = match idx {
|
883
|
-
Ok(x) => x,
|
884
|
-
Err(0) => 0, // probe below sequence, but range could overlap
|
885
|
-
Err(x) => x - 1,
|
886
|
-
};
|
887
|
-
idx
|
888
|
-
} else {
|
889
|
-
0
|
890
|
-
};
|
891
|
-
|
892
|
-
Ok(Some(Self {
|
893
|
-
lines,
|
894
|
-
seqs: &*lines.sequences,
|
895
|
-
seq_idx,
|
896
|
-
row_idx,
|
897
|
-
probe_high,
|
898
|
-
}))
|
899
|
-
} else {
|
900
|
-
Ok(None)
|
901
|
-
}
|
902
|
-
}
|
903
|
-
}
|
904
|
-
|
905
|
-
impl<'ctx> Iterator for LocationRangeUnitIter<'ctx> {
|
906
|
-
type Item = (u64, u64, Location<'ctx>);
|
907
|
-
|
908
|
-
fn next(&mut self) -> Option<(u64, u64, Location<'ctx>)> {
|
909
|
-
loop {
|
910
|
-
let seq = match self.seqs.get(self.seq_idx) {
|
911
|
-
Some(seq) => seq,
|
912
|
-
None => break,
|
913
|
-
};
|
914
|
-
|
915
|
-
if seq.start >= self.probe_high {
|
916
|
-
break;
|
917
|
-
}
|
918
|
-
|
919
|
-
match seq.rows.get(self.row_idx) {
|
920
|
-
Some(row) => {
|
921
|
-
if row.address >= self.probe_high {
|
922
|
-
break;
|
923
|
-
}
|
924
|
-
|
925
|
-
let file = self
|
926
|
-
.lines
|
927
|
-
.files
|
928
|
-
.get(row.file_index as usize)
|
929
|
-
.map(String::as_str);
|
930
|
-
let nextaddr = seq
|
931
|
-
.rows
|
932
|
-
.get(self.row_idx + 1)
|
933
|
-
.map(|row| row.address)
|
934
|
-
.unwrap_or(seq.end);
|
935
|
-
|
936
|
-
let item = (
|
937
|
-
row.address,
|
938
|
-
nextaddr - row.address,
|
939
|
-
Location {
|
940
|
-
file,
|
941
|
-
line: if row.line != 0 { Some(row.line) } else { None },
|
942
|
-
column: if row.column != 0 {
|
943
|
-
Some(row.column)
|
944
|
-
} else {
|
945
|
-
None
|
946
|
-
},
|
947
|
-
},
|
948
|
-
);
|
949
|
-
self.row_idx += 1;
|
950
|
-
|
951
|
-
return Some(item);
|
952
|
-
}
|
953
|
-
None => {
|
954
|
-
self.seq_idx += 1;
|
955
|
-
self.row_idx = 0;
|
956
|
-
}
|
957
|
-
}
|
958
|
-
}
|
959
|
-
None
|
960
|
-
}
|
961
|
-
}
|
962
|
-
|
963
|
-
fn path_push(path: &mut String, p: &str) {
|
964
|
-
if has_unix_root(p) || has_windows_root(p) {
|
965
|
-
*path = p.to_string();
|
966
|
-
} else {
|
967
|
-
let dir_separator = if has_windows_root(path.as_str()) {
|
968
|
-
'\\'
|
969
|
-
} else {
|
970
|
-
'/'
|
971
|
-
};
|
972
|
-
|
973
|
-
if !path.is_empty() && !path.ends_with(dir_separator) {
|
974
|
-
path.push(dir_separator);
|
975
|
-
}
|
976
|
-
*path += p;
|
977
|
-
}
|
978
|
-
}
|
979
|
-
|
980
|
-
/// Check if the path in the given string has a unix style root
|
981
|
-
fn has_unix_root(p: &str) -> bool {
|
982
|
-
p.starts_with('/')
|
983
|
-
}
|
984
|
-
|
985
|
-
/// Check if the path in the given string has a windows style root
|
986
|
-
fn has_windows_root(p: &str) -> bool {
|
987
|
-
p.starts_with('\\') || p.get(1..3) == Some(":\\")
|
988
|
-
}
|
989
|
-
struct RangeAttributes<R: gimli::Reader> {
|
990
|
-
low_pc: Option<u64>,
|
991
|
-
high_pc: Option<u64>,
|
992
|
-
size: Option<u64>,
|
993
|
-
ranges_offset: Option<gimli::RangeListsOffset<<R as gimli::Reader>::Offset>>,
|
994
|
-
}
|
995
|
-
|
996
|
-
impl<R: gimli::Reader> Default for RangeAttributes<R> {
|
997
|
-
fn default() -> Self {
|
998
|
-
RangeAttributes {
|
999
|
-
low_pc: None,
|
1000
|
-
high_pc: None,
|
1001
|
-
size: None,
|
1002
|
-
ranges_offset: None,
|
1003
|
-
}
|
1004
|
-
}
|
1005
|
-
}
|
1006
|
-
|
1007
|
-
impl<R: gimli::Reader> RangeAttributes<R> {
|
1008
|
-
fn for_each_range<F: FnMut(gimli::Range)>(
|
1009
|
-
&self,
|
1010
|
-
sections: &gimli::Dwarf<R>,
|
1011
|
-
unit: &gimli::Unit<R>,
|
1012
|
-
mut f: F,
|
1013
|
-
) -> Result<bool, Error> {
|
1014
|
-
let mut added_any = false;
|
1015
|
-
let mut add_range = |range: gimli::Range| {
|
1016
|
-
if range.begin < range.end {
|
1017
|
-
f(range);
|
1018
|
-
added_any = true
|
1019
|
-
}
|
1020
|
-
};
|
1021
|
-
if let Some(ranges_offset) = self.ranges_offset {
|
1022
|
-
let mut range_list = sections.ranges(unit, ranges_offset)?;
|
1023
|
-
while let Some(range) = range_list.next()? {
|
1024
|
-
add_range(range);
|
1025
|
-
}
|
1026
|
-
} else if let (Some(begin), Some(end)) = (self.low_pc, self.high_pc) {
|
1027
|
-
add_range(gimli::Range { begin, end });
|
1028
|
-
} else if let (Some(begin), Some(size)) = (self.low_pc, self.size) {
|
1029
|
-
add_range(gimli::Range {
|
1030
|
-
begin,
|
1031
|
-
end: begin + size,
|
1032
|
-
});
|
1033
|
-
}
|
1034
|
-
Ok(added_any)
|
1035
|
-
}
|
1036
|
-
}
|
1037
|
-
|
1038
|
-
/// An iterator over function frames.
|
1039
|
-
pub struct FrameIter<'ctx, R>(FrameIterState<'ctx, R>)
|
1040
|
-
where
|
1041
|
-
R: gimli::Reader + 'ctx;
|
1042
|
-
|
1043
|
-
enum FrameIterState<'ctx, R>
|
1044
|
-
where
|
1045
|
-
R: gimli::Reader + 'ctx,
|
1046
|
-
{
|
1047
|
-
Empty,
|
1048
|
-
Location(Option<Location<'ctx>>),
|
1049
|
-
Frames(FrameIterFrames<'ctx, R>),
|
1050
|
-
}
|
1051
|
-
|
1052
|
-
struct FrameIterFrames<'ctx, R>
|
1053
|
-
where
|
1054
|
-
R: gimli::Reader + 'ctx,
|
1055
|
-
{
|
1056
|
-
unit: &'ctx ResUnit<R>,
|
1057
|
-
sections: &'ctx gimli::Dwarf<R>,
|
1058
|
-
function: &'ctx Function<R>,
|
1059
|
-
inlined_functions: iter::Rev<maybe_small::IntoIter<&'ctx InlinedFunction<R>>>,
|
1060
|
-
next: Option<Location<'ctx>>,
|
1061
|
-
}
|
1062
|
-
|
1063
|
-
impl<'ctx, R> FrameIter<'ctx, R>
|
1064
|
-
where
|
1065
|
-
R: gimli::Reader + 'ctx,
|
1066
|
-
{
|
1067
|
-
/// Advances the iterator and returns the next frame.
|
1068
|
-
pub fn next(&mut self) -> Result<Option<Frame<'ctx, R>>, Error> {
|
1069
|
-
let frames = match &mut self.0 {
|
1070
|
-
FrameIterState::Empty => return Ok(None),
|
1071
|
-
FrameIterState::Location(location) => {
|
1072
|
-
// We can't move out of a mutable reference, so use `take` instead.
|
1073
|
-
let location = location.take();
|
1074
|
-
self.0 = FrameIterState::Empty;
|
1075
|
-
return Ok(Some(Frame {
|
1076
|
-
dw_die_offset: None,
|
1077
|
-
function: None,
|
1078
|
-
location,
|
1079
|
-
}));
|
1080
|
-
}
|
1081
|
-
FrameIterState::Frames(frames) => frames,
|
1082
|
-
};
|
1083
|
-
|
1084
|
-
let loc = frames.next.take();
|
1085
|
-
let func = match frames.inlined_functions.next() {
|
1086
|
-
Some(func) => func,
|
1087
|
-
None => {
|
1088
|
-
let frame = Frame {
|
1089
|
-
dw_die_offset: Some(frames.function.dw_die_offset),
|
1090
|
-
function: frames.function.name.clone().map(|name| FunctionName {
|
1091
|
-
name,
|
1092
|
-
language: frames.unit.lang,
|
1093
|
-
}),
|
1094
|
-
location: loc,
|
1095
|
-
};
|
1096
|
-
self.0 = FrameIterState::Empty;
|
1097
|
-
return Ok(Some(frame));
|
1098
|
-
}
|
1099
|
-
};
|
1100
|
-
|
1101
|
-
let mut next = Location {
|
1102
|
-
file: None,
|
1103
|
-
line: if func.call_line != 0 {
|
1104
|
-
Some(func.call_line)
|
1105
|
-
} else {
|
1106
|
-
None
|
1107
|
-
},
|
1108
|
-
column: if func.call_column != 0 {
|
1109
|
-
Some(func.call_column)
|
1110
|
-
} else {
|
1111
|
-
None
|
1112
|
-
},
|
1113
|
-
};
|
1114
|
-
if func.call_file != 0 {
|
1115
|
-
if let Some(lines) = frames.unit.parse_lines(frames.sections)? {
|
1116
|
-
next.file = lines.files.get(func.call_file as usize).map(String::as_str);
|
1117
|
-
}
|
1118
|
-
}
|
1119
|
-
frames.next = Some(next);
|
1120
|
-
|
1121
|
-
Ok(Some(Frame {
|
1122
|
-
dw_die_offset: Some(func.dw_die_offset),
|
1123
|
-
function: func.name.clone().map(|name| FunctionName {
|
1124
|
-
name,
|
1125
|
-
language: frames.unit.lang,
|
1126
|
-
}),
|
1127
|
-
location: loc,
|
1128
|
-
}))
|
1129
|
-
}
|
1130
|
-
}
|
1131
|
-
|
1132
|
-
#[cfg(feature = "fallible-iterator")]
|
1133
|
-
impl<'ctx, R> fallible_iterator::FallibleIterator for FrameIter<'ctx, R>
|
1134
|
-
where
|
1135
|
-
R: gimli::Reader + 'ctx,
|
1136
|
-
{
|
1137
|
-
type Item = Frame<'ctx, R>;
|
1138
|
-
type Error = Error;
|
1139
|
-
|
1140
|
-
#[inline]
|
1141
|
-
fn next(&mut self) -> Result<Option<Frame<'ctx, R>>, Error> {
|
1142
|
-
self.next()
|
1143
|
-
}
|
1144
|
-
}
|
1145
|
-
|
1146
|
-
/// A function frame.
|
1147
|
-
pub struct Frame<'ctx, R: gimli::Reader> {
|
1148
|
-
/// The DWARF unit offset corresponding to the DIE of the function.
|
1149
|
-
pub dw_die_offset: Option<gimli::UnitOffset<R::Offset>>,
|
1150
|
-
/// The name of the function.
|
1151
|
-
pub function: Option<FunctionName<R>>,
|
1152
|
-
/// The source location corresponding to this frame.
|
1153
|
-
pub location: Option<Location<'ctx>>,
|
1154
|
-
}
|
1155
|
-
|
1156
|
-
/// A function name.
|
1157
|
-
pub struct FunctionName<R: gimli::Reader> {
|
1158
|
-
/// The name of the function.
|
1159
|
-
pub name: R,
|
1160
|
-
/// The language of the compilation unit containing this function.
|
1161
|
-
pub language: Option<gimli::DwLang>,
|
1162
|
-
}
|
1163
|
-
|
1164
|
-
impl<R: gimli::Reader> FunctionName<R> {
|
1165
|
-
/// The raw name of this function before demangling.
|
1166
|
-
pub fn raw_name(&self) -> Result<Cow<str>, Error> {
|
1167
|
-
self.name.to_string_lossy()
|
1168
|
-
}
|
1169
|
-
|
1170
|
-
/// The name of this function after demangling (if applicable).
|
1171
|
-
pub fn demangle(&self) -> Result<Cow<str>, Error> {
|
1172
|
-
self.raw_name().map(|x| demangle_auto(x, self.language))
|
1173
|
-
}
|
1174
|
-
}
|
1175
|
-
|
1176
|
-
/// Demangle a symbol name using the demangling scheme for the given language.
|
1177
|
-
///
|
1178
|
-
/// Returns `None` if demangling failed or is not required.
|
1179
|
-
#[allow(unused_variables)]
|
1180
|
-
pub fn demangle(name: &str, language: gimli::DwLang) -> Option<String> {
|
1181
|
-
match language {
|
1182
|
-
#[cfg(feature = "rustc-demangle")]
|
1183
|
-
gimli::DW_LANG_Rust => rustc_demangle::try_demangle(name)
|
1184
|
-
.ok()
|
1185
|
-
.as_ref()
|
1186
|
-
.map(|x| format!("{:#}", x)),
|
1187
|
-
#[cfg(feature = "cpp_demangle")]
|
1188
|
-
gimli::DW_LANG_C_plus_plus
|
1189
|
-
| gimli::DW_LANG_C_plus_plus_03
|
1190
|
-
| gimli::DW_LANG_C_plus_plus_11
|
1191
|
-
| gimli::DW_LANG_C_plus_plus_14 => cpp_demangle::Symbol::new(name)
|
1192
|
-
.ok()
|
1193
|
-
.and_then(|x| x.demangle(&Default::default()).ok()),
|
1194
|
-
_ => None,
|
1195
|
-
}
|
1196
|
-
}
|
1197
|
-
|
1198
|
-
/// Apply 'best effort' demangling of a symbol name.
|
1199
|
-
///
|
1200
|
-
/// If `language` is given, then only the demangling scheme for that language
|
1201
|
-
/// is used.
|
1202
|
-
///
|
1203
|
-
/// If `language` is `None`, then heuristics are used to determine how to
|
1204
|
-
/// demangle the name. Currently, these heuristics are very basic.
|
1205
|
-
///
|
1206
|
-
/// If demangling fails or is not required, then `name` is returned unchanged.
|
1207
|
-
pub fn demangle_auto(name: Cow<str>, language: Option<gimli::DwLang>) -> Cow<str> {
|
1208
|
-
match language {
|
1209
|
-
Some(language) => demangle(name.as_ref(), language),
|
1210
|
-
None => demangle(name.as_ref(), gimli::DW_LANG_Rust)
|
1211
|
-
.or_else(|| demangle(name.as_ref(), gimli::DW_LANG_C_plus_plus)),
|
1212
|
-
}
|
1213
|
-
.map(Cow::from)
|
1214
|
-
.unwrap_or(name)
|
1215
|
-
}
|
1216
|
-
|
1217
|
-
/// A source location.
|
1218
|
-
pub struct Location<'a> {
|
1219
|
-
/// The file name.
|
1220
|
-
pub file: Option<&'a str>,
|
1221
|
-
/// The line number.
|
1222
|
-
pub line: Option<u32>,
|
1223
|
-
/// The column number.
|
1224
|
-
pub column: Option<u32>,
|
1225
|
-
}
|
1226
|
-
|
1227
|
-
#[cfg(test)]
|
1228
|
-
mod tests {
|
1229
|
-
#[test]
|
1230
|
-
fn context_is_send() {
|
1231
|
-
fn assert_is_send<T: Send>() {}
|
1232
|
-
assert_is_send::<crate::Context<gimli::read::EndianSlice<gimli::LittleEndian>>>();
|
1233
|
-
}
|
1234
|
-
}
|