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
@@ -0,0 +1,1891 @@
|
|
1
|
+
#![cfg(feature = "compat")]
|
2
|
+
|
3
|
+
//! Assert Send/Sync/Unpin for all public types.
|
4
|
+
|
5
|
+
use futures::{
|
6
|
+
future::Future,
|
7
|
+
sink::Sink,
|
8
|
+
stream::Stream,
|
9
|
+
task::{Context, Poll},
|
10
|
+
};
|
11
|
+
use static_assertions::{assert_impl_all as assert_impl, assert_not_impl_all as assert_not_impl};
|
12
|
+
use std::marker::PhantomPinned;
|
13
|
+
use std::{marker::PhantomData, pin::Pin};
|
14
|
+
|
15
|
+
pub type LocalFuture<T = *const ()> = Pin<Box<dyn Future<Output = T>>>;
|
16
|
+
pub type LocalTryFuture<T = *const (), E = *const ()> = LocalFuture<Result<T, E>>;
|
17
|
+
pub type SendFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Send>>;
|
18
|
+
pub type SendTryFuture<T = *const (), E = *const ()> = SendFuture<Result<T, E>>;
|
19
|
+
pub type SyncFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Sync>>;
|
20
|
+
pub type SyncTryFuture<T = *const (), E = *const ()> = SyncFuture<Result<T, E>>;
|
21
|
+
pub type UnpinFuture<T = PhantomPinned> = LocalFuture<T>;
|
22
|
+
pub type UnpinTryFuture<T = PhantomPinned, E = PhantomPinned> = UnpinFuture<Result<T, E>>;
|
23
|
+
pub struct PinnedFuture<T = PhantomPinned>(PhantomPinned, PhantomData<T>);
|
24
|
+
impl<T> Future for PinnedFuture<T> {
|
25
|
+
type Output = T;
|
26
|
+
fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Self::Output> {
|
27
|
+
unimplemented!()
|
28
|
+
}
|
29
|
+
}
|
30
|
+
pub type PinnedTryFuture<T = PhantomPinned, E = PhantomPinned> = PinnedFuture<Result<T, E>>;
|
31
|
+
|
32
|
+
pub type LocalStream<T = *const ()> = Pin<Box<dyn Stream<Item = T>>>;
|
33
|
+
pub type LocalTryStream<T = *const (), E = *const ()> = LocalStream<Result<T, E>>;
|
34
|
+
pub type SendStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Send>>;
|
35
|
+
pub type SendTryStream<T = *const (), E = *const ()> = SendStream<Result<T, E>>;
|
36
|
+
pub type SyncStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Sync>>;
|
37
|
+
pub type SyncTryStream<T = *const (), E = *const ()> = SyncStream<Result<T, E>>;
|
38
|
+
pub type UnpinStream<T = PhantomPinned> = LocalStream<T>;
|
39
|
+
pub type UnpinTryStream<T = PhantomPinned, E = PhantomPinned> = UnpinStream<Result<T, E>>;
|
40
|
+
pub struct PinnedStream<T = PhantomPinned>(PhantomPinned, PhantomData<T>);
|
41
|
+
impl<T> Stream for PinnedStream<T> {
|
42
|
+
type Item = T;
|
43
|
+
fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
44
|
+
unimplemented!()
|
45
|
+
}
|
46
|
+
}
|
47
|
+
pub type PinnedTryStream<T = PhantomPinned, E = PhantomPinned> = PinnedStream<Result<T, E>>;
|
48
|
+
|
49
|
+
pub type LocalSink<T = *const (), E = *const ()> = Pin<Box<dyn Sink<T, Error = E>>>;
|
50
|
+
pub type SendSink<T = *const (), E = *const ()> = Pin<Box<dyn Sink<T, Error = E> + Send>>;
|
51
|
+
pub type SyncSink<T = *const (), E = *const ()> = Pin<Box<dyn Sink<T, Error = E> + Sync>>;
|
52
|
+
pub type UnpinSink<T = PhantomPinned, E = PhantomPinned> = LocalSink<T, E>;
|
53
|
+
pub struct PinnedSink<T = PhantomPinned, E = PhantomPinned>(PhantomPinned, PhantomData<(T, E)>);
|
54
|
+
impl<T, E> Sink<T> for PinnedSink<T, E> {
|
55
|
+
type Error = E;
|
56
|
+
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
57
|
+
unimplemented!()
|
58
|
+
}
|
59
|
+
fn start_send(self: Pin<&mut Self>, _: T) -> Result<(), Self::Error> {
|
60
|
+
unimplemented!()
|
61
|
+
}
|
62
|
+
fn poll_flush(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
63
|
+
unimplemented!()
|
64
|
+
}
|
65
|
+
fn poll_close(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
66
|
+
unimplemented!()
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::channel`.
|
71
|
+
pub mod channel {
|
72
|
+
use super::*;
|
73
|
+
use futures::channel::*;
|
74
|
+
|
75
|
+
assert_impl!(mpsc::Receiver<()>: Send);
|
76
|
+
assert_not_impl!(mpsc::Receiver<*const ()>: Send);
|
77
|
+
assert_impl!(mpsc::Receiver<()>: Sync);
|
78
|
+
assert_not_impl!(mpsc::Receiver<*const ()>: Sync);
|
79
|
+
assert_impl!(mpsc::Receiver<PhantomPinned>: Unpin);
|
80
|
+
|
81
|
+
assert_impl!(mpsc::SendError: Send);
|
82
|
+
assert_impl!(mpsc::SendError: Sync);
|
83
|
+
assert_impl!(mpsc::SendError: Unpin);
|
84
|
+
|
85
|
+
assert_impl!(mpsc::Sender<()>: Send);
|
86
|
+
assert_not_impl!(mpsc::Sender<*const ()>: Send);
|
87
|
+
assert_impl!(mpsc::Sender<()>: Sync);
|
88
|
+
assert_not_impl!(mpsc::Sender<*const ()>: Sync);
|
89
|
+
assert_impl!(mpsc::Sender<PhantomPinned>: Unpin);
|
90
|
+
|
91
|
+
assert_impl!(mpsc::TryRecvError: Send);
|
92
|
+
assert_impl!(mpsc::TryRecvError: Sync);
|
93
|
+
assert_impl!(mpsc::TryRecvError: Unpin);
|
94
|
+
|
95
|
+
assert_impl!(mpsc::TrySendError<()>: Send);
|
96
|
+
assert_not_impl!(mpsc::TrySendError<*const ()>: Send);
|
97
|
+
assert_impl!(mpsc::TrySendError<()>: Sync);
|
98
|
+
assert_not_impl!(mpsc::TrySendError<*const ()>: Sync);
|
99
|
+
assert_impl!(mpsc::TrySendError<()>: Unpin);
|
100
|
+
assert_not_impl!(mpsc::TrySendError<PhantomPinned>: Unpin);
|
101
|
+
|
102
|
+
assert_impl!(mpsc::UnboundedReceiver<()>: Send);
|
103
|
+
assert_not_impl!(mpsc::UnboundedReceiver<*const ()>: Send);
|
104
|
+
assert_impl!(mpsc::UnboundedReceiver<()>: Sync);
|
105
|
+
assert_not_impl!(mpsc::UnboundedReceiver<*const ()>: Sync);
|
106
|
+
assert_impl!(mpsc::UnboundedReceiver<PhantomPinned>: Unpin);
|
107
|
+
|
108
|
+
assert_impl!(mpsc::UnboundedReceiver<()>: Send);
|
109
|
+
assert_not_impl!(mpsc::UnboundedReceiver<*const ()>: Send);
|
110
|
+
assert_impl!(mpsc::UnboundedReceiver<()>: Sync);
|
111
|
+
assert_not_impl!(mpsc::UnboundedReceiver<*const ()>: Sync);
|
112
|
+
assert_impl!(mpsc::UnboundedReceiver<PhantomPinned>: Unpin);
|
113
|
+
|
114
|
+
assert_impl!(oneshot::Canceled: Send);
|
115
|
+
assert_impl!(oneshot::Canceled: Sync);
|
116
|
+
assert_impl!(oneshot::Canceled: Unpin);
|
117
|
+
|
118
|
+
assert_impl!(oneshot::Cancellation<()>: Send);
|
119
|
+
assert_not_impl!(oneshot::Cancellation<*const ()>: Send);
|
120
|
+
assert_impl!(oneshot::Cancellation<()>: Sync);
|
121
|
+
assert_not_impl!(oneshot::Cancellation<*const ()>: Sync);
|
122
|
+
assert_impl!(oneshot::Cancellation<PhantomPinned>: Unpin);
|
123
|
+
|
124
|
+
assert_impl!(oneshot::Receiver<()>: Send);
|
125
|
+
assert_not_impl!(oneshot::Receiver<*const ()>: Send);
|
126
|
+
assert_impl!(oneshot::Receiver<()>: Sync);
|
127
|
+
assert_not_impl!(oneshot::Receiver<*const ()>: Sync);
|
128
|
+
assert_impl!(oneshot::Receiver<PhantomPinned>: Unpin);
|
129
|
+
|
130
|
+
assert_impl!(oneshot::Sender<()>: Send);
|
131
|
+
assert_not_impl!(oneshot::Sender<*const ()>: Send);
|
132
|
+
assert_impl!(oneshot::Sender<()>: Sync);
|
133
|
+
assert_not_impl!(oneshot::Sender<*const ()>: Sync);
|
134
|
+
assert_impl!(oneshot::Sender<PhantomPinned>: Unpin);
|
135
|
+
}
|
136
|
+
|
137
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::compat`.
|
138
|
+
pub mod compat {
|
139
|
+
use super::*;
|
140
|
+
use futures::compat::*;
|
141
|
+
|
142
|
+
assert_impl!(Compat<()>: Send);
|
143
|
+
assert_not_impl!(Compat<*const ()>: Send);
|
144
|
+
assert_impl!(Compat<()>: Sync);
|
145
|
+
assert_not_impl!(Compat<*const ()>: Sync);
|
146
|
+
assert_impl!(Compat<()>: Unpin);
|
147
|
+
assert_not_impl!(Compat<PhantomPinned>: Unpin);
|
148
|
+
|
149
|
+
assert_impl!(Compat01As03<()>: Send);
|
150
|
+
assert_not_impl!(Compat01As03<*const ()>: Send);
|
151
|
+
assert_not_impl!(Compat01As03<()>: Sync);
|
152
|
+
assert_impl!(Compat01As03<PhantomPinned>: Unpin);
|
153
|
+
|
154
|
+
assert_impl!(Compat01As03Sink<(), ()>: Send);
|
155
|
+
assert_not_impl!(Compat01As03Sink<(), *const ()>: Send);
|
156
|
+
assert_not_impl!(Compat01As03Sink<*const (), ()>: Send);
|
157
|
+
assert_not_impl!(Compat01As03Sink<(), ()>: Sync);
|
158
|
+
assert_impl!(Compat01As03Sink<PhantomPinned, PhantomPinned>: Unpin);
|
159
|
+
|
160
|
+
assert_impl!(CompatSink<(), *const ()>: Send);
|
161
|
+
assert_not_impl!(CompatSink<*const (), ()>: Send);
|
162
|
+
assert_impl!(CompatSink<(), *const ()>: Sync);
|
163
|
+
assert_not_impl!(CompatSink<*const (), ()>: Sync);
|
164
|
+
assert_impl!(CompatSink<(), PhantomPinned>: Unpin);
|
165
|
+
assert_not_impl!(CompatSink<PhantomPinned, ()>: Unpin);
|
166
|
+
|
167
|
+
assert_impl!(Executor01As03<()>: Send);
|
168
|
+
assert_not_impl!(Executor01As03<*const ()>: Send);
|
169
|
+
assert_impl!(Executor01As03<()>: Sync);
|
170
|
+
assert_not_impl!(Executor01As03<*const ()>: Sync);
|
171
|
+
assert_impl!(Executor01As03<()>: Unpin);
|
172
|
+
assert_not_impl!(Executor01As03<PhantomPinned>: Unpin);
|
173
|
+
|
174
|
+
assert_impl!(Executor01Future: Send);
|
175
|
+
assert_not_impl!(Executor01Future: Sync);
|
176
|
+
assert_impl!(Executor01Future: Unpin);
|
177
|
+
}
|
178
|
+
|
179
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::executor`.
|
180
|
+
pub mod executor {
|
181
|
+
use super::*;
|
182
|
+
use futures::executor::*;
|
183
|
+
|
184
|
+
assert_impl!(BlockingStream<SendStream>: Send);
|
185
|
+
assert_not_impl!(BlockingStream<LocalStream>: Send);
|
186
|
+
assert_impl!(BlockingStream<SyncStream>: Sync);
|
187
|
+
assert_not_impl!(BlockingStream<LocalStream>: Sync);
|
188
|
+
assert_impl!(BlockingStream<UnpinStream>: Unpin);
|
189
|
+
// BlockingStream requires `S: Unpin`
|
190
|
+
// assert_not_impl!(BlockingStream<PinnedStream>: Unpin);
|
191
|
+
|
192
|
+
assert_impl!(Enter: Send);
|
193
|
+
assert_impl!(Enter: Sync);
|
194
|
+
assert_impl!(Enter: Unpin);
|
195
|
+
|
196
|
+
assert_impl!(EnterError: Send);
|
197
|
+
assert_impl!(EnterError: Sync);
|
198
|
+
assert_impl!(EnterError: Unpin);
|
199
|
+
|
200
|
+
assert_not_impl!(LocalPool: Send);
|
201
|
+
assert_not_impl!(LocalPool: Sync);
|
202
|
+
assert_impl!(LocalPool: Unpin);
|
203
|
+
|
204
|
+
assert_not_impl!(LocalSpawner: Send);
|
205
|
+
assert_not_impl!(LocalSpawner: Sync);
|
206
|
+
assert_impl!(LocalSpawner: Unpin);
|
207
|
+
|
208
|
+
assert_impl!(ThreadPool: Send);
|
209
|
+
assert_impl!(ThreadPool: Sync);
|
210
|
+
assert_impl!(ThreadPool: Unpin);
|
211
|
+
|
212
|
+
assert_impl!(ThreadPoolBuilder: Send);
|
213
|
+
assert_impl!(ThreadPoolBuilder: Sync);
|
214
|
+
assert_impl!(ThreadPoolBuilder: Unpin);
|
215
|
+
}
|
216
|
+
|
217
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::future`.
|
218
|
+
pub mod future {
|
219
|
+
use super::*;
|
220
|
+
use futures::future::*;
|
221
|
+
|
222
|
+
assert_impl!(AbortHandle: Send);
|
223
|
+
assert_impl!(AbortHandle: Sync);
|
224
|
+
assert_impl!(AbortHandle: Unpin);
|
225
|
+
|
226
|
+
assert_impl!(AbortRegistration: Send);
|
227
|
+
assert_impl!(AbortRegistration: Sync);
|
228
|
+
assert_impl!(AbortRegistration: Unpin);
|
229
|
+
|
230
|
+
assert_impl!(Abortable<SendFuture>: Send);
|
231
|
+
assert_not_impl!(Abortable<LocalFuture>: Send);
|
232
|
+
assert_impl!(Abortable<SyncFuture>: Sync);
|
233
|
+
assert_not_impl!(Abortable<LocalFuture>: Sync);
|
234
|
+
assert_impl!(Abortable<UnpinFuture>: Unpin);
|
235
|
+
assert_not_impl!(Abortable<PinnedFuture>: Unpin);
|
236
|
+
|
237
|
+
assert_impl!(Aborted: Send);
|
238
|
+
assert_impl!(Aborted: Sync);
|
239
|
+
assert_impl!(Aborted: Unpin);
|
240
|
+
|
241
|
+
assert_impl!(AndThen<SendFuture, SendFuture, ()>: Send);
|
242
|
+
assert_not_impl!(AndThen<SendFuture, LocalFuture, ()>: Send);
|
243
|
+
assert_not_impl!(AndThen<LocalFuture, SendFuture, ()>: Send);
|
244
|
+
assert_not_impl!(AndThen<SendFuture, SendFuture, *const ()>: Send);
|
245
|
+
assert_impl!(AndThen<SyncFuture, SyncFuture, ()>: Sync);
|
246
|
+
assert_not_impl!(AndThen<SyncFuture, LocalFuture, ()>: Sync);
|
247
|
+
assert_not_impl!(AndThen<LocalFuture, SyncFuture, ()>: Sync);
|
248
|
+
assert_not_impl!(AndThen<SyncFuture, SyncFuture, *const ()>: Sync);
|
249
|
+
assert_impl!(AndThen<UnpinFuture, UnpinFuture, PhantomPinned>: Unpin);
|
250
|
+
assert_not_impl!(AndThen<PinnedFuture, UnpinFuture, PhantomPinned>: Unpin);
|
251
|
+
assert_not_impl!(AndThen<UnpinFuture, PinnedFuture, PhantomPinned>: Unpin);
|
252
|
+
|
253
|
+
assert_impl!(CatchUnwind<SendFuture>: Send);
|
254
|
+
assert_not_impl!(CatchUnwind<LocalFuture>: Send);
|
255
|
+
assert_impl!(CatchUnwind<SyncFuture>: Sync);
|
256
|
+
assert_not_impl!(CatchUnwind<LocalFuture>: Sync);
|
257
|
+
assert_impl!(CatchUnwind<UnpinFuture>: Unpin);
|
258
|
+
assert_not_impl!(CatchUnwind<PinnedFuture>: Unpin);
|
259
|
+
|
260
|
+
assert_impl!(ErrInto<SendTryFuture, *const ()>: Send);
|
261
|
+
assert_not_impl!(ErrInto<LocalTryFuture, ()>: Send);
|
262
|
+
assert_impl!(ErrInto<SyncTryFuture, *const ()>: Sync);
|
263
|
+
assert_not_impl!(ErrInto<LocalTryFuture, ()>: Sync);
|
264
|
+
assert_impl!(ErrInto<UnpinTryFuture, PhantomPinned>: Unpin);
|
265
|
+
assert_not_impl!(ErrInto<PinnedTryFuture, PhantomPinned>: Unpin);
|
266
|
+
|
267
|
+
assert_impl!(Flatten<SendFuture<()>>: Send);
|
268
|
+
assert_not_impl!(Flatten<LocalFuture>: Send);
|
269
|
+
assert_not_impl!(Flatten<SendFuture>: Send);
|
270
|
+
assert_impl!(Flatten<SyncFuture<()>>: Sync);
|
271
|
+
assert_not_impl!(Flatten<LocalFuture>: Sync);
|
272
|
+
assert_not_impl!(Flatten<SyncFuture>: Sync);
|
273
|
+
assert_impl!(Flatten<UnpinFuture<()>>: Unpin);
|
274
|
+
assert_not_impl!(Flatten<PinnedFuture>: Unpin);
|
275
|
+
assert_not_impl!(Flatten<UnpinFuture>: Unpin);
|
276
|
+
|
277
|
+
assert_impl!(FlattenSink<SendFuture, ()>: Send);
|
278
|
+
assert_not_impl!(FlattenSink<SendFuture, *const ()>: Send);
|
279
|
+
assert_not_impl!(FlattenSink<LocalFuture, ()>: Send);
|
280
|
+
assert_impl!(FlattenSink<SyncFuture, ()>: Sync);
|
281
|
+
assert_not_impl!(FlattenSink<SyncFuture, *const ()>: Sync);
|
282
|
+
assert_not_impl!(FlattenSink<LocalFuture, ()>: Sync);
|
283
|
+
assert_impl!(FlattenSink<UnpinFuture, ()>: Unpin);
|
284
|
+
assert_not_impl!(FlattenSink<UnpinFuture, PhantomPinned>: Unpin);
|
285
|
+
assert_not_impl!(FlattenSink<PinnedFuture, ()>: Unpin);
|
286
|
+
|
287
|
+
assert_impl!(FlattenStream<SendFuture<()>>: Send);
|
288
|
+
assert_not_impl!(FlattenStream<LocalFuture>: Send);
|
289
|
+
assert_not_impl!(FlattenStream<SendFuture>: Send);
|
290
|
+
assert_impl!(FlattenStream<SyncFuture<()>>: Sync);
|
291
|
+
assert_not_impl!(FlattenStream<LocalFuture>: Sync);
|
292
|
+
assert_not_impl!(FlattenStream<SyncFuture>: Sync);
|
293
|
+
assert_impl!(FlattenStream<UnpinFuture<()>>: Unpin);
|
294
|
+
assert_not_impl!(FlattenStream<PinnedFuture>: Unpin);
|
295
|
+
assert_not_impl!(FlattenStream<UnpinFuture>: Unpin);
|
296
|
+
|
297
|
+
assert_impl!(Fuse<SendFuture>: Send);
|
298
|
+
assert_not_impl!(Fuse<LocalFuture>: Send);
|
299
|
+
assert_impl!(Fuse<SyncFuture>: Sync);
|
300
|
+
assert_not_impl!(Fuse<LocalFuture>: Sync);
|
301
|
+
assert_impl!(Fuse<UnpinFuture>: Unpin);
|
302
|
+
assert_not_impl!(Fuse<PinnedFuture>: Unpin);
|
303
|
+
|
304
|
+
assert_impl!(FutureObj<*const ()>: Send);
|
305
|
+
assert_not_impl!(FutureObj<()>: Sync);
|
306
|
+
assert_impl!(FutureObj<PhantomPinned>: Unpin);
|
307
|
+
|
308
|
+
assert_impl!(Inspect<SendFuture, ()>: Send);
|
309
|
+
assert_not_impl!(Inspect<SendFuture, *const ()>: Send);
|
310
|
+
assert_not_impl!(Inspect<LocalFuture, ()>: Send);
|
311
|
+
assert_impl!(Inspect<SyncFuture, ()>: Sync);
|
312
|
+
assert_not_impl!(Inspect<SyncFuture, *const ()>: Sync);
|
313
|
+
assert_not_impl!(Inspect<LocalFuture, ()>: Sync);
|
314
|
+
assert_impl!(Inspect<UnpinFuture, PhantomPinned>: Unpin);
|
315
|
+
assert_not_impl!(Inspect<PhantomPinned, PhantomPinned>: Unpin);
|
316
|
+
|
317
|
+
assert_impl!(InspectErr<SendFuture, ()>: Send);
|
318
|
+
assert_not_impl!(InspectErr<SendFuture, *const ()>: Send);
|
319
|
+
assert_not_impl!(InspectErr<LocalFuture, ()>: Send);
|
320
|
+
assert_impl!(InspectErr<SyncFuture, ()>: Sync);
|
321
|
+
assert_not_impl!(InspectErr<SyncFuture, *const ()>: Sync);
|
322
|
+
assert_not_impl!(InspectErr<LocalFuture, ()>: Sync);
|
323
|
+
assert_impl!(InspectErr<UnpinFuture, PhantomPinned>: Unpin);
|
324
|
+
assert_not_impl!(InspectErr<PhantomPinned, PhantomPinned>: Unpin);
|
325
|
+
|
326
|
+
assert_impl!(InspectOk<SendFuture, ()>: Send);
|
327
|
+
assert_not_impl!(InspectOk<SendFuture, *const ()>: Send);
|
328
|
+
assert_not_impl!(InspectOk<LocalFuture, ()>: Send);
|
329
|
+
assert_impl!(InspectOk<SyncFuture, ()>: Sync);
|
330
|
+
assert_not_impl!(InspectOk<SyncFuture, *const ()>: Sync);
|
331
|
+
assert_not_impl!(InspectOk<LocalFuture, ()>: Sync);
|
332
|
+
assert_impl!(InspectOk<UnpinFuture, PhantomPinned>: Unpin);
|
333
|
+
assert_not_impl!(InspectOk<PhantomPinned, PhantomPinned>: Unpin);
|
334
|
+
|
335
|
+
assert_impl!(IntoFuture<SendFuture>: Send);
|
336
|
+
assert_not_impl!(IntoFuture<LocalFuture>: Send);
|
337
|
+
assert_impl!(IntoFuture<SyncFuture>: Sync);
|
338
|
+
assert_not_impl!(IntoFuture<LocalFuture>: Sync);
|
339
|
+
assert_impl!(IntoFuture<UnpinFuture>: Unpin);
|
340
|
+
assert_not_impl!(IntoFuture<PinnedFuture>: Unpin);
|
341
|
+
|
342
|
+
assert_impl!(IntoStream<SendFuture>: Send);
|
343
|
+
assert_not_impl!(IntoStream<LocalFuture>: Send);
|
344
|
+
assert_impl!(IntoStream<SyncFuture>: Sync);
|
345
|
+
assert_not_impl!(IntoStream<LocalFuture>: Sync);
|
346
|
+
assert_impl!(IntoStream<UnpinFuture>: Unpin);
|
347
|
+
assert_not_impl!(IntoStream<PinnedFuture>: Unpin);
|
348
|
+
|
349
|
+
assert_impl!(Join<SendFuture<()>, SendFuture<()>>: Send);
|
350
|
+
assert_not_impl!(Join<SendFuture<()>, SendFuture>: Send);
|
351
|
+
assert_not_impl!(Join<SendFuture, SendFuture<()>>: Send);
|
352
|
+
assert_not_impl!(Join<SendFuture, LocalFuture>: Send);
|
353
|
+
assert_not_impl!(Join<LocalFuture, SendFuture>: Send);
|
354
|
+
assert_impl!(Join<SyncFuture<()>, SyncFuture<()>>: Sync);
|
355
|
+
assert_not_impl!(Join<SyncFuture<()>, SyncFuture>: Sync);
|
356
|
+
assert_not_impl!(Join<SyncFuture, SyncFuture<()>>: Sync);
|
357
|
+
assert_not_impl!(Join<SyncFuture, LocalFuture>: Sync);
|
358
|
+
assert_not_impl!(Join<LocalFuture, SyncFuture>: Sync);
|
359
|
+
assert_impl!(Join<UnpinFuture, UnpinFuture>: Unpin);
|
360
|
+
assert_not_impl!(Join<PinnedFuture, UnpinFuture>: Unpin);
|
361
|
+
assert_not_impl!(Join<UnpinFuture, PinnedFuture>: Unpin);
|
362
|
+
|
363
|
+
// Join3, Join4, Join5 are the same as Join
|
364
|
+
|
365
|
+
assert_impl!(JoinAll<SendFuture<()>>: Send);
|
366
|
+
assert_not_impl!(JoinAll<LocalFuture>: Send);
|
367
|
+
assert_not_impl!(JoinAll<SendFuture>: Send);
|
368
|
+
assert_impl!(JoinAll<SyncFuture<()>>: Sync);
|
369
|
+
assert_not_impl!(JoinAll<LocalFuture>: Sync);
|
370
|
+
assert_not_impl!(JoinAll<SyncFuture>: Sync);
|
371
|
+
assert_impl!(JoinAll<PinnedFuture>: Unpin);
|
372
|
+
|
373
|
+
assert_impl!(Lazy<()>: Send);
|
374
|
+
assert_not_impl!(Lazy<*const ()>: Send);
|
375
|
+
assert_impl!(Lazy<()>: Sync);
|
376
|
+
assert_not_impl!(Lazy<*const ()>: Sync);
|
377
|
+
assert_impl!(Lazy<PhantomPinned>: Unpin);
|
378
|
+
|
379
|
+
assert_not_impl!(LocalFutureObj<()>: Send);
|
380
|
+
assert_not_impl!(LocalFutureObj<()>: Sync);
|
381
|
+
assert_impl!(LocalFutureObj<PhantomPinned>: Unpin);
|
382
|
+
|
383
|
+
assert_impl!(Map<SendFuture, ()>: Send);
|
384
|
+
assert_not_impl!(Map<SendFuture, *const ()>: Send);
|
385
|
+
assert_not_impl!(Map<LocalFuture, ()>: Send);
|
386
|
+
assert_impl!(Map<SyncFuture, ()>: Sync);
|
387
|
+
assert_not_impl!(Map<SyncFuture, *const ()>: Sync);
|
388
|
+
assert_not_impl!(Map<LocalFuture, ()>: Sync);
|
389
|
+
assert_impl!(Map<UnpinFuture, PhantomPinned>: Unpin);
|
390
|
+
assert_not_impl!(Map<PhantomPinned, ()>: Unpin);
|
391
|
+
|
392
|
+
assert_impl!(MapErr<SendFuture, ()>: Send);
|
393
|
+
assert_not_impl!(MapErr<SendFuture, *const ()>: Send);
|
394
|
+
assert_not_impl!(MapErr<LocalFuture, ()>: Send);
|
395
|
+
assert_impl!(MapErr<SyncFuture, ()>: Sync);
|
396
|
+
assert_not_impl!(MapErr<SyncFuture, *const ()>: Sync);
|
397
|
+
assert_not_impl!(MapErr<LocalFuture, ()>: Sync);
|
398
|
+
assert_impl!(MapErr<UnpinFuture, PhantomPinned>: Unpin);
|
399
|
+
assert_not_impl!(MapErr<PhantomPinned, ()>: Unpin);
|
400
|
+
|
401
|
+
assert_impl!(MapInto<SendFuture, *const ()>: Send);
|
402
|
+
assert_not_impl!(MapInto<LocalFuture, ()>: Send);
|
403
|
+
assert_impl!(MapInto<SyncFuture, *const ()>: Sync);
|
404
|
+
assert_not_impl!(MapInto<LocalFuture, ()>: Sync);
|
405
|
+
assert_impl!(MapInto<UnpinFuture, PhantomPinned>: Unpin);
|
406
|
+
assert_not_impl!(MapInto<PhantomPinned, ()>: Unpin);
|
407
|
+
|
408
|
+
assert_impl!(MapOk<SendFuture, ()>: Send);
|
409
|
+
assert_not_impl!(MapOk<SendFuture, *const ()>: Send);
|
410
|
+
assert_not_impl!(MapOk<LocalFuture, ()>: Send);
|
411
|
+
assert_impl!(MapOk<SyncFuture, ()>: Sync);
|
412
|
+
assert_not_impl!(MapOk<SyncFuture, *const ()>: Sync);
|
413
|
+
assert_not_impl!(MapOk<LocalFuture, ()>: Sync);
|
414
|
+
assert_impl!(MapOk<UnpinFuture, PhantomPinned>: Unpin);
|
415
|
+
assert_not_impl!(MapOk<PhantomPinned, ()>: Unpin);
|
416
|
+
|
417
|
+
assert_impl!(MapOkOrElse<SendFuture, (), ()>: Send);
|
418
|
+
assert_not_impl!(MapOkOrElse<SendFuture, (), *const ()>: Send);
|
419
|
+
assert_not_impl!(MapOkOrElse<SendFuture, *const (), ()>: Send);
|
420
|
+
assert_not_impl!(MapOkOrElse<LocalFuture, (), ()>: Send);
|
421
|
+
assert_impl!(MapOkOrElse<SyncFuture, (), ()>: Sync);
|
422
|
+
assert_not_impl!(MapOkOrElse<SyncFuture, (), *const ()>: Sync);
|
423
|
+
assert_not_impl!(MapOkOrElse<SyncFuture, *const (), ()>: Sync);
|
424
|
+
assert_not_impl!(MapOkOrElse<LocalFuture, (), ()>: Sync);
|
425
|
+
assert_impl!(MapOkOrElse<UnpinFuture, PhantomPinned, PhantomPinned>: Unpin);
|
426
|
+
assert_not_impl!(MapOkOrElse<PhantomPinned, (), ()>: Unpin);
|
427
|
+
|
428
|
+
assert_impl!(NeverError<SendFuture>: Send);
|
429
|
+
assert_not_impl!(NeverError<LocalFuture>: Send);
|
430
|
+
assert_impl!(NeverError<SyncFuture>: Sync);
|
431
|
+
assert_not_impl!(NeverError<LocalFuture>: Sync);
|
432
|
+
assert_impl!(NeverError<UnpinFuture>: Unpin);
|
433
|
+
assert_not_impl!(NeverError<PinnedFuture>: Unpin);
|
434
|
+
|
435
|
+
assert_impl!(OkInto<SendFuture, *const ()>: Send);
|
436
|
+
assert_not_impl!(OkInto<LocalFuture, ()>: Send);
|
437
|
+
assert_impl!(OkInto<SyncFuture, *const ()>: Sync);
|
438
|
+
assert_not_impl!(OkInto<LocalFuture, ()>: Sync);
|
439
|
+
assert_impl!(OkInto<UnpinFuture, PhantomPinned>: Unpin);
|
440
|
+
assert_not_impl!(OkInto<PhantomPinned, ()>: Unpin);
|
441
|
+
|
442
|
+
assert_impl!(OptionFuture<SendFuture>: Send);
|
443
|
+
assert_not_impl!(OptionFuture<LocalFuture>: Send);
|
444
|
+
assert_impl!(OptionFuture<SyncFuture>: Sync);
|
445
|
+
assert_not_impl!(OptionFuture<LocalFuture>: Sync);
|
446
|
+
assert_impl!(OptionFuture<UnpinFuture>: Unpin);
|
447
|
+
assert_not_impl!(OptionFuture<PinnedFuture>: Unpin);
|
448
|
+
|
449
|
+
assert_impl!(OrElse<SendFuture, SendFuture, ()>: Send);
|
450
|
+
assert_not_impl!(OrElse<SendFuture, LocalFuture, ()>: Send);
|
451
|
+
assert_not_impl!(OrElse<LocalFuture, SendFuture, ()>: Send);
|
452
|
+
assert_not_impl!(OrElse<SendFuture, SendFuture, *const ()>: Send);
|
453
|
+
assert_impl!(OrElse<SyncFuture, SyncFuture, ()>: Sync);
|
454
|
+
assert_not_impl!(OrElse<SyncFuture, LocalFuture, ()>: Sync);
|
455
|
+
assert_not_impl!(OrElse<LocalFuture, SyncFuture, ()>: Sync);
|
456
|
+
assert_not_impl!(OrElse<SyncFuture, SyncFuture, *const ()>: Sync);
|
457
|
+
assert_impl!(OrElse<UnpinFuture, UnpinFuture, PhantomPinned>: Unpin);
|
458
|
+
assert_not_impl!(OrElse<PinnedFuture, UnpinFuture, PhantomPinned>: Unpin);
|
459
|
+
assert_not_impl!(OrElse<UnpinFuture, PinnedFuture, PhantomPinned>: Unpin);
|
460
|
+
|
461
|
+
assert_impl!(Pending<()>: Send);
|
462
|
+
assert_not_impl!(Pending<*const ()>: Send);
|
463
|
+
assert_impl!(Pending<()>: Sync);
|
464
|
+
assert_not_impl!(Pending<*const ()>: Sync);
|
465
|
+
assert_impl!(Pending<PhantomPinned>: Unpin);
|
466
|
+
|
467
|
+
assert_impl!(PollFn<()>: Send);
|
468
|
+
assert_not_impl!(PollFn<*const ()>: Send);
|
469
|
+
assert_impl!(PollFn<()>: Sync);
|
470
|
+
assert_not_impl!(PollFn<*const ()>: Sync);
|
471
|
+
assert_impl!(PollFn<PhantomPinned>: Unpin);
|
472
|
+
|
473
|
+
assert_impl!(PollImmediate<SendStream>: Send);
|
474
|
+
assert_not_impl!(PollImmediate<LocalStream<()>>: Send);
|
475
|
+
assert_impl!(PollImmediate<SyncStream>: Sync);
|
476
|
+
assert_not_impl!(PollImmediate<LocalStream<()>>: Sync);
|
477
|
+
assert_impl!(PollImmediate<UnpinStream>: Unpin);
|
478
|
+
assert_not_impl!(PollImmediate<PinnedStream>: Unpin);
|
479
|
+
|
480
|
+
assert_impl!(Ready<()>: Send);
|
481
|
+
assert_not_impl!(Ready<*const ()>: Send);
|
482
|
+
assert_impl!(Ready<()>: Sync);
|
483
|
+
assert_not_impl!(Ready<*const ()>: Sync);
|
484
|
+
assert_impl!(Ready<PhantomPinned>: Unpin);
|
485
|
+
|
486
|
+
assert_impl!(Remote<SendFuture<()>>: Send);
|
487
|
+
assert_not_impl!(Remote<LocalFuture>: Send);
|
488
|
+
assert_not_impl!(Remote<SendFuture>: Send);
|
489
|
+
assert_impl!(Remote<SyncFuture<()>>: Sync);
|
490
|
+
assert_not_impl!(Remote<LocalFuture>: Sync);
|
491
|
+
assert_not_impl!(Remote<SyncFuture>: Sync);
|
492
|
+
assert_impl!(Remote<UnpinFuture>: Unpin);
|
493
|
+
assert_not_impl!(Remote<PinnedFuture>: Unpin);
|
494
|
+
|
495
|
+
assert_impl!(RemoteHandle<()>: Send);
|
496
|
+
assert_not_impl!(RemoteHandle<*const ()>: Send);
|
497
|
+
assert_impl!(RemoteHandle<()>: Sync);
|
498
|
+
assert_not_impl!(RemoteHandle<*const ()>: Sync);
|
499
|
+
assert_impl!(RemoteHandle<PhantomPinned>: Unpin);
|
500
|
+
|
501
|
+
assert_impl!(Select<SendFuture, SendFuture>: Send);
|
502
|
+
assert_not_impl!(Select<SendFuture, LocalFuture>: Send);
|
503
|
+
assert_not_impl!(Select<LocalFuture, SendFuture>: Send);
|
504
|
+
assert_impl!(Select<SyncFuture, SyncFuture>: Sync);
|
505
|
+
assert_not_impl!(Select<SyncFuture, LocalFuture>: Sync);
|
506
|
+
assert_not_impl!(Select<LocalFuture, SyncFuture>: Sync);
|
507
|
+
assert_impl!(Select<UnpinFuture, UnpinFuture>: Unpin);
|
508
|
+
assert_not_impl!(Select<PinnedFuture, UnpinFuture>: Unpin);
|
509
|
+
assert_not_impl!(Select<UnpinFuture, PinnedFuture>: Unpin);
|
510
|
+
|
511
|
+
assert_impl!(SelectAll<SendFuture>: Send);
|
512
|
+
assert_not_impl!(SelectAll<LocalFuture>: Send);
|
513
|
+
assert_impl!(SelectAll<SyncFuture>: Sync);
|
514
|
+
assert_not_impl!(SelectAll<LocalFuture>: Sync);
|
515
|
+
assert_impl!(SelectAll<UnpinFuture>: Unpin);
|
516
|
+
assert_not_impl!(SelectAll<PinnedFuture>: Unpin);
|
517
|
+
|
518
|
+
assert_impl!(SelectOk<SendFuture>: Send);
|
519
|
+
assert_not_impl!(SelectOk<LocalFuture>: Send);
|
520
|
+
assert_impl!(SelectOk<SyncFuture>: Sync);
|
521
|
+
assert_not_impl!(SelectOk<LocalFuture>: Sync);
|
522
|
+
assert_impl!(SelectOk<UnpinFuture>: Unpin);
|
523
|
+
assert_not_impl!(SelectOk<PinnedFuture>: Unpin);
|
524
|
+
|
525
|
+
assert_impl!(Shared<SendFuture<()>>: Send);
|
526
|
+
assert_not_impl!(Shared<SendFuture>: Send);
|
527
|
+
assert_not_impl!(Shared<LocalFuture>: Send);
|
528
|
+
assert_not_impl!(Shared<SyncFuture<()>>: Sync);
|
529
|
+
assert_impl!(Shared<PinnedFuture>: Unpin);
|
530
|
+
|
531
|
+
assert_impl!(Then<SendFuture, SendFuture, ()>: Send);
|
532
|
+
assert_not_impl!(Then<SendFuture, SendFuture, *const ()>: Send);
|
533
|
+
assert_not_impl!(Then<SendFuture, LocalFuture, ()>: Send);
|
534
|
+
assert_not_impl!(Then<LocalFuture, SendFuture, ()>: Send);
|
535
|
+
assert_impl!(Then<SyncFuture, SyncFuture, ()>: Sync);
|
536
|
+
assert_not_impl!(Then<SyncFuture, SyncFuture, *const ()>: Sync);
|
537
|
+
assert_not_impl!(Then<SyncFuture, LocalFuture, ()>: Sync);
|
538
|
+
assert_not_impl!(Then<LocalFuture, SyncFuture, ()>: Sync);
|
539
|
+
assert_impl!(Then<UnpinFuture, UnpinFuture, PhantomPinned>: Unpin);
|
540
|
+
assert_not_impl!(Then<PinnedFuture, UnpinFuture, ()>: Unpin);
|
541
|
+
assert_not_impl!(Then<UnpinFuture, PinnedFuture, ()>: Unpin);
|
542
|
+
|
543
|
+
assert_impl!(TryFlatten<SendTryFuture<()>, ()>: Send);
|
544
|
+
assert_not_impl!(TryFlatten<LocalTryFuture, ()>: Send);
|
545
|
+
assert_not_impl!(TryFlatten<SendTryFuture, *const ()>: Send);
|
546
|
+
assert_impl!(TryFlatten<SyncTryFuture<()>, ()>: Sync);
|
547
|
+
assert_not_impl!(TryFlatten<LocalTryFuture, ()>: Sync);
|
548
|
+
assert_not_impl!(TryFlatten<SyncTryFuture, *const ()>: Sync);
|
549
|
+
assert_impl!(TryFlatten<UnpinTryFuture<()>, ()>: Unpin);
|
550
|
+
assert_not_impl!(TryFlatten<PinnedTryFuture, ()>: Unpin);
|
551
|
+
assert_not_impl!(TryFlatten<UnpinTryFuture, PhantomPinned>: Unpin);
|
552
|
+
|
553
|
+
assert_impl!(TryFlattenStream<SendTryFuture<()>>: Send);
|
554
|
+
assert_not_impl!(TryFlattenStream<LocalTryFuture>: Send);
|
555
|
+
assert_not_impl!(TryFlattenStream<SendTryFuture>: Send);
|
556
|
+
assert_impl!(TryFlattenStream<SyncTryFuture<()>>: Sync);
|
557
|
+
assert_not_impl!(TryFlattenStream<LocalTryFuture>: Sync);
|
558
|
+
assert_not_impl!(TryFlattenStream<SyncTryFuture>: Sync);
|
559
|
+
assert_impl!(TryFlattenStream<UnpinTryFuture<()>>: Unpin);
|
560
|
+
assert_not_impl!(TryFlattenStream<PinnedTryFuture>: Unpin);
|
561
|
+
assert_not_impl!(TryFlattenStream<UnpinTryFuture>: Unpin);
|
562
|
+
|
563
|
+
assert_impl!(TryJoin<SendTryFuture<()>, SendTryFuture<()>>: Send);
|
564
|
+
assert_not_impl!(TryJoin<SendTryFuture<()>, SendTryFuture>: Send);
|
565
|
+
assert_not_impl!(TryJoin<SendTryFuture, SendTryFuture<()>>: Send);
|
566
|
+
assert_not_impl!(TryJoin<SendTryFuture, LocalTryFuture>: Send);
|
567
|
+
assert_not_impl!(TryJoin<LocalTryFuture, SendTryFuture>: Send);
|
568
|
+
assert_impl!(TryJoin<SyncTryFuture<()>, SyncTryFuture<()>>: Sync);
|
569
|
+
assert_not_impl!(TryJoin<SyncTryFuture<()>, SyncTryFuture>: Sync);
|
570
|
+
assert_not_impl!(TryJoin<SyncTryFuture, SyncTryFuture<()>>: Sync);
|
571
|
+
assert_not_impl!(TryJoin<SyncTryFuture, LocalTryFuture>: Sync);
|
572
|
+
assert_not_impl!(TryJoin<LocalTryFuture, SyncTryFuture>: Sync);
|
573
|
+
assert_impl!(TryJoin<UnpinTryFuture, UnpinTryFuture>: Unpin);
|
574
|
+
assert_not_impl!(TryJoin<PinnedTryFuture, UnpinTryFuture>: Unpin);
|
575
|
+
assert_not_impl!(TryJoin<UnpinTryFuture, PinnedTryFuture>: Unpin);
|
576
|
+
|
577
|
+
// TryJoin3, TryJoin4, TryJoin5 are the same as TryJoin
|
578
|
+
|
579
|
+
assert_impl!(TryJoinAll<SendTryFuture<(), ()>>: Send);
|
580
|
+
assert_not_impl!(TryJoinAll<LocalTryFuture>: Send);
|
581
|
+
assert_not_impl!(TryJoinAll<SendTryFuture>: Send);
|
582
|
+
assert_impl!(TryJoinAll<SyncTryFuture<(), ()>>: Sync);
|
583
|
+
assert_not_impl!(TryJoinAll<LocalTryFuture>: Sync);
|
584
|
+
assert_not_impl!(TryJoinAll<SyncTryFuture>: Sync);
|
585
|
+
assert_impl!(TryJoinAll<PinnedTryFuture>: Unpin);
|
586
|
+
|
587
|
+
assert_impl!(TrySelect<SendFuture, SendFuture>: Send);
|
588
|
+
assert_not_impl!(TrySelect<SendFuture, LocalFuture>: Send);
|
589
|
+
assert_not_impl!(TrySelect<LocalFuture, SendFuture>: Send);
|
590
|
+
assert_impl!(TrySelect<SyncFuture, SyncFuture>: Sync);
|
591
|
+
assert_not_impl!(TrySelect<SyncFuture, LocalFuture>: Sync);
|
592
|
+
assert_not_impl!(TrySelect<LocalFuture, SyncFuture>: Sync);
|
593
|
+
assert_impl!(TrySelect<UnpinFuture, UnpinFuture>: Unpin);
|
594
|
+
assert_not_impl!(TrySelect<PinnedFuture, UnpinFuture>: Unpin);
|
595
|
+
assert_not_impl!(TrySelect<UnpinFuture, PinnedFuture>: Unpin);
|
596
|
+
|
597
|
+
assert_impl!(UnitError<SendFuture>: Send);
|
598
|
+
assert_not_impl!(UnitError<LocalFuture>: Send);
|
599
|
+
assert_impl!(UnitError<SyncFuture>: Sync);
|
600
|
+
assert_not_impl!(UnitError<LocalFuture>: Sync);
|
601
|
+
assert_impl!(UnitError<UnpinFuture>: Unpin);
|
602
|
+
assert_not_impl!(UnitError<PinnedFuture>: Unpin);
|
603
|
+
|
604
|
+
assert_impl!(UnwrapOrElse<SendFuture, ()>: Send);
|
605
|
+
assert_not_impl!(UnwrapOrElse<SendFuture, *const ()>: Send);
|
606
|
+
assert_not_impl!(UnwrapOrElse<LocalFuture, ()>: Send);
|
607
|
+
assert_impl!(UnwrapOrElse<SyncFuture, ()>: Sync);
|
608
|
+
assert_not_impl!(UnwrapOrElse<SyncFuture, *const ()>: Sync);
|
609
|
+
assert_not_impl!(UnwrapOrElse<LocalFuture, ()>: Sync);
|
610
|
+
assert_impl!(UnwrapOrElse<UnpinFuture, PhantomPinned>: Unpin);
|
611
|
+
assert_not_impl!(UnwrapOrElse<PhantomPinned, ()>: Unpin);
|
612
|
+
|
613
|
+
assert_impl!(WeakShared<SendFuture<()>>: Send);
|
614
|
+
assert_not_impl!(WeakShared<SendFuture>: Send);
|
615
|
+
assert_not_impl!(WeakShared<LocalFuture>: Send);
|
616
|
+
assert_not_impl!(WeakShared<SyncFuture<()>>: Sync);
|
617
|
+
assert_impl!(WeakShared<PinnedFuture>: Unpin);
|
618
|
+
|
619
|
+
assert_impl!(Either<SendFuture, SendFuture>: Send);
|
620
|
+
assert_not_impl!(Either<SendFuture, LocalFuture>: Send);
|
621
|
+
assert_not_impl!(Either<LocalFuture, SendFuture>: Send);
|
622
|
+
assert_impl!(Either<SyncFuture, SyncFuture>: Sync);
|
623
|
+
assert_not_impl!(Either<SyncFuture, LocalFuture>: Sync);
|
624
|
+
assert_not_impl!(Either<LocalFuture, SyncFuture>: Sync);
|
625
|
+
assert_impl!(Either<UnpinFuture, UnpinFuture>: Unpin);
|
626
|
+
assert_not_impl!(Either<UnpinFuture, PinnedFuture>: Unpin);
|
627
|
+
assert_not_impl!(Either<PinnedFuture, UnpinFuture>: Unpin);
|
628
|
+
|
629
|
+
assert_impl!(MaybeDone<SendFuture<()>>: Send);
|
630
|
+
assert_not_impl!(MaybeDone<SendFuture>: Send);
|
631
|
+
assert_not_impl!(MaybeDone<LocalFuture>: Send);
|
632
|
+
assert_impl!(MaybeDone<SyncFuture<()>>: Sync);
|
633
|
+
assert_not_impl!(MaybeDone<SyncFuture>: Sync);
|
634
|
+
assert_not_impl!(MaybeDone<LocalFuture>: Sync);
|
635
|
+
assert_impl!(MaybeDone<UnpinFuture>: Unpin);
|
636
|
+
assert_not_impl!(MaybeDone<PinnedFuture>: Unpin);
|
637
|
+
|
638
|
+
assert_impl!(TryMaybeDone<SendTryFuture<()>>: Send);
|
639
|
+
assert_not_impl!(TryMaybeDone<SendTryFuture>: Send);
|
640
|
+
assert_not_impl!(TryMaybeDone<LocalTryFuture>: Send);
|
641
|
+
assert_impl!(TryMaybeDone<SyncTryFuture<()>>: Sync);
|
642
|
+
assert_not_impl!(TryMaybeDone<SyncTryFuture>: Sync);
|
643
|
+
assert_not_impl!(TryMaybeDone<LocalTryFuture>: Sync);
|
644
|
+
assert_impl!(TryMaybeDone<UnpinTryFuture>: Unpin);
|
645
|
+
assert_not_impl!(TryMaybeDone<PinnedTryFuture>: Unpin);
|
646
|
+
}
|
647
|
+
|
648
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::io`.
|
649
|
+
pub mod io {
|
650
|
+
use super::*;
|
651
|
+
use futures::io::{Sink, *};
|
652
|
+
|
653
|
+
assert_impl!(AllowStdIo<()>: Send);
|
654
|
+
assert_not_impl!(AllowStdIo<*const ()>: Send);
|
655
|
+
assert_impl!(AllowStdIo<()>: Sync);
|
656
|
+
assert_not_impl!(AllowStdIo<*const ()>: Sync);
|
657
|
+
assert_impl!(AllowStdIo<PhantomPinned>: Unpin);
|
658
|
+
|
659
|
+
assert_impl!(BufReader<()>: Send);
|
660
|
+
assert_not_impl!(BufReader<*const ()>: Send);
|
661
|
+
assert_impl!(BufReader<()>: Sync);
|
662
|
+
assert_not_impl!(BufReader<*const ()>: Sync);
|
663
|
+
assert_impl!(BufReader<()>: Unpin);
|
664
|
+
assert_not_impl!(BufReader<PhantomPinned>: Unpin);
|
665
|
+
|
666
|
+
assert_impl!(BufWriter<()>: Send);
|
667
|
+
assert_not_impl!(BufWriter<*const ()>: Send);
|
668
|
+
assert_impl!(BufWriter<()>: Sync);
|
669
|
+
assert_not_impl!(BufWriter<*const ()>: Sync);
|
670
|
+
assert_impl!(BufWriter<()>: Unpin);
|
671
|
+
assert_not_impl!(BufWriter<PhantomPinned>: Unpin);
|
672
|
+
|
673
|
+
assert_impl!(Chain<(), ()>: Send);
|
674
|
+
assert_not_impl!(Chain<(), *const ()>: Send);
|
675
|
+
assert_not_impl!(Chain<*const (), ()>: Send);
|
676
|
+
assert_impl!(Chain<(), ()>: Sync);
|
677
|
+
assert_not_impl!(Chain<(), *const ()>: Sync);
|
678
|
+
assert_not_impl!(Chain<*const (), ()>: Sync);
|
679
|
+
assert_impl!(Chain<(), ()>: Unpin);
|
680
|
+
assert_not_impl!(Chain<(), PhantomPinned>: Unpin);
|
681
|
+
assert_not_impl!(Chain<PhantomPinned, ()>: Unpin);
|
682
|
+
|
683
|
+
assert_impl!(Close<'_, ()>: Send);
|
684
|
+
assert_not_impl!(Close<'_, *const ()>: Send);
|
685
|
+
assert_impl!(Close<'_, ()>: Sync);
|
686
|
+
assert_not_impl!(Close<'_, *const ()>: Sync);
|
687
|
+
assert_impl!(Close<'_, ()>: Unpin);
|
688
|
+
assert_not_impl!(Close<'_, PhantomPinned>: Unpin);
|
689
|
+
|
690
|
+
assert_impl!(Copy<(), ()>: Send);
|
691
|
+
assert_not_impl!(Copy<(), *const ()>: Send);
|
692
|
+
assert_not_impl!(Copy<*const (), ()>: Send);
|
693
|
+
assert_impl!(Copy<(), ()>: Sync);
|
694
|
+
assert_not_impl!(Copy<(), *const ()>: Sync);
|
695
|
+
assert_not_impl!(Copy<*const (), ()>: Sync);
|
696
|
+
assert_impl!(Copy<(), PhantomPinned>: Unpin);
|
697
|
+
assert_not_impl!(Copy<PhantomPinned, ()>: Unpin);
|
698
|
+
|
699
|
+
assert_impl!(CopyBuf<(), ()>: Send);
|
700
|
+
assert_not_impl!(CopyBuf<(), *const ()>: Send);
|
701
|
+
assert_not_impl!(CopyBuf<*const (), ()>: Send);
|
702
|
+
assert_impl!(CopyBuf<(), ()>: Sync);
|
703
|
+
assert_not_impl!(CopyBuf<(), *const ()>: Sync);
|
704
|
+
assert_not_impl!(CopyBuf<*const (), ()>: Sync);
|
705
|
+
assert_impl!(CopyBuf<(), PhantomPinned>: Unpin);
|
706
|
+
assert_not_impl!(CopyBuf<PhantomPinned, ()>: Unpin);
|
707
|
+
|
708
|
+
assert_impl!(Cursor<()>: Send);
|
709
|
+
assert_not_impl!(Cursor<*const ()>: Send);
|
710
|
+
assert_impl!(Cursor<()>: Sync);
|
711
|
+
assert_not_impl!(Cursor<*const ()>: Sync);
|
712
|
+
assert_impl!(Cursor<()>: Unpin);
|
713
|
+
assert_not_impl!(Cursor<PhantomPinned>: Unpin);
|
714
|
+
|
715
|
+
assert_impl!(Empty: Send);
|
716
|
+
assert_impl!(Empty: Sync);
|
717
|
+
assert_impl!(Empty: Unpin);
|
718
|
+
|
719
|
+
assert_impl!(FillBuf<'_, ()>: Send);
|
720
|
+
assert_not_impl!(FillBuf<'_, *const ()>: Send);
|
721
|
+
assert_impl!(FillBuf<'_, ()>: Sync);
|
722
|
+
assert_not_impl!(FillBuf<'_, *const ()>: Sync);
|
723
|
+
assert_impl!(FillBuf<'_, PhantomPinned>: Unpin);
|
724
|
+
|
725
|
+
assert_impl!(Flush<'_, ()>: Send);
|
726
|
+
assert_not_impl!(Flush<'_, *const ()>: Send);
|
727
|
+
assert_impl!(Flush<'_, ()>: Sync);
|
728
|
+
assert_not_impl!(Flush<'_, *const ()>: Sync);
|
729
|
+
assert_impl!(Flush<'_, ()>: Unpin);
|
730
|
+
assert_not_impl!(Flush<'_, PhantomPinned>: Unpin);
|
731
|
+
|
732
|
+
assert_impl!(IntoSink<(), ()>: Send);
|
733
|
+
assert_not_impl!(IntoSink<(), *const ()>: Send);
|
734
|
+
assert_not_impl!(IntoSink<*const (), ()>: Send);
|
735
|
+
assert_impl!(IntoSink<(), ()>: Sync);
|
736
|
+
assert_not_impl!(IntoSink<(), *const ()>: Sync);
|
737
|
+
assert_not_impl!(IntoSink<*const (), ()>: Sync);
|
738
|
+
assert_impl!(IntoSink<(), PhantomPinned>: Unpin);
|
739
|
+
assert_not_impl!(IntoSink<PhantomPinned, ()>: Unpin);
|
740
|
+
|
741
|
+
assert_impl!(Lines<()>: Send);
|
742
|
+
assert_not_impl!(Lines<*const ()>: Send);
|
743
|
+
assert_impl!(Lines<()>: Sync);
|
744
|
+
assert_not_impl!(Lines<*const ()>: Sync);
|
745
|
+
assert_impl!(Lines<()>: Unpin);
|
746
|
+
assert_not_impl!(Lines<PhantomPinned>: Unpin);
|
747
|
+
|
748
|
+
assert_impl!(Read<'_, ()>: Send);
|
749
|
+
assert_not_impl!(Read<'_, *const ()>: Send);
|
750
|
+
assert_impl!(Read<'_, ()>: Sync);
|
751
|
+
assert_not_impl!(Read<'_, *const ()>: Sync);
|
752
|
+
assert_impl!(Read<'_, ()>: Unpin);
|
753
|
+
assert_not_impl!(Read<'_, PhantomPinned>: Unpin);
|
754
|
+
|
755
|
+
assert_impl!(ReadExact<'_, ()>: Send);
|
756
|
+
assert_not_impl!(ReadExact<'_, *const ()>: Send);
|
757
|
+
assert_impl!(ReadExact<'_, ()>: Sync);
|
758
|
+
assert_not_impl!(ReadExact<'_, *const ()>: Sync);
|
759
|
+
assert_impl!(ReadExact<'_, ()>: Unpin);
|
760
|
+
assert_not_impl!(ReadExact<'_, PhantomPinned>: Unpin);
|
761
|
+
|
762
|
+
assert_impl!(ReadHalf<()>: Send);
|
763
|
+
assert_not_impl!(ReadHalf<*const ()>: Send);
|
764
|
+
assert_impl!(ReadHalf<()>: Sync);
|
765
|
+
assert_not_impl!(ReadHalf<*const ()>: Sync);
|
766
|
+
assert_impl!(ReadHalf<PhantomPinned>: Unpin);
|
767
|
+
|
768
|
+
assert_impl!(ReadLine<'_, ()>: Send);
|
769
|
+
assert_not_impl!(ReadLine<'_, *const ()>: Send);
|
770
|
+
assert_impl!(ReadLine<'_, ()>: Sync);
|
771
|
+
assert_not_impl!(ReadLine<'_, *const ()>: Sync);
|
772
|
+
assert_impl!(ReadLine<'_, ()>: Unpin);
|
773
|
+
assert_not_impl!(ReadLine<'_, PhantomPinned>: Unpin);
|
774
|
+
|
775
|
+
assert_impl!(ReadToEnd<'_, ()>: Send);
|
776
|
+
assert_not_impl!(ReadToEnd<'_, *const ()>: Send);
|
777
|
+
assert_impl!(ReadToEnd<'_, ()>: Sync);
|
778
|
+
assert_not_impl!(ReadToEnd<'_, *const ()>: Sync);
|
779
|
+
assert_impl!(ReadToEnd<'_, ()>: Unpin);
|
780
|
+
assert_not_impl!(ReadToEnd<'_, PhantomPinned>: Unpin);
|
781
|
+
|
782
|
+
assert_impl!(ReadToString<'_, ()>: Send);
|
783
|
+
assert_not_impl!(ReadToString<'_, *const ()>: Send);
|
784
|
+
assert_impl!(ReadToString<'_, ()>: Sync);
|
785
|
+
assert_not_impl!(ReadToString<'_, *const ()>: Sync);
|
786
|
+
assert_impl!(ReadToString<'_, ()>: Unpin);
|
787
|
+
assert_not_impl!(ReadToString<'_, PhantomPinned>: Unpin);
|
788
|
+
|
789
|
+
assert_impl!(ReadUntil<'_, ()>: Send);
|
790
|
+
assert_not_impl!(ReadUntil<'_, *const ()>: Send);
|
791
|
+
assert_impl!(ReadUntil<'_, ()>: Sync);
|
792
|
+
assert_not_impl!(ReadUntil<'_, *const ()>: Sync);
|
793
|
+
assert_impl!(ReadUntil<'_, ()>: Unpin);
|
794
|
+
assert_not_impl!(ReadUntil<'_, PhantomPinned>: Unpin);
|
795
|
+
|
796
|
+
assert_impl!(ReadVectored<'_, ()>: Send);
|
797
|
+
assert_not_impl!(ReadVectored<'_, *const ()>: Send);
|
798
|
+
assert_impl!(ReadVectored<'_, ()>: Sync);
|
799
|
+
assert_not_impl!(ReadVectored<'_, *const ()>: Sync);
|
800
|
+
assert_impl!(ReadVectored<'_, ()>: Unpin);
|
801
|
+
assert_not_impl!(ReadVectored<'_, PhantomPinned>: Unpin);
|
802
|
+
|
803
|
+
assert_impl!(Repeat: Send);
|
804
|
+
assert_impl!(Repeat: Sync);
|
805
|
+
assert_impl!(Repeat: Unpin);
|
806
|
+
|
807
|
+
assert_impl!(ReuniteError<()>: Send);
|
808
|
+
assert_not_impl!(ReuniteError<*const ()>: Send);
|
809
|
+
assert_impl!(ReuniteError<()>: Sync);
|
810
|
+
assert_not_impl!(ReuniteError<*const ()>: Sync);
|
811
|
+
assert_impl!(ReuniteError<PhantomPinned>: Unpin);
|
812
|
+
|
813
|
+
assert_impl!(Seek<'_, ()>: Send);
|
814
|
+
assert_not_impl!(Seek<'_, *const ()>: Send);
|
815
|
+
assert_impl!(Seek<'_, ()>: Sync);
|
816
|
+
assert_not_impl!(Seek<'_, *const ()>: Sync);
|
817
|
+
assert_impl!(Seek<'_, ()>: Unpin);
|
818
|
+
assert_not_impl!(Seek<'_, PhantomPinned>: Unpin);
|
819
|
+
|
820
|
+
assert_impl!(SeeKRelative<'_, ()>: Send);
|
821
|
+
assert_not_impl!(SeeKRelative<'_, *const ()>: Send);
|
822
|
+
assert_impl!(SeeKRelative<'_, ()>: Sync);
|
823
|
+
assert_not_impl!(SeeKRelative<'_, *const ()>: Sync);
|
824
|
+
assert_impl!(SeeKRelative<'_, PhantomPinned>: Unpin);
|
825
|
+
|
826
|
+
assert_impl!(Sink: Send);
|
827
|
+
assert_impl!(Sink: Sync);
|
828
|
+
assert_impl!(Sink: Unpin);
|
829
|
+
|
830
|
+
assert_impl!(Take<()>: Send);
|
831
|
+
assert_not_impl!(Take<*const ()>: Send);
|
832
|
+
assert_impl!(Take<()>: Sync);
|
833
|
+
assert_not_impl!(Take<*const ()>: Sync);
|
834
|
+
assert_impl!(Take<()>: Unpin);
|
835
|
+
assert_not_impl!(Take<PhantomPinned>: Unpin);
|
836
|
+
|
837
|
+
assert_impl!(Window<()>: Send);
|
838
|
+
assert_not_impl!(Window<*const ()>: Send);
|
839
|
+
assert_impl!(Window<()>: Sync);
|
840
|
+
assert_not_impl!(Window<*const ()>: Sync);
|
841
|
+
assert_impl!(Window<()>: Unpin);
|
842
|
+
assert_not_impl!(Window<PhantomPinned>: Unpin);
|
843
|
+
|
844
|
+
assert_impl!(Write<'_, ()>: Send);
|
845
|
+
assert_not_impl!(Write<'_, *const ()>: Send);
|
846
|
+
assert_impl!(Write<'_, ()>: Sync);
|
847
|
+
assert_not_impl!(Write<'_, *const ()>: Sync);
|
848
|
+
assert_impl!(Write<'_, ()>: Unpin);
|
849
|
+
assert_not_impl!(Write<'_, PhantomPinned>: Unpin);
|
850
|
+
|
851
|
+
assert_impl!(WriteAll<'_, ()>: Send);
|
852
|
+
assert_not_impl!(WriteAll<'_, *const ()>: Send);
|
853
|
+
assert_impl!(WriteAll<'_, ()>: Sync);
|
854
|
+
assert_not_impl!(WriteAll<'_, *const ()>: Sync);
|
855
|
+
assert_impl!(WriteAll<'_, ()>: Unpin);
|
856
|
+
assert_not_impl!(WriteAll<'_, PhantomPinned>: Unpin);
|
857
|
+
|
858
|
+
#[cfg(feature = "write-all-vectored")]
|
859
|
+
assert_impl!(WriteAllVectored<'_, ()>: Send);
|
860
|
+
#[cfg(feature = "write-all-vectored")]
|
861
|
+
assert_not_impl!(WriteAllVectored<'_, *const ()>: Send);
|
862
|
+
#[cfg(feature = "write-all-vectored")]
|
863
|
+
assert_impl!(WriteAllVectored<'_, ()>: Sync);
|
864
|
+
#[cfg(feature = "write-all-vectored")]
|
865
|
+
assert_not_impl!(WriteAllVectored<'_, *const ()>: Sync);
|
866
|
+
#[cfg(feature = "write-all-vectored")]
|
867
|
+
assert_impl!(WriteAllVectored<'_, ()>: Unpin);
|
868
|
+
// WriteAllVectored requires `W: Unpin`
|
869
|
+
// #[cfg(feature = "write-all-vectored")]
|
870
|
+
// assert_not_impl!(WriteAllVectored<'_, PhantomPinned>: Unpin);
|
871
|
+
|
872
|
+
assert_impl!(WriteHalf<()>: Send);
|
873
|
+
assert_not_impl!(WriteHalf<*const ()>: Send);
|
874
|
+
assert_impl!(WriteHalf<()>: Sync);
|
875
|
+
assert_not_impl!(WriteHalf<*const ()>: Sync);
|
876
|
+
assert_impl!(WriteHalf<PhantomPinned>: Unpin);
|
877
|
+
|
878
|
+
assert_impl!(WriteVectored<'_, ()>: Send);
|
879
|
+
assert_not_impl!(WriteVectored<'_, *const ()>: Send);
|
880
|
+
assert_impl!(WriteVectored<'_, ()>: Sync);
|
881
|
+
assert_not_impl!(WriteVectored<'_, *const ()>: Sync);
|
882
|
+
assert_impl!(WriteVectored<'_, ()>: Unpin);
|
883
|
+
assert_not_impl!(WriteVectored<'_, PhantomPinned>: Unpin);
|
884
|
+
}
|
885
|
+
|
886
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::lock`.
|
887
|
+
pub mod lock {
|
888
|
+
use super::*;
|
889
|
+
use futures::lock::*;
|
890
|
+
|
891
|
+
#[cfg(feature = "bilock")]
|
892
|
+
assert_impl!(BiLock<()>: Send);
|
893
|
+
#[cfg(feature = "bilock")]
|
894
|
+
assert_not_impl!(BiLock<*const ()>: Send);
|
895
|
+
#[cfg(feature = "bilock")]
|
896
|
+
assert_impl!(BiLock<()>: Sync);
|
897
|
+
#[cfg(feature = "bilock")]
|
898
|
+
assert_not_impl!(BiLock<*const ()>: Sync);
|
899
|
+
#[cfg(feature = "bilock")]
|
900
|
+
assert_impl!(BiLock<PhantomPinned>: Unpin);
|
901
|
+
|
902
|
+
#[cfg(feature = "bilock")]
|
903
|
+
assert_impl!(BiLockAcquire<'_, ()>: Send);
|
904
|
+
#[cfg(feature = "bilock")]
|
905
|
+
assert_not_impl!(BiLockAcquire<'_, *const ()>: Send);
|
906
|
+
#[cfg(feature = "bilock")]
|
907
|
+
assert_impl!(BiLockAcquire<'_, ()>: Sync);
|
908
|
+
#[cfg(feature = "bilock")]
|
909
|
+
assert_not_impl!(BiLockAcquire<'_, *const ()>: Sync);
|
910
|
+
#[cfg(feature = "bilock")]
|
911
|
+
assert_impl!(BiLockAcquire<'_, PhantomPinned>: Unpin);
|
912
|
+
|
913
|
+
#[cfg(feature = "bilock")]
|
914
|
+
assert_impl!(BiLockGuard<'_, ()>: Send);
|
915
|
+
#[cfg(feature = "bilock")]
|
916
|
+
assert_not_impl!(BiLockGuard<'_, *const ()>: Send);
|
917
|
+
#[cfg(feature = "bilock")]
|
918
|
+
assert_impl!(BiLockGuard<'_, ()>: Sync);
|
919
|
+
#[cfg(feature = "bilock")]
|
920
|
+
assert_not_impl!(BiLockGuard<'_, *const ()>: Sync);
|
921
|
+
#[cfg(feature = "bilock")]
|
922
|
+
assert_impl!(BiLockGuard<'_, PhantomPinned>: Unpin);
|
923
|
+
|
924
|
+
assert_impl!(MappedMutexGuard<'_, (), ()>: Send);
|
925
|
+
assert_not_impl!(MappedMutexGuard<'_, (), *const ()>: Send);
|
926
|
+
assert_not_impl!(MappedMutexGuard<'_, *const (), ()>: Send);
|
927
|
+
assert_impl!(MappedMutexGuard<'_, (), ()>: Sync);
|
928
|
+
assert_not_impl!(MappedMutexGuard<'_, (), *const ()>: Sync);
|
929
|
+
assert_not_impl!(MappedMutexGuard<'_, *const (), ()>: Sync);
|
930
|
+
assert_impl!(MappedMutexGuard<'_, PhantomPinned, PhantomPinned>: Unpin);
|
931
|
+
|
932
|
+
assert_impl!(Mutex<()>: Send);
|
933
|
+
assert_not_impl!(Mutex<*const ()>: Send);
|
934
|
+
assert_impl!(Mutex<()>: Sync);
|
935
|
+
assert_not_impl!(Mutex<*const ()>: Sync);
|
936
|
+
assert_impl!(Mutex<()>: Unpin);
|
937
|
+
assert_not_impl!(Mutex<PhantomPinned>: Unpin);
|
938
|
+
|
939
|
+
assert_impl!(MutexGuard<'_, ()>: Send);
|
940
|
+
assert_not_impl!(MutexGuard<'_, *const ()>: Send);
|
941
|
+
assert_impl!(MutexGuard<'_, ()>: Sync);
|
942
|
+
assert_not_impl!(MutexGuard<'_, *const ()>: Sync);
|
943
|
+
assert_impl!(MutexGuard<'_, PhantomPinned>: Unpin);
|
944
|
+
|
945
|
+
assert_impl!(MutexLockFuture<'_, ()>: Send);
|
946
|
+
assert_not_impl!(MutexLockFuture<'_, *const ()>: Send);
|
947
|
+
assert_impl!(MutexLockFuture<'_, *const ()>: Sync);
|
948
|
+
assert_impl!(MutexLockFuture<'_, PhantomPinned>: Unpin);
|
949
|
+
|
950
|
+
#[cfg(feature = "bilock")]
|
951
|
+
assert_impl!(ReuniteError<()>: Send);
|
952
|
+
#[cfg(feature = "bilock")]
|
953
|
+
assert_not_impl!(ReuniteError<*const ()>: Send);
|
954
|
+
#[cfg(feature = "bilock")]
|
955
|
+
assert_impl!(ReuniteError<()>: Sync);
|
956
|
+
#[cfg(feature = "bilock")]
|
957
|
+
assert_not_impl!(ReuniteError<*const ()>: Sync);
|
958
|
+
#[cfg(feature = "bilock")]
|
959
|
+
assert_impl!(ReuniteError<PhantomPinned>: Unpin);
|
960
|
+
}
|
961
|
+
|
962
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::sink`.
|
963
|
+
pub mod sink {
|
964
|
+
use super::*;
|
965
|
+
use futures::sink::{self, *};
|
966
|
+
use std::marker::Send;
|
967
|
+
|
968
|
+
assert_impl!(Buffer<(), ()>: Send);
|
969
|
+
assert_not_impl!(Buffer<(), *const ()>: Send);
|
970
|
+
assert_not_impl!(Buffer<*const (), ()>: Send);
|
971
|
+
assert_impl!(Buffer<(), ()>: Sync);
|
972
|
+
assert_not_impl!(Buffer<(), *const ()>: Sync);
|
973
|
+
assert_not_impl!(Buffer<*const (), ()>: Sync);
|
974
|
+
assert_impl!(Buffer<(), PhantomPinned>: Unpin);
|
975
|
+
assert_not_impl!(Buffer<PhantomPinned, ()>: Unpin);
|
976
|
+
|
977
|
+
assert_impl!(Close<'_, (), *const ()>: Send);
|
978
|
+
assert_not_impl!(Close<'_, *const (), ()>: Send);
|
979
|
+
assert_impl!(Close<'_, (), *const ()>: Sync);
|
980
|
+
assert_not_impl!(Close<'_, *const (), ()>: Sync);
|
981
|
+
assert_impl!(Close<'_, (), PhantomPinned>: Unpin);
|
982
|
+
assert_not_impl!(Close<'_, PhantomPinned, ()>: Unpin);
|
983
|
+
|
984
|
+
assert_impl!(Drain<()>: Send);
|
985
|
+
assert_not_impl!(Drain<*const ()>: Send);
|
986
|
+
assert_impl!(Drain<()>: Sync);
|
987
|
+
assert_not_impl!(Drain<*const ()>: Sync);
|
988
|
+
assert_impl!(Drain<PhantomPinned>: Unpin);
|
989
|
+
|
990
|
+
assert_impl!(Fanout<(), ()>: Send);
|
991
|
+
assert_not_impl!(Fanout<(), *const ()>: Send);
|
992
|
+
assert_not_impl!(Fanout<*const (), ()>: Send);
|
993
|
+
assert_impl!(Fanout<(), ()>: Sync);
|
994
|
+
assert_not_impl!(Fanout<(), *const ()>: Sync);
|
995
|
+
assert_not_impl!(Fanout<*const (), ()>: Sync);
|
996
|
+
assert_impl!(Fanout<(), ()>: Unpin);
|
997
|
+
assert_not_impl!(Fanout<(), PhantomPinned>: Unpin);
|
998
|
+
assert_not_impl!(Fanout<PhantomPinned, ()>: Unpin);
|
999
|
+
|
1000
|
+
assert_impl!(Feed<'_, (), ()>: Send);
|
1001
|
+
assert_not_impl!(Feed<'_, (), *const ()>: Send);
|
1002
|
+
assert_not_impl!(Feed<'_, *const (), ()>: Send);
|
1003
|
+
assert_impl!(Feed<'_, (), ()>: Sync);
|
1004
|
+
assert_not_impl!(Feed<'_, (), *const ()>: Sync);
|
1005
|
+
assert_not_impl!(Feed<'_, *const (), ()>: Sync);
|
1006
|
+
assert_impl!(Feed<'_, (), PhantomPinned>: Unpin);
|
1007
|
+
assert_not_impl!(Feed<'_, PhantomPinned, ()>: Unpin);
|
1008
|
+
|
1009
|
+
assert_impl!(Flush<'_, (), *const ()>: Send);
|
1010
|
+
assert_not_impl!(Flush<'_, *const (), ()>: Send);
|
1011
|
+
assert_impl!(Flush<'_, (), *const ()>: Sync);
|
1012
|
+
assert_not_impl!(Flush<'_, *const (), ()>: Sync);
|
1013
|
+
assert_impl!(Flush<'_, (), PhantomPinned>: Unpin);
|
1014
|
+
assert_not_impl!(Flush<'_, PhantomPinned, ()>: Unpin);
|
1015
|
+
|
1016
|
+
assert_impl!(sink::Send<'_, (), ()>: Send);
|
1017
|
+
assert_not_impl!(sink::Send<'_, (), *const ()>: Send);
|
1018
|
+
assert_not_impl!(sink::Send<'_, *const (), ()>: Send);
|
1019
|
+
assert_impl!(sink::Send<'_, (), ()>: Sync);
|
1020
|
+
assert_not_impl!(sink::Send<'_, (), *const ()>: Sync);
|
1021
|
+
assert_not_impl!(sink::Send<'_, *const (), ()>: Sync);
|
1022
|
+
assert_impl!(sink::Send<'_, (), PhantomPinned>: Unpin);
|
1023
|
+
assert_not_impl!(sink::Send<'_, PhantomPinned, ()>: Unpin);
|
1024
|
+
|
1025
|
+
assert_impl!(SendAll<'_, (), SendTryStream<()>>: Send);
|
1026
|
+
assert_not_impl!(SendAll<'_, (), SendTryStream>: Send);
|
1027
|
+
assert_not_impl!(SendAll<'_, (), LocalTryStream>: Send);
|
1028
|
+
assert_not_impl!(SendAll<'_, *const (), SendTryStream<()>>: Send);
|
1029
|
+
assert_impl!(SendAll<'_, (), SyncTryStream<()>>: Sync);
|
1030
|
+
assert_not_impl!(SendAll<'_, (), SyncTryStream>: Sync);
|
1031
|
+
assert_not_impl!(SendAll<'_, (), LocalTryStream>: Sync);
|
1032
|
+
assert_not_impl!(SendAll<'_, *const (), SyncTryStream<()>>: Sync);
|
1033
|
+
assert_impl!(SendAll<'_, (), UnpinTryStream>: Unpin);
|
1034
|
+
assert_not_impl!(SendAll<'_, PhantomPinned, UnpinTryStream>: Unpin);
|
1035
|
+
assert_not_impl!(SendAll<'_, (), PinnedTryStream>: Unpin);
|
1036
|
+
|
1037
|
+
assert_impl!(SinkErrInto<SendSink, *const (), *const ()>: Send);
|
1038
|
+
assert_not_impl!(SinkErrInto<LocalSink<()>, (), ()>: Send);
|
1039
|
+
assert_impl!(SinkErrInto<SyncSink, *const (), *const ()>: Sync);
|
1040
|
+
assert_not_impl!(SinkErrInto<LocalSink<()>, (), ()>: Sync);
|
1041
|
+
assert_impl!(SinkErrInto<UnpinSink, PhantomPinned, PhantomPinned>: Unpin);
|
1042
|
+
assert_not_impl!(SinkErrInto<PinnedSink<()>, (), ()>: Unpin);
|
1043
|
+
|
1044
|
+
assert_impl!(SinkMapErr<SendSink, ()>: Send);
|
1045
|
+
assert_not_impl!(SinkMapErr<SendSink, *const ()>: Send);
|
1046
|
+
assert_not_impl!(SinkMapErr<LocalSink<()>, ()>: Send);
|
1047
|
+
assert_impl!(SinkMapErr<SyncSink, ()>: Sync);
|
1048
|
+
assert_not_impl!(SinkMapErr<SyncSink, *const ()>: Sync);
|
1049
|
+
assert_not_impl!(SinkMapErr<LocalSink<()>, ()>: Sync);
|
1050
|
+
assert_impl!(SinkMapErr<UnpinSink, PhantomPinned>: Unpin);
|
1051
|
+
assert_not_impl!(SinkMapErr<PinnedSink<()>, ()>: Unpin);
|
1052
|
+
|
1053
|
+
assert_impl!(Unfold<(), (), ()>: Send);
|
1054
|
+
assert_not_impl!(Unfold<*const (), (), ()>: Send);
|
1055
|
+
assert_not_impl!(Unfold<(), *const (), ()>: Send);
|
1056
|
+
assert_not_impl!(Unfold<(), (), *const ()>: Send);
|
1057
|
+
assert_impl!(Unfold<(), (), ()>: Sync);
|
1058
|
+
assert_not_impl!(Unfold<*const (), (), ()>: Sync);
|
1059
|
+
assert_not_impl!(Unfold<(), *const (), ()>: Sync);
|
1060
|
+
assert_not_impl!(Unfold<(), (), *const ()>: Sync);
|
1061
|
+
assert_impl!(Unfold<PhantomPinned, PhantomPinned, ()>: Unpin);
|
1062
|
+
assert_not_impl!(Unfold<PinnedSink<()>, (), PhantomPinned>: Unpin);
|
1063
|
+
|
1064
|
+
assert_impl!(With<(), *const (), *const (), (), ()>: Send);
|
1065
|
+
assert_not_impl!(With<*const (), (), (), (), ()>: Send);
|
1066
|
+
assert_not_impl!(With<(), (), (), *const (), ()>: Send);
|
1067
|
+
assert_not_impl!(With<(), (), (), (), *const ()>: Send);
|
1068
|
+
assert_impl!(With<(), *const (), *const (), (), ()>: Sync);
|
1069
|
+
assert_not_impl!(With<*const (), (), (), (), ()>: Sync);
|
1070
|
+
assert_not_impl!(With<(), (), (), *const (), ()>: Sync);
|
1071
|
+
assert_not_impl!(With<(), (), (), (), *const ()>: Sync);
|
1072
|
+
assert_impl!(With<(), PhantomPinned, PhantomPinned, (), PhantomPinned>: Unpin);
|
1073
|
+
assert_not_impl!(With<PhantomPinned, (), (), (), ()>: Unpin);
|
1074
|
+
assert_not_impl!(With<(), (), (), PhantomPinned, ()>: Unpin);
|
1075
|
+
|
1076
|
+
assert_impl!(WithFlatMap<(), (), *const (), (), ()>: Send);
|
1077
|
+
assert_not_impl!(WithFlatMap<*const (), (), (), (), ()>: Send);
|
1078
|
+
assert_not_impl!(WithFlatMap<(), *const (), (), (), ()>: Send);
|
1079
|
+
assert_not_impl!(WithFlatMap<(), (), (), *const (), ()>: Send);
|
1080
|
+
assert_not_impl!(WithFlatMap<(), (), (), (), *const ()>: Send);
|
1081
|
+
assert_impl!(WithFlatMap<(), (), *const (), (), ()>: Sync);
|
1082
|
+
assert_not_impl!(WithFlatMap<*const (), (), (), (), ()>: Sync);
|
1083
|
+
assert_not_impl!(WithFlatMap<(), *const (), (), (), ()>: Sync);
|
1084
|
+
assert_not_impl!(WithFlatMap<(), (), (), *const (), ()>: Sync);
|
1085
|
+
assert_not_impl!(WithFlatMap<(), (), (), (), *const ()>: Sync);
|
1086
|
+
assert_impl!(WithFlatMap<(), PhantomPinned, PhantomPinned, (), PhantomPinned>: Unpin);
|
1087
|
+
assert_not_impl!(WithFlatMap<PhantomPinned, (), (), (), ()>: Unpin);
|
1088
|
+
assert_not_impl!(WithFlatMap<(), (), (), PhantomPinned, ()>: Unpin);
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::stream`.
|
1092
|
+
pub mod stream {
|
1093
|
+
use super::*;
|
1094
|
+
use futures::{io, stream::*};
|
1095
|
+
|
1096
|
+
assert_impl!(AndThen<(), (), ()>: Send);
|
1097
|
+
assert_not_impl!(AndThen<*const (), (), ()>: Send);
|
1098
|
+
assert_not_impl!(AndThen<(), *const (), ()>: Send);
|
1099
|
+
assert_not_impl!(AndThen<(), (), *const ()>: Send);
|
1100
|
+
assert_impl!(AndThen<(), (), ()>: Sync);
|
1101
|
+
assert_not_impl!(AndThen<*const (), (), ()>: Sync);
|
1102
|
+
assert_not_impl!(AndThen<(), *const (), ()>: Sync);
|
1103
|
+
assert_not_impl!(AndThen<(), (), *const ()>: Sync);
|
1104
|
+
assert_impl!(AndThen<(), (), PhantomPinned>: Unpin);
|
1105
|
+
assert_not_impl!(AndThen<PhantomPinned, (), ()>: Unpin);
|
1106
|
+
assert_not_impl!(AndThen<(), PhantomPinned, ()>: Unpin);
|
1107
|
+
|
1108
|
+
assert_impl!(BufferUnordered<SendStream<()>>: Send);
|
1109
|
+
assert_not_impl!(BufferUnordered<SendStream>: Send);
|
1110
|
+
assert_not_impl!(BufferUnordered<LocalStream>: Send);
|
1111
|
+
assert_impl!(BufferUnordered<SyncStream<()>>: Sync);
|
1112
|
+
assert_not_impl!(BufferUnordered<SyncStream>: Sync);
|
1113
|
+
assert_not_impl!(BufferUnordered<LocalStream>: Sync);
|
1114
|
+
assert_impl!(BufferUnordered<UnpinStream>: Unpin);
|
1115
|
+
assert_not_impl!(BufferUnordered<PinnedStream>: Unpin);
|
1116
|
+
|
1117
|
+
assert_impl!(Buffered<SendStream<SendFuture<()>>>: Send);
|
1118
|
+
assert_not_impl!(Buffered<SendStream<SendFuture>>: Send);
|
1119
|
+
assert_not_impl!(Buffered<SendStream<LocalFuture>>: Send);
|
1120
|
+
assert_not_impl!(Buffered<LocalStream<SendFuture<()>>>: Send);
|
1121
|
+
assert_impl!(Buffered<SyncStream<SyncFuture<()>>>: Sync);
|
1122
|
+
assert_not_impl!(Buffered<SyncStream<SyncFuture>>: Sync);
|
1123
|
+
assert_not_impl!(Buffered<SyncStream<LocalFuture>>: Sync);
|
1124
|
+
assert_not_impl!(Buffered<LocalStream<SyncFuture<()>>>: Sync);
|
1125
|
+
assert_impl!(Buffered<UnpinStream<PinnedFuture>>: Unpin);
|
1126
|
+
assert_not_impl!(Buffered<PinnedStream<PinnedFuture>>: Unpin);
|
1127
|
+
|
1128
|
+
assert_impl!(CatchUnwind<SendStream>: Send);
|
1129
|
+
assert_not_impl!(CatchUnwind<LocalStream>: Send);
|
1130
|
+
assert_impl!(CatchUnwind<SyncStream>: Sync);
|
1131
|
+
assert_not_impl!(CatchUnwind<LocalStream>: Sync);
|
1132
|
+
assert_impl!(CatchUnwind<UnpinStream>: Unpin);
|
1133
|
+
assert_not_impl!(CatchUnwind<PinnedStream>: Unpin);
|
1134
|
+
|
1135
|
+
assert_impl!(Chain<(), ()>: Send);
|
1136
|
+
assert_not_impl!(Chain<(), *const ()>: Send);
|
1137
|
+
assert_not_impl!(Chain<*const (), ()>: Send);
|
1138
|
+
assert_impl!(Chain<(), ()>: Sync);
|
1139
|
+
assert_not_impl!(Chain<(), *const ()>: Sync);
|
1140
|
+
assert_not_impl!(Chain<*const (), ()>: Sync);
|
1141
|
+
assert_impl!(Chain<(), ()>: Unpin);
|
1142
|
+
assert_not_impl!(Chain<(), PhantomPinned>: Unpin);
|
1143
|
+
assert_not_impl!(Chain<PhantomPinned, ()>: Unpin);
|
1144
|
+
|
1145
|
+
assert_impl!(Chunks<SendStream<()>>: Send);
|
1146
|
+
assert_not_impl!(Chunks<SendStream>: Send);
|
1147
|
+
assert_not_impl!(Chunks<LocalStream>: Send);
|
1148
|
+
assert_impl!(Chunks<SyncStream<()>>: Sync);
|
1149
|
+
assert_not_impl!(Chunks<SyncStream>: Sync);
|
1150
|
+
assert_not_impl!(Chunks<LocalStream>: Sync);
|
1151
|
+
assert_impl!(Chunks<UnpinStream>: Unpin);
|
1152
|
+
assert_not_impl!(Chunks<PinnedStream>: Unpin);
|
1153
|
+
|
1154
|
+
assert_impl!(Collect<(), ()>: Send);
|
1155
|
+
assert_not_impl!(Collect<*const (), ()>: Send);
|
1156
|
+
assert_not_impl!(Collect<(), *const ()>: Send);
|
1157
|
+
assert_impl!(Collect<(), ()>: Sync);
|
1158
|
+
assert_not_impl!(Collect<*const (), ()>: Sync);
|
1159
|
+
assert_not_impl!(Collect<(), *const ()>: Sync);
|
1160
|
+
assert_impl!(Collect<(), PhantomPinned>: Unpin);
|
1161
|
+
assert_not_impl!(Collect<PhantomPinned, ()>: Unpin);
|
1162
|
+
|
1163
|
+
assert_impl!(Concat<SendStream<()>>: Send);
|
1164
|
+
assert_not_impl!(Concat<SendStream>: Send);
|
1165
|
+
assert_not_impl!(Concat<LocalStream>: Send);
|
1166
|
+
assert_impl!(Concat<SyncStream<()>>: Sync);
|
1167
|
+
assert_not_impl!(Concat<SyncStream>: Sync);
|
1168
|
+
assert_not_impl!(Concat<LocalStream>: Sync);
|
1169
|
+
assert_impl!(Concat<UnpinStream>: Unpin);
|
1170
|
+
assert_not_impl!(Concat<PinnedStream>: Unpin);
|
1171
|
+
|
1172
|
+
assert_impl!(Cycle<()>: Send);
|
1173
|
+
assert_not_impl!(Cycle<*const ()>: Send);
|
1174
|
+
assert_impl!(Cycle<()>: Sync);
|
1175
|
+
assert_not_impl!(Cycle<*const ()>: Sync);
|
1176
|
+
assert_impl!(Cycle<()>: Unpin);
|
1177
|
+
assert_not_impl!(Cycle<PhantomPinned>: Unpin);
|
1178
|
+
|
1179
|
+
assert_impl!(Empty<()>: Send);
|
1180
|
+
assert_not_impl!(Empty<*const ()>: Send);
|
1181
|
+
assert_impl!(Empty<()>: Sync);
|
1182
|
+
assert_not_impl!(Empty<*const ()>: Sync);
|
1183
|
+
assert_impl!(Empty<PhantomPinned>: Unpin);
|
1184
|
+
|
1185
|
+
assert_impl!(Enumerate<()>: Send);
|
1186
|
+
assert_not_impl!(Enumerate<*const ()>: Send);
|
1187
|
+
assert_impl!(Enumerate<()>: Sync);
|
1188
|
+
assert_not_impl!(Enumerate<*const ()>: Sync);
|
1189
|
+
assert_impl!(Enumerate<()>: Unpin);
|
1190
|
+
assert_not_impl!(Enumerate<PhantomPinned>: Unpin);
|
1191
|
+
|
1192
|
+
assert_impl!(ErrInto<(), *const ()>: Send);
|
1193
|
+
assert_not_impl!(ErrInto<*const (), ()>: Send);
|
1194
|
+
assert_impl!(ErrInto<(), *const ()>: Sync);
|
1195
|
+
assert_not_impl!(ErrInto<*const (), ()>: Sync);
|
1196
|
+
assert_impl!(ErrInto<(), PhantomPinned>: Unpin);
|
1197
|
+
assert_not_impl!(ErrInto<PhantomPinned, ()>: Unpin);
|
1198
|
+
|
1199
|
+
assert_impl!(Filter<SendStream<()>, (), ()>: Send);
|
1200
|
+
assert_not_impl!(Filter<LocalStream<()>, (), ()>: Send);
|
1201
|
+
assert_not_impl!(Filter<SendStream, (), ()>: Send);
|
1202
|
+
assert_not_impl!(Filter<SendStream<()>, *const (), ()>: Send);
|
1203
|
+
assert_not_impl!(Filter<SendStream<()>, (), *const ()>: Send);
|
1204
|
+
assert_impl!(Filter<SyncStream<()>, (), ()>: Sync);
|
1205
|
+
assert_not_impl!(Filter<LocalStream<()>, (), ()>: Sync);
|
1206
|
+
assert_not_impl!(Filter<SyncStream, (), ()>: Sync);
|
1207
|
+
assert_not_impl!(Filter<SyncStream<()>, *const (), ()>: Sync);
|
1208
|
+
assert_not_impl!(Filter<SyncStream<()>, (), *const ()>: Sync);
|
1209
|
+
assert_impl!(Filter<UnpinStream, (), PhantomPinned>: Unpin);
|
1210
|
+
assert_not_impl!(Filter<PinnedStream, (), ()>: Unpin);
|
1211
|
+
assert_not_impl!(Filter<UnpinStream, PhantomPinned, ()>: Unpin);
|
1212
|
+
|
1213
|
+
assert_impl!(FilterMap<(), (), ()>: Send);
|
1214
|
+
assert_not_impl!(FilterMap<*const (), (), ()>: Send);
|
1215
|
+
assert_not_impl!(FilterMap<(), *const (), ()>: Send);
|
1216
|
+
assert_not_impl!(FilterMap<(), (), *const ()>: Send);
|
1217
|
+
assert_impl!(FilterMap<(), (), ()>: Sync);
|
1218
|
+
assert_not_impl!(FilterMap<*const (), (), ()>: Sync);
|
1219
|
+
assert_not_impl!(FilterMap<(), *const (), ()>: Sync);
|
1220
|
+
assert_not_impl!(FilterMap<(), (), *const ()>: Sync);
|
1221
|
+
assert_impl!(FilterMap<(), (), PhantomPinned>: Unpin);
|
1222
|
+
assert_not_impl!(FilterMap<PhantomPinned, (), ()>: Unpin);
|
1223
|
+
assert_not_impl!(FilterMap<(), PhantomPinned, ()>: Unpin);
|
1224
|
+
|
1225
|
+
assert_impl!(FlatMap<(), (), ()>: Send);
|
1226
|
+
assert_not_impl!(FlatMap<*const (), (), ()>: Send);
|
1227
|
+
assert_not_impl!(FlatMap<(), *const (), ()>: Send);
|
1228
|
+
assert_not_impl!(FlatMap<(), (), *const ()>: Send);
|
1229
|
+
assert_impl!(FlatMap<(), (), ()>: Sync);
|
1230
|
+
assert_not_impl!(FlatMap<*const (), (), ()>: Sync);
|
1231
|
+
assert_not_impl!(FlatMap<(), *const (), ()>: Sync);
|
1232
|
+
assert_not_impl!(FlatMap<(), (), *const ()>: Sync);
|
1233
|
+
assert_impl!(FlatMap<(), (), PhantomPinned>: Unpin);
|
1234
|
+
assert_not_impl!(FlatMap<PhantomPinned, (), ()>: Unpin);
|
1235
|
+
assert_not_impl!(FlatMap<(), PhantomPinned, ()>: Unpin);
|
1236
|
+
|
1237
|
+
assert_impl!(Flatten<SendStream<()>>: Send);
|
1238
|
+
assert_not_impl!(Flatten<SendStream>: Send);
|
1239
|
+
assert_not_impl!(Flatten<SendStream>: Send);
|
1240
|
+
assert_impl!(Flatten<SyncStream<()>>: Sync);
|
1241
|
+
assert_not_impl!(Flatten<LocalStream<()>>: Sync);
|
1242
|
+
assert_not_impl!(Flatten<LocalStream<()>>: Sync);
|
1243
|
+
assert_impl!(Flatten<UnpinStream<()>>: Unpin);
|
1244
|
+
assert_not_impl!(Flatten<UnpinStream>: Unpin);
|
1245
|
+
assert_not_impl!(Flatten<PinnedStream>: Unpin);
|
1246
|
+
|
1247
|
+
assert_impl!(Fold<(), (), (), ()>: Send);
|
1248
|
+
assert_not_impl!(Fold<*const (), (), (), ()>: Send);
|
1249
|
+
assert_not_impl!(Fold<(), *const (), (), ()>: Send);
|
1250
|
+
assert_not_impl!(Fold<(), (), *const (), ()>: Send);
|
1251
|
+
assert_not_impl!(Fold<(), (), (), *const ()>: Send);
|
1252
|
+
assert_impl!(Fold<(), (), (), ()>: Sync);
|
1253
|
+
assert_not_impl!(Fold<*const (), (), (), ()>: Sync);
|
1254
|
+
assert_not_impl!(Fold<(), *const (), (), ()>: Sync);
|
1255
|
+
assert_not_impl!(Fold<(), (), *const (), ()>: Sync);
|
1256
|
+
assert_not_impl!(Fold<(), (), (), *const ()>: Sync);
|
1257
|
+
assert_impl!(Fold<(), (), PhantomPinned, PhantomPinned>: Unpin);
|
1258
|
+
assert_not_impl!(Fold<PhantomPinned, (), (), ()>: Unpin);
|
1259
|
+
assert_not_impl!(Fold<(), PhantomPinned, (), ()>: Unpin);
|
1260
|
+
|
1261
|
+
assert_impl!(ForEach<(), (), ()>: Send);
|
1262
|
+
assert_not_impl!(ForEach<*const (), (), ()>: Send);
|
1263
|
+
assert_not_impl!(ForEach<(), *const (), ()>: Send);
|
1264
|
+
assert_not_impl!(ForEach<(), (), *const ()>: Send);
|
1265
|
+
assert_impl!(ForEach<(), (), ()>: Sync);
|
1266
|
+
assert_not_impl!(ForEach<*const (), (), ()>: Sync);
|
1267
|
+
assert_not_impl!(ForEach<(), *const (), ()>: Sync);
|
1268
|
+
assert_not_impl!(ForEach<(), (), *const ()>: Sync);
|
1269
|
+
assert_impl!(ForEach<(), (), PhantomPinned>: Unpin);
|
1270
|
+
assert_not_impl!(ForEach<PhantomPinned, (), ()>: Unpin);
|
1271
|
+
assert_not_impl!(ForEach<(), PhantomPinned, ()>: Unpin);
|
1272
|
+
|
1273
|
+
assert_impl!(ForEachConcurrent<(), (), ()>: Send);
|
1274
|
+
assert_not_impl!(ForEachConcurrent<*const (), (), ()>: Send);
|
1275
|
+
assert_not_impl!(ForEachConcurrent<(), *const (), ()>: Send);
|
1276
|
+
assert_not_impl!(ForEachConcurrent<(), (), *const ()>: Send);
|
1277
|
+
assert_impl!(ForEachConcurrent<(), (), ()>: Sync);
|
1278
|
+
assert_not_impl!(ForEachConcurrent<*const (), (), ()>: Sync);
|
1279
|
+
assert_not_impl!(ForEachConcurrent<(), *const (), ()>: Sync);
|
1280
|
+
assert_not_impl!(ForEachConcurrent<(), (), *const ()>: Sync);
|
1281
|
+
assert_impl!(ForEachConcurrent<(), PhantomPinned, PhantomPinned>: Unpin);
|
1282
|
+
assert_not_impl!(ForEachConcurrent<PhantomPinned, (), ()>: Unpin);
|
1283
|
+
|
1284
|
+
assert_impl!(Forward<SendTryStream<()>, ()>: Send);
|
1285
|
+
assert_not_impl!(Forward<SendTryStream, ()>: Send);
|
1286
|
+
assert_not_impl!(Forward<SendTryStream<()>, *const ()>: Send);
|
1287
|
+
assert_not_impl!(Forward<LocalTryStream, ()>: Send);
|
1288
|
+
assert_impl!(Forward<SyncTryStream<()>, ()>: Sync);
|
1289
|
+
assert_not_impl!(Forward<SyncTryStream, ()>: Sync);
|
1290
|
+
assert_not_impl!(Forward<SyncTryStream<()>, *const ()>: Sync);
|
1291
|
+
assert_not_impl!(Forward<LocalTryStream, ()>: Sync);
|
1292
|
+
assert_impl!(Forward<UnpinTryStream, ()>: Unpin);
|
1293
|
+
assert_not_impl!(Forward<UnpinTryStream, PhantomPinned>: Unpin);
|
1294
|
+
assert_not_impl!(Forward<PinnedTryStream, ()>: Unpin);
|
1295
|
+
|
1296
|
+
assert_impl!(Fuse<()>: Send);
|
1297
|
+
assert_not_impl!(Fuse<*const ()>: Send);
|
1298
|
+
assert_impl!(Fuse<()>: Sync);
|
1299
|
+
assert_not_impl!(Fuse<*const ()>: Sync);
|
1300
|
+
assert_impl!(Fuse<()>: Unpin);
|
1301
|
+
assert_not_impl!(Fuse<PhantomPinned>: Unpin);
|
1302
|
+
|
1303
|
+
assert_impl!(FuturesOrdered<SendFuture<()>>: Send);
|
1304
|
+
assert_not_impl!(FuturesOrdered<SendFuture>: Send);
|
1305
|
+
assert_not_impl!(FuturesOrdered<SendFuture>: Send);
|
1306
|
+
assert_impl!(FuturesOrdered<SyncFuture<()>>: Sync);
|
1307
|
+
assert_not_impl!(FuturesOrdered<LocalFuture<()>>: Sync);
|
1308
|
+
assert_not_impl!(FuturesOrdered<LocalFuture<()>>: Sync);
|
1309
|
+
assert_impl!(FuturesOrdered<PinnedFuture>: Unpin);
|
1310
|
+
|
1311
|
+
assert_impl!(FuturesUnordered<()>: Send);
|
1312
|
+
assert_not_impl!(FuturesUnordered<*const ()>: Send);
|
1313
|
+
assert_impl!(FuturesUnordered<()>: Sync);
|
1314
|
+
assert_not_impl!(FuturesUnordered<*const ()>: Sync);
|
1315
|
+
assert_impl!(FuturesUnordered<PhantomPinned>: Unpin);
|
1316
|
+
|
1317
|
+
assert_impl!(Inspect<(), ()>: Send);
|
1318
|
+
assert_not_impl!(Inspect<*const (), ()>: Send);
|
1319
|
+
assert_not_impl!(Inspect<(), *const ()>: Send);
|
1320
|
+
assert_impl!(Inspect<(), ()>: Sync);
|
1321
|
+
assert_not_impl!(Inspect<*const (), ()>: Sync);
|
1322
|
+
assert_not_impl!(Inspect<(), *const ()>: Sync);
|
1323
|
+
assert_impl!(Inspect<(), PhantomPinned>: Unpin);
|
1324
|
+
assert_not_impl!(Inspect<PhantomPinned, ()>: Unpin);
|
1325
|
+
|
1326
|
+
assert_impl!(InspectErr<(), ()>: Send);
|
1327
|
+
assert_not_impl!(InspectErr<*const (), ()>: Send);
|
1328
|
+
assert_not_impl!(InspectErr<(), *const ()>: Send);
|
1329
|
+
assert_impl!(InspectErr<(), ()>: Sync);
|
1330
|
+
assert_not_impl!(InspectErr<*const (), ()>: Sync);
|
1331
|
+
assert_not_impl!(InspectErr<(), *const ()>: Sync);
|
1332
|
+
assert_impl!(InspectErr<(), PhantomPinned>: Unpin);
|
1333
|
+
assert_not_impl!(InspectErr<PhantomPinned, ()>: Unpin);
|
1334
|
+
|
1335
|
+
assert_impl!(InspectOk<(), ()>: Send);
|
1336
|
+
assert_not_impl!(InspectOk<*const (), ()>: Send);
|
1337
|
+
assert_not_impl!(InspectOk<(), *const ()>: Send);
|
1338
|
+
assert_impl!(InspectOk<(), ()>: Sync);
|
1339
|
+
assert_not_impl!(InspectOk<*const (), ()>: Sync);
|
1340
|
+
assert_not_impl!(InspectOk<(), *const ()>: Sync);
|
1341
|
+
assert_impl!(InspectOk<(), PhantomPinned>: Unpin);
|
1342
|
+
assert_not_impl!(InspectOk<PhantomPinned, ()>: Unpin);
|
1343
|
+
|
1344
|
+
assert_impl!(IntoAsyncRead<SendTryStream<Vec<u8>, io::Error>>: Send);
|
1345
|
+
assert_not_impl!(IntoAsyncRead<LocalTryStream<Vec<u8>, io::Error>>: Send);
|
1346
|
+
assert_impl!(IntoAsyncRead<SyncTryStream<Vec<u8>, io::Error>>: Sync);
|
1347
|
+
assert_not_impl!(IntoAsyncRead<LocalTryStream<Vec<u8>, io::Error>>: Sync);
|
1348
|
+
assert_impl!(IntoAsyncRead<UnpinTryStream<Vec<u8>, io::Error>>: Unpin);
|
1349
|
+
// IntoAsyncRead requires `St: Unpin`
|
1350
|
+
// assert_not_impl!(IntoAsyncRead<PinnedTryStream<Vec<u8>, io::Error>>: Unpin);
|
1351
|
+
|
1352
|
+
assert_impl!(IntoStream<()>: Send);
|
1353
|
+
assert_not_impl!(IntoStream<*const ()>: Send);
|
1354
|
+
assert_impl!(IntoStream<()>: Sync);
|
1355
|
+
assert_not_impl!(IntoStream<*const ()>: Sync);
|
1356
|
+
assert_impl!(IntoStream<()>: Unpin);
|
1357
|
+
assert_not_impl!(IntoStream<PhantomPinned>: Unpin);
|
1358
|
+
|
1359
|
+
assert_impl!(Iter<()>: Send);
|
1360
|
+
assert_not_impl!(Iter<*const ()>: Send);
|
1361
|
+
assert_impl!(Iter<()>: Sync);
|
1362
|
+
assert_not_impl!(Iter<*const ()>: Sync);
|
1363
|
+
assert_impl!(Iter<PhantomPinned>: Unpin);
|
1364
|
+
|
1365
|
+
assert_impl!(Map<(), ()>: Send);
|
1366
|
+
assert_not_impl!(Map<*const (), ()>: Send);
|
1367
|
+
assert_not_impl!(Map<(), *const ()>: Send);
|
1368
|
+
assert_impl!(Map<(), ()>: Sync);
|
1369
|
+
assert_not_impl!(Map<*const (), ()>: Sync);
|
1370
|
+
assert_not_impl!(Map<(), *const ()>: Sync);
|
1371
|
+
assert_impl!(Map<(), PhantomPinned>: Unpin);
|
1372
|
+
assert_not_impl!(Map<PhantomPinned, ()>: Unpin);
|
1373
|
+
|
1374
|
+
assert_impl!(MapErr<(), ()>: Send);
|
1375
|
+
assert_not_impl!(MapErr<*const (), ()>: Send);
|
1376
|
+
assert_not_impl!(MapErr<(), *const ()>: Send);
|
1377
|
+
assert_impl!(MapErr<(), ()>: Sync);
|
1378
|
+
assert_not_impl!(MapErr<*const (), ()>: Sync);
|
1379
|
+
assert_not_impl!(MapErr<(), *const ()>: Sync);
|
1380
|
+
assert_impl!(MapErr<(), PhantomPinned>: Unpin);
|
1381
|
+
assert_not_impl!(MapErr<PhantomPinned, ()>: Unpin);
|
1382
|
+
|
1383
|
+
assert_impl!(MapOk<(), ()>: Send);
|
1384
|
+
assert_not_impl!(MapOk<*const (), ()>: Send);
|
1385
|
+
assert_not_impl!(MapOk<(), *const ()>: Send);
|
1386
|
+
assert_impl!(MapOk<(), ()>: Sync);
|
1387
|
+
assert_not_impl!(MapOk<*const (), ()>: Sync);
|
1388
|
+
assert_not_impl!(MapOk<(), *const ()>: Sync);
|
1389
|
+
assert_impl!(MapOk<(), PhantomPinned>: Unpin);
|
1390
|
+
assert_not_impl!(MapOk<PhantomPinned, ()>: Unpin);
|
1391
|
+
|
1392
|
+
assert_impl!(Next<'_, ()>: Send);
|
1393
|
+
assert_not_impl!(Next<'_, *const ()>: Send);
|
1394
|
+
assert_impl!(Next<'_, ()>: Sync);
|
1395
|
+
assert_not_impl!(Next<'_, *const ()>: Sync);
|
1396
|
+
assert_impl!(Next<'_, ()>: Unpin);
|
1397
|
+
assert_not_impl!(Next<'_, PhantomPinned>: Unpin);
|
1398
|
+
|
1399
|
+
assert_impl!(NextIf<'_, SendStream<()>, ()>: Send);
|
1400
|
+
assert_not_impl!(NextIf<'_, SendStream<()>, *const ()>: Send);
|
1401
|
+
assert_not_impl!(NextIf<'_, SendStream, ()>: Send);
|
1402
|
+
assert_not_impl!(NextIf<'_, LocalStream<()>, ()>: Send);
|
1403
|
+
assert_impl!(NextIf<'_, SyncStream<()>, ()>: Sync);
|
1404
|
+
assert_not_impl!(NextIf<'_, SyncStream<()>, *const ()>: Sync);
|
1405
|
+
assert_not_impl!(NextIf<'_, SyncStream, ()>: Sync);
|
1406
|
+
assert_not_impl!(NextIf<'_, LocalStream<()>, ()>: Send);
|
1407
|
+
assert_impl!(NextIf<'_, PinnedStream, PhantomPinned>: Unpin);
|
1408
|
+
|
1409
|
+
assert_impl!(NextIfEq<'_, SendStream<()>, ()>: Send);
|
1410
|
+
assert_not_impl!(NextIfEq<'_, SendStream<()>, *const ()>: Send);
|
1411
|
+
assert_not_impl!(NextIfEq<'_, SendStream, ()>: Send);
|
1412
|
+
assert_not_impl!(NextIfEq<'_, LocalStream<()>, ()>: Send);
|
1413
|
+
assert_impl!(NextIfEq<'_, SyncStream<()>, ()>: Sync);
|
1414
|
+
assert_not_impl!(NextIfEq<'_, SyncStream<()>, *const ()>: Sync);
|
1415
|
+
assert_not_impl!(NextIfEq<'_, SyncStream, ()>: Sync);
|
1416
|
+
assert_not_impl!(NextIfEq<'_, LocalStream<()>, ()>: Send);
|
1417
|
+
assert_impl!(NextIfEq<'_, PinnedStream, PhantomPinned>: Unpin);
|
1418
|
+
|
1419
|
+
assert_impl!(Once<()>: Send);
|
1420
|
+
assert_not_impl!(Once<*const ()>: Send);
|
1421
|
+
assert_impl!(Once<()>: Sync);
|
1422
|
+
assert_not_impl!(Once<*const ()>: Sync);
|
1423
|
+
assert_impl!(Once<()>: Unpin);
|
1424
|
+
assert_not_impl!(Once<PhantomPinned>: Unpin);
|
1425
|
+
|
1426
|
+
assert_impl!(OrElse<(), (), ()>: Send);
|
1427
|
+
assert_not_impl!(OrElse<*const (), (), ()>: Send);
|
1428
|
+
assert_not_impl!(OrElse<(), *const (), ()>: Send);
|
1429
|
+
assert_not_impl!(OrElse<(), (), *const ()>: Send);
|
1430
|
+
assert_impl!(OrElse<(), (), ()>: Sync);
|
1431
|
+
assert_not_impl!(OrElse<*const (), (), ()>: Sync);
|
1432
|
+
assert_not_impl!(OrElse<(), *const (), ()>: Sync);
|
1433
|
+
assert_not_impl!(OrElse<(), (), *const ()>: Sync);
|
1434
|
+
assert_impl!(OrElse<(), (), PhantomPinned>: Unpin);
|
1435
|
+
assert_not_impl!(OrElse<PhantomPinned, (), ()>: Unpin);
|
1436
|
+
assert_not_impl!(OrElse<(), PhantomPinned, ()>: Unpin);
|
1437
|
+
|
1438
|
+
assert_impl!(Peek<'_, SendStream<()>>: Send);
|
1439
|
+
assert_not_impl!(Peek<'_, SendStream>: Send);
|
1440
|
+
assert_not_impl!(Peek<'_, LocalStream<()>>: Send);
|
1441
|
+
assert_impl!(Peek<'_, SyncStream<()>>: Sync);
|
1442
|
+
assert_not_impl!(Peek<'_, SyncStream>: Sync);
|
1443
|
+
assert_not_impl!(Peek<'_, LocalStream<()>>: Sync);
|
1444
|
+
assert_impl!(Peek<'_, PinnedStream>: Unpin);
|
1445
|
+
|
1446
|
+
assert_impl!(PeekMut<'_, SendStream<()>>: Send);
|
1447
|
+
assert_not_impl!(PeekMut<'_, SendStream>: Send);
|
1448
|
+
assert_not_impl!(PeekMut<'_, LocalStream<()>>: Send);
|
1449
|
+
assert_impl!(PeekMut<'_, SyncStream<()>>: Sync);
|
1450
|
+
assert_not_impl!(PeekMut<'_, SyncStream>: Sync);
|
1451
|
+
assert_not_impl!(PeekMut<'_, LocalStream<()>>: Sync);
|
1452
|
+
assert_impl!(PeekMut<'_, PinnedStream>: Unpin);
|
1453
|
+
|
1454
|
+
assert_impl!(Peekable<SendStream<()>>: Send);
|
1455
|
+
assert_not_impl!(Peekable<SendStream>: Send);
|
1456
|
+
assert_not_impl!(Peekable<LocalStream>: Send);
|
1457
|
+
assert_impl!(Peekable<SyncStream<()>>: Sync);
|
1458
|
+
assert_not_impl!(Peekable<SyncStream>: Sync);
|
1459
|
+
assert_not_impl!(Peekable<LocalStream>: Sync);
|
1460
|
+
assert_impl!(Peekable<UnpinStream>: Unpin);
|
1461
|
+
assert_not_impl!(Peekable<PinnedStream>: Unpin);
|
1462
|
+
|
1463
|
+
assert_impl!(Pending<()>: Send);
|
1464
|
+
assert_not_impl!(Pending<*const ()>: Send);
|
1465
|
+
assert_impl!(Pending<()>: Sync);
|
1466
|
+
assert_not_impl!(Pending<*const ()>: Sync);
|
1467
|
+
assert_impl!(Pending<PhantomPinned>: Unpin);
|
1468
|
+
|
1469
|
+
assert_impl!(PollFn<()>: Send);
|
1470
|
+
assert_not_impl!(PollFn<*const ()>: Send);
|
1471
|
+
assert_impl!(PollFn<()>: Sync);
|
1472
|
+
assert_not_impl!(PollFn<*const ()>: Sync);
|
1473
|
+
assert_impl!(PollFn<PhantomPinned>: Unpin);
|
1474
|
+
|
1475
|
+
assert_impl!(PollImmediate<SendStream>: Send);
|
1476
|
+
assert_not_impl!(PollImmediate<LocalStream<()>>: Send);
|
1477
|
+
assert_impl!(PollImmediate<SyncStream>: Sync);
|
1478
|
+
assert_not_impl!(PollImmediate<LocalStream<()>>: Sync);
|
1479
|
+
assert_impl!(PollImmediate<UnpinStream>: Unpin);
|
1480
|
+
assert_not_impl!(PollImmediate<PinnedStream>: Unpin);
|
1481
|
+
|
1482
|
+
assert_impl!(ReadyChunks<SendStream<()>>: Send);
|
1483
|
+
assert_impl!(ReadyChunks<SendStream>: Send);
|
1484
|
+
assert_not_impl!(ReadyChunks<LocalStream>: Send);
|
1485
|
+
assert_impl!(ReadyChunks<SyncStream<()>>: Sync);
|
1486
|
+
assert_impl!(ReadyChunks<SyncStream>: Sync);
|
1487
|
+
assert_not_impl!(ReadyChunks<LocalStream>: Sync);
|
1488
|
+
assert_impl!(ReadyChunks<UnpinStream>: Unpin);
|
1489
|
+
assert_not_impl!(ReadyChunks<PinnedStream>: Unpin);
|
1490
|
+
|
1491
|
+
assert_impl!(Repeat<()>: Send);
|
1492
|
+
assert_not_impl!(Repeat<*const ()>: Send);
|
1493
|
+
assert_impl!(Repeat<()>: Sync);
|
1494
|
+
assert_not_impl!(Repeat<*const ()>: Sync);
|
1495
|
+
assert_impl!(Repeat<PhantomPinned>: Unpin);
|
1496
|
+
|
1497
|
+
assert_impl!(RepeatWith<()>: Send);
|
1498
|
+
assert_not_impl!(RepeatWith<*const ()>: Send);
|
1499
|
+
assert_impl!(RepeatWith<()>: Sync);
|
1500
|
+
assert_not_impl!(RepeatWith<*const ()>: Sync);
|
1501
|
+
// RepeatWith requires `F: FnMut() -> A`
|
1502
|
+
assert_impl!(RepeatWith<fn() -> ()>: Unpin);
|
1503
|
+
// assert_impl!(RepeatWith<PhantomPinned>: Unpin);
|
1504
|
+
|
1505
|
+
assert_impl!(ReuniteError<(), ()>: Send);
|
1506
|
+
assert_not_impl!(ReuniteError<*const (), ()>: Send);
|
1507
|
+
assert_not_impl!(ReuniteError<(), *const ()>: Send);
|
1508
|
+
assert_impl!(ReuniteError<(), ()>: Sync);
|
1509
|
+
assert_not_impl!(ReuniteError<*const (), ()>: Sync);
|
1510
|
+
assert_not_impl!(ReuniteError<(), *const ()>: Sync);
|
1511
|
+
assert_impl!(ReuniteError<PhantomPinned, PhantomPinned>: Unpin);
|
1512
|
+
|
1513
|
+
assert_impl!(Scan<SendStream, (), (), ()>: Send);
|
1514
|
+
assert_not_impl!(Scan<LocalStream<()>, (), (), ()>: Send);
|
1515
|
+
assert_not_impl!(Scan<SendStream<()>, *const (), (), ()>: Send);
|
1516
|
+
assert_not_impl!(Scan<SendStream<()>, (), *const (), ()>: Send);
|
1517
|
+
assert_not_impl!(Scan<SendStream<()>, (), (), *const ()>: Send);
|
1518
|
+
assert_impl!(Scan<SyncStream, (), (), ()>: Sync);
|
1519
|
+
assert_not_impl!(Scan<LocalStream<()>, (), (), ()>: Sync);
|
1520
|
+
assert_not_impl!(Scan<SyncStream<()>, *const (), (), ()>: Sync);
|
1521
|
+
assert_not_impl!(Scan<SyncStream<()>, (), *const (), ()>: Sync);
|
1522
|
+
assert_not_impl!(Scan<SyncStream<()>, (), (), *const ()>: Sync);
|
1523
|
+
assert_impl!(Scan<UnpinStream, PhantomPinned, (), PhantomPinned>: Unpin);
|
1524
|
+
assert_not_impl!(Scan<PinnedStream, (), (), ()>: Unpin);
|
1525
|
+
assert_not_impl!(Scan<UnpinStream, (), PhantomPinned, ()>: Unpin);
|
1526
|
+
|
1527
|
+
assert_impl!(Select<(), ()>: Send);
|
1528
|
+
assert_not_impl!(Select<*const (), ()>: Send);
|
1529
|
+
assert_not_impl!(Select<(), *const ()>: Send);
|
1530
|
+
assert_impl!(Select<(), ()>: Sync);
|
1531
|
+
assert_not_impl!(Select<*const (), ()>: Sync);
|
1532
|
+
assert_not_impl!(Select<(), *const ()>: Sync);
|
1533
|
+
assert_impl!(Select<(), ()>: Unpin);
|
1534
|
+
assert_not_impl!(Select<PhantomPinned, ()>: Unpin);
|
1535
|
+
assert_not_impl!(Select<(), PhantomPinned>: Unpin);
|
1536
|
+
|
1537
|
+
assert_impl!(SelectAll<()>: Send);
|
1538
|
+
assert_not_impl!(SelectAll<*const ()>: Send);
|
1539
|
+
assert_impl!(SelectAll<()>: Sync);
|
1540
|
+
assert_not_impl!(SelectAll<*const ()>: Sync);
|
1541
|
+
assert_impl!(SelectAll<PhantomPinned>: Unpin);
|
1542
|
+
|
1543
|
+
assert_impl!(SelectNextSome<'_, ()>: Send);
|
1544
|
+
assert_not_impl!(SelectNextSome<'_, *const ()>: Send);
|
1545
|
+
assert_impl!(SelectNextSome<'_, ()>: Sync);
|
1546
|
+
assert_not_impl!(SelectNextSome<'_, *const ()>: Sync);
|
1547
|
+
assert_impl!(SelectNextSome<'_, PhantomPinned>: Unpin);
|
1548
|
+
|
1549
|
+
assert_impl!(Skip<()>: Send);
|
1550
|
+
assert_not_impl!(Skip<*const ()>: Send);
|
1551
|
+
assert_impl!(Skip<()>: Sync);
|
1552
|
+
assert_not_impl!(Skip<*const ()>: Sync);
|
1553
|
+
assert_impl!(Skip<()>: Unpin);
|
1554
|
+
assert_not_impl!(Skip<PhantomPinned>: Unpin);
|
1555
|
+
|
1556
|
+
assert_impl!(SkipWhile<SendStream<()>, (), ()>: Send);
|
1557
|
+
assert_not_impl!(SkipWhile<LocalStream<()>, (), ()>: Send);
|
1558
|
+
assert_not_impl!(SkipWhile<SendStream, (), ()>: Send);
|
1559
|
+
assert_not_impl!(SkipWhile<SendStream<()>, *const (), ()>: Send);
|
1560
|
+
assert_not_impl!(SkipWhile<SendStream<()>, (), *const ()>: Send);
|
1561
|
+
assert_impl!(SkipWhile<SyncStream<()>, (), ()>: Sync);
|
1562
|
+
assert_not_impl!(SkipWhile<LocalStream<()>, (), ()>: Sync);
|
1563
|
+
assert_not_impl!(SkipWhile<SyncStream, (), ()>: Sync);
|
1564
|
+
assert_not_impl!(SkipWhile<SyncStream<()>, *const (), ()>: Sync);
|
1565
|
+
assert_not_impl!(SkipWhile<SyncStream<()>, (), *const ()>: Sync);
|
1566
|
+
assert_impl!(SkipWhile<UnpinStream, (), PhantomPinned>: Unpin);
|
1567
|
+
assert_not_impl!(SkipWhile<PinnedStream, (), ()>: Unpin);
|
1568
|
+
assert_not_impl!(SkipWhile<UnpinStream, PhantomPinned, ()>: Unpin);
|
1569
|
+
|
1570
|
+
assert_impl!(SplitSink<(), ()>: Send);
|
1571
|
+
assert_not_impl!(SplitSink<*const (), ()>: Send);
|
1572
|
+
assert_not_impl!(SplitSink<(), *const ()>: Send);
|
1573
|
+
assert_impl!(SplitSink<(), ()>: Sync);
|
1574
|
+
assert_not_impl!(SplitSink<*const (), ()>: Sync);
|
1575
|
+
assert_not_impl!(SplitSink<(), *const ()>: Sync);
|
1576
|
+
assert_impl!(SplitSink<PhantomPinned, PhantomPinned>: Unpin);
|
1577
|
+
|
1578
|
+
assert_impl!(SplitStream<()>: Send);
|
1579
|
+
assert_not_impl!(SplitStream<*const ()>: Send);
|
1580
|
+
assert_impl!(SplitStream<()>: Sync);
|
1581
|
+
assert_not_impl!(SplitStream<*const ()>: Sync);
|
1582
|
+
assert_impl!(SplitStream<PhantomPinned>: Unpin);
|
1583
|
+
|
1584
|
+
assert_impl!(StreamFuture<()>: Send);
|
1585
|
+
assert_not_impl!(StreamFuture<*const ()>: Send);
|
1586
|
+
assert_impl!(StreamFuture<()>: Sync);
|
1587
|
+
assert_not_impl!(StreamFuture<*const ()>: Sync);
|
1588
|
+
assert_impl!(StreamFuture<()>: Unpin);
|
1589
|
+
assert_not_impl!(StreamFuture<PhantomPinned>: Unpin);
|
1590
|
+
|
1591
|
+
assert_impl!(Take<()>: Send);
|
1592
|
+
assert_not_impl!(Take<*const ()>: Send);
|
1593
|
+
assert_impl!(Take<()>: Sync);
|
1594
|
+
assert_not_impl!(Take<*const ()>: Sync);
|
1595
|
+
assert_impl!(Take<()>: Unpin);
|
1596
|
+
assert_not_impl!(Take<PhantomPinned>: Unpin);
|
1597
|
+
|
1598
|
+
assert_impl!(TakeUntil<SendStream, SendFuture<()>>: Send);
|
1599
|
+
assert_not_impl!(TakeUntil<SendStream, SendFuture>: Send);
|
1600
|
+
assert_not_impl!(TakeUntil<SendStream, LocalFuture<()>>: Send);
|
1601
|
+
assert_not_impl!(TakeUntil<LocalStream, SendFuture<()>>: Send);
|
1602
|
+
assert_impl!(TakeUntil<SyncStream, SyncFuture<()>>: Sync);
|
1603
|
+
assert_not_impl!(TakeUntil<SyncStream, SyncFuture>: Sync);
|
1604
|
+
assert_not_impl!(TakeUntil<SyncStream, LocalFuture<()>>: Sync);
|
1605
|
+
assert_not_impl!(TakeUntil<LocalStream, SyncFuture<()>>: Sync);
|
1606
|
+
assert_impl!(TakeUntil<UnpinStream, UnpinFuture>: Unpin);
|
1607
|
+
assert_not_impl!(TakeUntil<PinnedStream, UnpinFuture>: Unpin);
|
1608
|
+
assert_not_impl!(TakeUntil<UnpinStream, PinnedFuture>: Unpin);
|
1609
|
+
|
1610
|
+
assert_impl!(TakeWhile<SendStream<()>, (), ()>: Send);
|
1611
|
+
assert_not_impl!(TakeWhile<LocalStream<()>, (), ()>: Send);
|
1612
|
+
assert_not_impl!(TakeWhile<SendStream, (), ()>: Send);
|
1613
|
+
assert_not_impl!(TakeWhile<SendStream<()>, *const (), ()>: Send);
|
1614
|
+
assert_not_impl!(TakeWhile<SendStream<()>, (), *const ()>: Send);
|
1615
|
+
assert_impl!(TakeWhile<SyncStream<()>, (), ()>: Sync);
|
1616
|
+
assert_not_impl!(TakeWhile<LocalStream<()>, (), ()>: Sync);
|
1617
|
+
assert_not_impl!(TakeWhile<SyncStream, (), ()>: Sync);
|
1618
|
+
assert_not_impl!(TakeWhile<SyncStream<()>, *const (), ()>: Sync);
|
1619
|
+
assert_not_impl!(TakeWhile<SyncStream<()>, (), *const ()>: Sync);
|
1620
|
+
assert_impl!(TakeWhile<UnpinStream, (), PhantomPinned>: Unpin);
|
1621
|
+
assert_not_impl!(TakeWhile<PinnedStream, (), ()>: Unpin);
|
1622
|
+
assert_not_impl!(TakeWhile<UnpinStream, PhantomPinned, ()>: Unpin);
|
1623
|
+
|
1624
|
+
assert_impl!(Then<SendStream, (), ()>: Send);
|
1625
|
+
assert_not_impl!(Then<LocalStream<()>, (), ()>: Send);
|
1626
|
+
assert_not_impl!(Then<SendStream<()>, *const (), ()>: Send);
|
1627
|
+
assert_not_impl!(Then<SendStream<()>, (), *const ()>: Send);
|
1628
|
+
assert_impl!(Then<SyncStream, (), ()>: Sync);
|
1629
|
+
assert_not_impl!(Then<LocalStream<()>, (), ()>: Sync);
|
1630
|
+
assert_not_impl!(Then<SyncStream<()>, *const (), ()>: Sync);
|
1631
|
+
assert_not_impl!(Then<SyncStream<()>, (), *const ()>: Sync);
|
1632
|
+
assert_impl!(Then<UnpinStream, (), PhantomPinned>: Unpin);
|
1633
|
+
assert_not_impl!(Then<PinnedStream, (), ()>: Unpin);
|
1634
|
+
assert_not_impl!(Then<UnpinStream, PhantomPinned, ()>: Unpin);
|
1635
|
+
|
1636
|
+
assert_impl!(TryBufferUnordered<SendTryStream<()>>: Send);
|
1637
|
+
assert_not_impl!(TryBufferUnordered<SendTryStream>: Send);
|
1638
|
+
assert_not_impl!(TryBufferUnordered<LocalTryStream>: Send);
|
1639
|
+
assert_impl!(TryBufferUnordered<SyncTryStream<()>>: Sync);
|
1640
|
+
assert_not_impl!(TryBufferUnordered<SyncTryStream>: Sync);
|
1641
|
+
assert_not_impl!(TryBufferUnordered<LocalTryStream>: Sync);
|
1642
|
+
assert_impl!(TryBufferUnordered<UnpinTryStream>: Unpin);
|
1643
|
+
assert_not_impl!(TryBufferUnordered<PinnedTryStream>: Unpin);
|
1644
|
+
|
1645
|
+
assert_impl!(TryBuffered<SendTryStream<SendTryFuture<(), ()>>>: Send);
|
1646
|
+
assert_not_impl!(TryBuffered<SendTryStream<SendTryFuture<*const (), ()>>>: Send);
|
1647
|
+
assert_not_impl!(TryBuffered<SendTryStream<SendTryFuture<(), *const ()>>>: Send);
|
1648
|
+
assert_not_impl!(TryBuffered<SendTryStream<LocalTryFuture<(), ()>>>: Send);
|
1649
|
+
assert_not_impl!(TryBuffered<LocalTryStream<SendTryFuture<(), ()>>>: Send);
|
1650
|
+
assert_impl!(TryBuffered<SyncTryStream<SyncTryFuture<(), ()>>>: Sync);
|
1651
|
+
assert_not_impl!(TryBuffered<SyncTryStream<SyncTryFuture<*const (), ()>>>: Sync);
|
1652
|
+
assert_not_impl!(TryBuffered<SyncTryStream<SyncTryFuture<(), *const ()>>>: Sync);
|
1653
|
+
assert_not_impl!(TryBuffered<SyncTryStream<LocalTryFuture<(), ()>>>: Sync);
|
1654
|
+
assert_not_impl!(TryBuffered<LocalTryStream<SyncTryFuture<(), ()>>>: Sync);
|
1655
|
+
assert_impl!(TryBuffered<UnpinTryStream<PinnedTryFuture>>: Unpin);
|
1656
|
+
assert_not_impl!(TryBuffered<PinnedTryStream<UnpinTryFuture>>: Unpin);
|
1657
|
+
|
1658
|
+
assert_impl!(TryCollect<(), ()>: Send);
|
1659
|
+
assert_not_impl!(TryCollect<*const (), ()>: Send);
|
1660
|
+
assert_not_impl!(TryCollect<(), *const ()>: Send);
|
1661
|
+
assert_impl!(TryCollect<(), ()>: Sync);
|
1662
|
+
assert_not_impl!(TryCollect<*const (), ()>: Sync);
|
1663
|
+
assert_not_impl!(TryCollect<(), *const ()>: Sync);
|
1664
|
+
assert_impl!(TryCollect<(), PhantomPinned>: Unpin);
|
1665
|
+
assert_not_impl!(TryCollect<PhantomPinned, ()>: Unpin);
|
1666
|
+
|
1667
|
+
assert_impl!(TryConcat<SendTryStream<()>>: Send);
|
1668
|
+
assert_not_impl!(TryConcat<SendTryStream>: Send);
|
1669
|
+
assert_not_impl!(TryConcat<LocalTryStream>: Send);
|
1670
|
+
assert_impl!(TryConcat<SyncTryStream<()>>: Sync);
|
1671
|
+
assert_not_impl!(TryConcat<SyncTryStream>: Sync);
|
1672
|
+
assert_not_impl!(TryConcat<LocalTryStream>: Sync);
|
1673
|
+
assert_impl!(TryConcat<UnpinTryStream>: Unpin);
|
1674
|
+
assert_not_impl!(TryConcat<PinnedTryStream>: Unpin);
|
1675
|
+
|
1676
|
+
assert_impl!(TryFilter<SendTryStream<()>, (), ()>: Send);
|
1677
|
+
assert_not_impl!(TryFilter<LocalTryStream<()>, (), ()>: Send);
|
1678
|
+
assert_not_impl!(TryFilter<SendTryStream, (), ()>: Send);
|
1679
|
+
assert_not_impl!(TryFilter<SendTryStream<()>, *const (), ()>: Send);
|
1680
|
+
assert_not_impl!(TryFilter<SendTryStream<()>, (), *const ()>: Send);
|
1681
|
+
assert_impl!(TryFilter<SyncTryStream<()>, (), ()>: Sync);
|
1682
|
+
assert_not_impl!(TryFilter<LocalTryStream<()>, (), ()>: Sync);
|
1683
|
+
assert_not_impl!(TryFilter<SyncTryStream, (), ()>: Sync);
|
1684
|
+
assert_not_impl!(TryFilter<SyncTryStream<()>, *const (), ()>: Sync);
|
1685
|
+
assert_not_impl!(TryFilter<SyncTryStream<()>, (), *const ()>: Sync);
|
1686
|
+
assert_impl!(TryFilter<UnpinTryStream, (), PhantomPinned>: Unpin);
|
1687
|
+
assert_not_impl!(TryFilter<PinnedTryStream, (), ()>: Unpin);
|
1688
|
+
assert_not_impl!(TryFilter<UnpinTryStream, PhantomPinned, ()>: Unpin);
|
1689
|
+
|
1690
|
+
assert_impl!(TryFilterMap<(), (), ()>: Send);
|
1691
|
+
assert_not_impl!(TryFilterMap<*const (), (), ()>: Send);
|
1692
|
+
assert_not_impl!(TryFilterMap<(), *const (), ()>: Send);
|
1693
|
+
assert_not_impl!(TryFilterMap<(), (), *const ()>: Send);
|
1694
|
+
assert_impl!(TryFilterMap<(), (), ()>: Sync);
|
1695
|
+
assert_not_impl!(TryFilterMap<*const (), (), ()>: Sync);
|
1696
|
+
assert_not_impl!(TryFilterMap<(), *const (), ()>: Sync);
|
1697
|
+
assert_not_impl!(TryFilterMap<(), (), *const ()>: Sync);
|
1698
|
+
assert_impl!(TryFilterMap<(), (), PhantomPinned>: Unpin);
|
1699
|
+
assert_not_impl!(TryFilterMap<PhantomPinned, (), ()>: Unpin);
|
1700
|
+
assert_not_impl!(TryFilterMap<(), PhantomPinned, ()>: Unpin);
|
1701
|
+
|
1702
|
+
assert_impl!(TryFlatten<SendTryStream<()>>: Send);
|
1703
|
+
assert_not_impl!(TryFlatten<SendTryStream>: Send);
|
1704
|
+
assert_not_impl!(TryFlatten<SendTryStream>: Send);
|
1705
|
+
assert_impl!(TryFlatten<SyncTryStream<()>>: Sync);
|
1706
|
+
assert_not_impl!(TryFlatten<LocalTryStream<()>>: Sync);
|
1707
|
+
assert_not_impl!(TryFlatten<LocalTryStream<()>>: Sync);
|
1708
|
+
assert_impl!(TryFlatten<UnpinTryStream<()>>: Unpin);
|
1709
|
+
assert_not_impl!(TryFlatten<UnpinTryStream>: Unpin);
|
1710
|
+
assert_not_impl!(TryFlatten<PinnedTryStream>: Unpin);
|
1711
|
+
|
1712
|
+
assert_impl!(TryFold<(), (), (), ()>: Send);
|
1713
|
+
assert_not_impl!(TryFold<*const (), (), (), ()>: Send);
|
1714
|
+
assert_not_impl!(TryFold<(), *const (), (), ()>: Send);
|
1715
|
+
assert_not_impl!(TryFold<(), (), *const (), ()>: Send);
|
1716
|
+
assert_not_impl!(TryFold<(), (), (), *const ()>: Send);
|
1717
|
+
assert_impl!(TryFold<(), (), (), ()>: Sync);
|
1718
|
+
assert_not_impl!(TryFold<*const (), (), (), ()>: Sync);
|
1719
|
+
assert_not_impl!(TryFold<(), *const (), (), ()>: Sync);
|
1720
|
+
assert_not_impl!(TryFold<(), (), *const (), ()>: Sync);
|
1721
|
+
assert_not_impl!(TryFold<(), (), (), *const ()>: Sync);
|
1722
|
+
assert_impl!(TryFold<(), (), PhantomPinned, PhantomPinned>: Unpin);
|
1723
|
+
assert_not_impl!(TryFold<PhantomPinned, (), (), ()>: Unpin);
|
1724
|
+
assert_not_impl!(TryFold<(), PhantomPinned, (), ()>: Unpin);
|
1725
|
+
|
1726
|
+
assert_impl!(TryForEach<(), (), ()>: Send);
|
1727
|
+
assert_not_impl!(TryForEach<*const (), (), ()>: Send);
|
1728
|
+
assert_not_impl!(TryForEach<(), *const (), ()>: Send);
|
1729
|
+
assert_not_impl!(TryForEach<(), (), *const ()>: Send);
|
1730
|
+
assert_impl!(TryForEach<(), (), ()>: Sync);
|
1731
|
+
assert_not_impl!(TryForEach<*const (), (), ()>: Sync);
|
1732
|
+
assert_not_impl!(TryForEach<(), *const (), ()>: Sync);
|
1733
|
+
assert_not_impl!(TryForEach<(), (), *const ()>: Sync);
|
1734
|
+
assert_impl!(TryForEach<(), (), PhantomPinned>: Unpin);
|
1735
|
+
assert_not_impl!(TryForEach<PhantomPinned, (), ()>: Unpin);
|
1736
|
+
assert_not_impl!(TryForEach<(), PhantomPinned, ()>: Unpin);
|
1737
|
+
|
1738
|
+
assert_impl!(TryForEachConcurrent<(), (), ()>: Send);
|
1739
|
+
assert_not_impl!(TryForEachConcurrent<*const (), (), ()>: Send);
|
1740
|
+
assert_not_impl!(TryForEachConcurrent<(), *const (), ()>: Send);
|
1741
|
+
assert_not_impl!(TryForEachConcurrent<(), (), *const ()>: Send);
|
1742
|
+
assert_impl!(TryForEachConcurrent<(), (), ()>: Sync);
|
1743
|
+
assert_not_impl!(TryForEachConcurrent<*const (), (), ()>: Sync);
|
1744
|
+
assert_not_impl!(TryForEachConcurrent<(), *const (), ()>: Sync);
|
1745
|
+
assert_not_impl!(TryForEachConcurrent<(), (), *const ()>: Sync);
|
1746
|
+
assert_impl!(TryForEachConcurrent<(), PhantomPinned, PhantomPinned>: Unpin);
|
1747
|
+
assert_not_impl!(TryForEachConcurrent<PhantomPinned, (), ()>: Unpin);
|
1748
|
+
|
1749
|
+
assert_impl!(TryNext<'_, ()>: Send);
|
1750
|
+
assert_not_impl!(TryNext<'_, *const ()>: Send);
|
1751
|
+
assert_impl!(TryNext<'_, ()>: Sync);
|
1752
|
+
assert_not_impl!(TryNext<'_, *const ()>: Sync);
|
1753
|
+
assert_impl!(TryNext<'_, ()>: Unpin);
|
1754
|
+
assert_not_impl!(TryNext<'_, PhantomPinned>: Unpin);
|
1755
|
+
|
1756
|
+
assert_impl!(TrySkipWhile<SendTryStream<()>, (), ()>: Send);
|
1757
|
+
assert_not_impl!(TrySkipWhile<LocalTryStream<()>, (), ()>: Send);
|
1758
|
+
assert_not_impl!(TrySkipWhile<SendTryStream, (), ()>: Send);
|
1759
|
+
assert_not_impl!(TrySkipWhile<SendTryStream<()>, *const (), ()>: Send);
|
1760
|
+
assert_not_impl!(TrySkipWhile<SendTryStream<()>, (), *const ()>: Send);
|
1761
|
+
assert_impl!(TrySkipWhile<SyncTryStream<()>, (), ()>: Sync);
|
1762
|
+
assert_not_impl!(TrySkipWhile<LocalTryStream<()>, (), ()>: Sync);
|
1763
|
+
assert_not_impl!(TrySkipWhile<SyncTryStream, (), ()>: Sync);
|
1764
|
+
assert_not_impl!(TrySkipWhile<SyncTryStream<()>, *const (), ()>: Sync);
|
1765
|
+
assert_not_impl!(TrySkipWhile<SyncTryStream<()>, (), *const ()>: Sync);
|
1766
|
+
assert_impl!(TrySkipWhile<UnpinTryStream, (), PhantomPinned>: Unpin);
|
1767
|
+
assert_not_impl!(TrySkipWhile<PinnedTryStream, (), ()>: Unpin);
|
1768
|
+
assert_not_impl!(TrySkipWhile<UnpinTryStream, PhantomPinned, ()>: Unpin);
|
1769
|
+
|
1770
|
+
assert_impl!(TryTakeWhile<SendTryStream<()>, (), ()>: Send);
|
1771
|
+
assert_not_impl!(TryTakeWhile<LocalTryStream<()>, (), ()>: Send);
|
1772
|
+
assert_not_impl!(TryTakeWhile<SendTryStream, (), ()>: Send);
|
1773
|
+
assert_not_impl!(TryTakeWhile<SendTryStream<()>, *const (), ()>: Send);
|
1774
|
+
assert_not_impl!(TryTakeWhile<SendTryStream<()>, (), *const ()>: Send);
|
1775
|
+
assert_impl!(TryTakeWhile<SyncTryStream<()>, (), ()>: Sync);
|
1776
|
+
assert_not_impl!(TryTakeWhile<LocalTryStream<()>, (), ()>: Sync);
|
1777
|
+
assert_not_impl!(TryTakeWhile<SyncTryStream, (), ()>: Sync);
|
1778
|
+
assert_not_impl!(TryTakeWhile<SyncTryStream<()>, *const (), ()>: Sync);
|
1779
|
+
assert_not_impl!(TryTakeWhile<SyncTryStream<()>, (), *const ()>: Sync);
|
1780
|
+
assert_impl!(TryTakeWhile<UnpinTryStream, (), PhantomPinned>: Unpin);
|
1781
|
+
assert_not_impl!(TryTakeWhile<PinnedTryStream, (), ()>: Unpin);
|
1782
|
+
assert_not_impl!(TryTakeWhile<UnpinTryStream, PhantomPinned, ()>: Unpin);
|
1783
|
+
|
1784
|
+
assert_impl!(TryUnfold<(), (), ()>: Send);
|
1785
|
+
assert_not_impl!(TryUnfold<*const (), (), ()>: Send);
|
1786
|
+
assert_not_impl!(TryUnfold<(), *const (), ()>: Send);
|
1787
|
+
assert_not_impl!(TryUnfold<(), (), *const ()>: Send);
|
1788
|
+
assert_impl!(TryUnfold<(), (), ()>: Sync);
|
1789
|
+
assert_not_impl!(TryUnfold<*const (), (), ()>: Sync);
|
1790
|
+
assert_not_impl!(TryUnfold<(), *const (), ()>: Sync);
|
1791
|
+
assert_not_impl!(TryUnfold<(), (), *const ()>: Sync);
|
1792
|
+
assert_impl!(TryUnfold<PhantomPinned, PhantomPinned, ()>: Unpin);
|
1793
|
+
assert_not_impl!(TryUnfold<(), (), PhantomPinned>: Unpin);
|
1794
|
+
|
1795
|
+
assert_impl!(Unfold<(), (), ()>: Send);
|
1796
|
+
assert_not_impl!(Unfold<*const (), (), ()>: Send);
|
1797
|
+
assert_not_impl!(Unfold<(), *const (), ()>: Send);
|
1798
|
+
assert_not_impl!(Unfold<(), (), *const ()>: Send);
|
1799
|
+
assert_impl!(Unfold<(), (), ()>: Sync);
|
1800
|
+
assert_not_impl!(Unfold<*const (), (), ()>: Sync);
|
1801
|
+
assert_not_impl!(Unfold<(), *const (), ()>: Sync);
|
1802
|
+
assert_not_impl!(Unfold<(), (), *const ()>: Sync);
|
1803
|
+
assert_impl!(Unfold<PhantomPinned, PhantomPinned, ()>: Unpin);
|
1804
|
+
assert_not_impl!(Unfold<(), (), PhantomPinned>: Unpin);
|
1805
|
+
|
1806
|
+
assert_impl!(Unzip<(), (), ()>: Send);
|
1807
|
+
assert_not_impl!(Unzip<*const (), (), ()>: Send);
|
1808
|
+
assert_not_impl!(Unzip<(), *const (), ()>: Send);
|
1809
|
+
assert_not_impl!(Unzip<(), (), *const ()>: Send);
|
1810
|
+
assert_impl!(Unzip<(), (), ()>: Sync);
|
1811
|
+
assert_not_impl!(Unzip<*const (), (), ()>: Sync);
|
1812
|
+
assert_not_impl!(Unzip<(), *const (), ()>: Sync);
|
1813
|
+
assert_not_impl!(Unzip<(), (), *const ()>: Sync);
|
1814
|
+
assert_impl!(Unzip<(), PhantomPinned, PhantomPinned>: Unpin);
|
1815
|
+
assert_not_impl!(Unzip<PhantomPinned, (), ()>: Unpin);
|
1816
|
+
|
1817
|
+
assert_impl!(Zip<SendStream<()>, SendStream<()>>: Send);
|
1818
|
+
assert_not_impl!(Zip<SendStream, SendStream<()>>: Send);
|
1819
|
+
assert_not_impl!(Zip<SendStream<()>, SendStream>: Send);
|
1820
|
+
assert_not_impl!(Zip<LocalStream, SendStream<()>>: Send);
|
1821
|
+
assert_not_impl!(Zip<SendStream<()>, LocalStream>: Send);
|
1822
|
+
assert_impl!(Zip<SyncStream<()>, SyncStream<()>>: Sync);
|
1823
|
+
assert_not_impl!(Zip<SyncStream, SyncStream<()>>: Sync);
|
1824
|
+
assert_not_impl!(Zip<SyncStream<()>, SyncStream>: Sync);
|
1825
|
+
assert_not_impl!(Zip<LocalStream, SyncStream<()>>: Sync);
|
1826
|
+
assert_not_impl!(Zip<SyncStream<()>, LocalStream>: Sync);
|
1827
|
+
assert_impl!(Zip<UnpinStream, UnpinStream>: Unpin);
|
1828
|
+
assert_not_impl!(Zip<UnpinStream, PinnedStream>: Unpin);
|
1829
|
+
assert_not_impl!(Zip<PinnedStream, UnpinStream>: Unpin);
|
1830
|
+
|
1831
|
+
assert_impl!(futures_unordered::Iter<()>: Send);
|
1832
|
+
assert_not_impl!(futures_unordered::Iter<*const ()>: Send);
|
1833
|
+
assert_impl!(futures_unordered::Iter<()>: Sync);
|
1834
|
+
assert_not_impl!(futures_unordered::Iter<*const ()>: Sync);
|
1835
|
+
assert_impl!(futures_unordered::Iter<()>: Unpin);
|
1836
|
+
// The definition of futures_unordered::Iter has `Fut: Unpin` bounds.
|
1837
|
+
// assert_not_impl!(futures_unordered::Iter<PhantomPinned>: Unpin);
|
1838
|
+
|
1839
|
+
assert_impl!(futures_unordered::IterMut<()>: Send);
|
1840
|
+
assert_not_impl!(futures_unordered::IterMut<*const ()>: Send);
|
1841
|
+
assert_impl!(futures_unordered::IterMut<()>: Sync);
|
1842
|
+
assert_not_impl!(futures_unordered::IterMut<*const ()>: Sync);
|
1843
|
+
assert_impl!(futures_unordered::IterMut<()>: Unpin);
|
1844
|
+
// The definition of futures_unordered::IterMut has `Fut: Unpin` bounds.
|
1845
|
+
// assert_not_impl!(futures_unordered::IterMut<PhantomPinned>: Unpin);
|
1846
|
+
|
1847
|
+
assert_impl!(futures_unordered::IterPinMut<()>: Send);
|
1848
|
+
assert_not_impl!(futures_unordered::IterPinMut<*const ()>: Send);
|
1849
|
+
assert_impl!(futures_unordered::IterPinMut<()>: Sync);
|
1850
|
+
assert_not_impl!(futures_unordered::IterPinMut<*const ()>: Sync);
|
1851
|
+
assert_impl!(futures_unordered::IterPinMut<PhantomPinned>: Unpin);
|
1852
|
+
|
1853
|
+
assert_impl!(futures_unordered::IterPinRef<()>: Send);
|
1854
|
+
assert_not_impl!(futures_unordered::IterPinRef<*const ()>: Send);
|
1855
|
+
assert_impl!(futures_unordered::IterPinRef<()>: Sync);
|
1856
|
+
assert_not_impl!(futures_unordered::IterPinRef<*const ()>: Sync);
|
1857
|
+
assert_impl!(futures_unordered::IterPinRef<PhantomPinned>: Unpin);
|
1858
|
+
|
1859
|
+
assert_impl!(futures_unordered::IntoIter<()>: Send);
|
1860
|
+
assert_not_impl!(futures_unordered::IntoIter<*const ()>: Send);
|
1861
|
+
assert_impl!(futures_unordered::IntoIter<()>: Sync);
|
1862
|
+
assert_not_impl!(futures_unordered::IntoIter<*const ()>: Sync);
|
1863
|
+
// The definition of futures_unordered::IntoIter has `Fut: Unpin` bounds.
|
1864
|
+
// assert_not_impl!(futures_unordered::IntoIter<PhantomPinned>: Unpin);
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
/// Assert Send/Sync/Unpin for all public types in `futures::task`.
|
1868
|
+
pub mod task {
|
1869
|
+
use super::*;
|
1870
|
+
use futures::task::*;
|
1871
|
+
|
1872
|
+
assert_impl!(AtomicWaker: Send);
|
1873
|
+
assert_impl!(AtomicWaker: Sync);
|
1874
|
+
assert_impl!(AtomicWaker: Unpin);
|
1875
|
+
|
1876
|
+
assert_impl!(FutureObj<*const ()>: Send);
|
1877
|
+
assert_not_impl!(FutureObj<()>: Sync);
|
1878
|
+
assert_impl!(FutureObj<PhantomPinned>: Unpin);
|
1879
|
+
|
1880
|
+
assert_not_impl!(LocalFutureObj<()>: Send);
|
1881
|
+
assert_not_impl!(LocalFutureObj<()>: Sync);
|
1882
|
+
assert_impl!(LocalFutureObj<PhantomPinned>: Unpin);
|
1883
|
+
|
1884
|
+
assert_impl!(SpawnError: Send);
|
1885
|
+
assert_impl!(SpawnError: Sync);
|
1886
|
+
assert_impl!(SpawnError: Unpin);
|
1887
|
+
|
1888
|
+
assert_impl!(WakerRef<'_>: Send);
|
1889
|
+
assert_impl!(WakerRef<'_>: Sync);
|
1890
|
+
assert_impl!(WakerRef<'_>: Unpin);
|
1891
|
+
}
|