wasmtime 17.0.1 → 18.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +114 -142
- data/ext/Cargo.toml +8 -9
- data/ext/cargo-vendor/cranelift-bforest-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.105.3/Cargo.toml +40 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/Cargo.toml +175 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/build.rs +395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph/domtree.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/egraph.rs +705 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit.rs +4395 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst/emit_tests.rs +5525 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/inst.isle +5215 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/lower.isle +4742 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/isa/x64/mod.rs +233 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/lib.rs +106 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/machinst/reg.rs +562 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/README.md +81 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/extends.isle +91 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/opts/icmp.isle +197 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/prelude_opt.isle +122 -0
- data/ext/cargo-vendor/cranelift-codegen-0.105.3/src/verifier/mod.rs +2033 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.105.3/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.105.3/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.105.3/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.105.3/Cargo.toml +50 -0
- data/ext/cargo-vendor/cranelift-frontend-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.105.3/Cargo.toml +68 -0
- data/ext/cargo-vendor/cranelift-isle-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.105.3/Cargo.toml +46 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-native-0.105.3/src/lib.rs +188 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/Cargo.toml +106 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/code_translator.rs +3681 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/dummy.rs +953 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/environ/spec.rs +953 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/sections_translator.rs +409 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/src/translation_utils.rs +91 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall-simd.wat +7 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/icall.wat +7 -0
- data/ext/cargo-vendor/cranelift-wasm-0.105.3/wasmtests/unreachable_code.wat +77 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.19/Cargo.toml +49 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/Cargo.toml +54 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/src/lib.rs +37 -0
- data/ext/cargo-vendor/rb-sys-0.9.89/src/symbol.rs +31 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/Cargo.toml +62 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/src/bindings.rs +250 -0
- data/ext/cargo-vendor/rb-sys-build-0.9.89/src/rb_config.rs +810 -0
- data/ext/cargo-vendor/tokio-1.36.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.36.0/CHANGELOG.md +3250 -0
- data/ext/cargo-vendor/tokio-1.36.0/Cargo.toml +237 -0
- data/ext/cargo-vendor/tokio-1.36.0/README.md +249 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/doc/os.rs +68 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/fs/open_options/mock_open_options.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/future/mod.rs +32 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/async_fd.rs +1259 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/bsd/poll_aio.rs +197 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/interest.rs +345 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/join.rs +117 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/mod.rs +292 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/poll_evented.rs +277 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/stdio_common.rs +221 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/async_buf_read_ext.rs +351 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_reader.rs +311 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/buf_writer.rs +310 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/chain.rs +144 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/copy.rs +290 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/empty.rs +150 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/flush.rs +47 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/mod.rs +111 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_exact.rs +69 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/read_line.rs +119 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/repeat.rs +75 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/shutdown.rs +46 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/io/util/sink.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/lib.rs +694 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/loom/std/atomic_u64.rs +19 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/macros/cfg.rs +587 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/macros/try_join.rs +218 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/mod.rs +57 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/listener.rs +451 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/socket.rs +854 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/tcp/stream.rs +1424 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/udp.rs +2046 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/datagram/socket.rs +1593 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/listener.rs +221 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/mod.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/pipe.rs +1442 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/socket.rs +271 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/unix/stream.rs +1062 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/net/windows/named_pipe.rs +2690 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/mod.rs +1678 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/mod.rs +375 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/process/unix/pidfd_reaper.rs +317 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/blocking/pool.rs +603 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/builder.rs +1335 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/context.rs +193 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/handle.rs +632 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/driver.rs +273 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/io/scheduled_io.rs +598 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/park.rs +339 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/current_thread/mod.rs +758 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/park.rs +232 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/queue.rs +608 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread/worker.rs +1234 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/queue.rs +595 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1597 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/core.rs +494 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/harness.rs +517 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/join.rs +370 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/list.rs +338 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/mod.rs +526 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/state.rs +616 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/task/trace/mod.rs +358 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/loom_local.rs +47 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/tests/task_combinations.rs +488 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/entry.rs +646 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/source.rs +39 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/runtime/time/wheel/level.rs +274 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/ctrl_c.rs +62 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/mod.rs +98 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/registry.rs +281 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/unix.rs +530 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/signal/windows.rs +524 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/batch_semaphore.rs +752 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/broadcast.rs +1542 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/bounded.rs +1692 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/error.rs +149 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/mod.rs +124 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mpsc/unbounded.rs +603 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/mutex.rs +1395 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/oneshot.rs +1390 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/rwlock.rs +1119 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/semaphore.rs +977 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/sync/watch.rs +1399 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/join_set.rs +637 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/local.rs +1233 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/task/mod.rs +373 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/idle_notified_set.rs +509 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/rand.rs +95 -0
- data/ext/cargo-vendor/tokio-1.36.0/src/util/sharded_list.rs +149 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_async_fd.rs +836 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy.rs +102 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_copy_bidirectional.rs +165 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_join.rs +83 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_panic.rs +177 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_poll_aio.rs +338 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_repeat.rs +18 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/io_sink.rs +44 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs +21 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/macros_test.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/macros_try_join.rs +185 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_named_pipe.rs +399 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_panic.rs +189 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/net_unix_pipe.rs +534 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/process_change_of_runtime.rs +34 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/process_issue_2174.rs +46 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_basic.rs +458 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_handle.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_panic.rs +78 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/rt_time_start_paused.rs +14 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/signal_panic.rs +30 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_mpsc.rs +1020 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_panic.rs +198 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/sync_watch.rs +334 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_id.rs +302 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_join_set.rs +306 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_local.rs +119 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/task_panic.rs +123 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/tcp_into_split.rs +131 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/time_panic.rs +94 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/time_pause.rs +332 -0
- data/ext/cargo-vendor/tokio-1.36.0/tests/uds_socket.rs +118 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/Cargo.toml +223 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/lib.rs +193 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/clocks.rs +41 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/dir.rs +462 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/file.rs +248 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/mod.rs +140 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/net.rs +400 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/unix.rs +82 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched/windows.rs +221 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/sched.rs +40 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/sync/stdio.rs +197 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/dir.rs +221 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/file.rs +244 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/mod.rs +137 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/net.rs +6 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/unix.rs +96 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched/windows.rs +15 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/sched.rs +35 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/src/tokio/stdio.rs +1 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/async_.rs +289 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/main.rs +21 -0
- data/ext/cargo-vendor/wasi-common-18.0.3/tests/all/sync.rs +275 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/names.rs +149 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/code.rs +3444 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.201.0/src/core/types.rs +673 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/Cargo.toml +43 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/builder.rs +455 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/canonicals.rs +159 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/exports.rs +124 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/imports.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/instances.rs +200 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/code.rs +3430 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/data.rs +185 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/elements.rs +220 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/exports.rs +98 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/globals.rs +101 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/imports.rs +156 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/memories.rs +111 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/names.rs +298 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/producers.rs +180 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tables.rs +116 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/tags.rs +104 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core/types.rs +673 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/core.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/lib.rs +215 -0
- data/ext/cargo-vendor/wasm-encoder-0.41.2/src/raw.rs +30 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.lock +633 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/Cargo.toml +69 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/README.md +28 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/benches/benchmark.rs +349 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/binary_reader.rs +1850 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/lib.rs +766 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/limits.rs +64 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/branch_hinting.rs +59 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/dylink0.rs +109 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/linking.rs +449 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/names.rs +156 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/operators.rs +411 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core/types.rs +1680 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/readers/core.rs +41 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/resources.rs +235 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/component.rs +3238 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core/canonical.rs +233 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/core.rs +1400 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/func.rs +338 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/names.rs +929 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/operators.rs +4074 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator/types.rs +4449 -0
- data/ext/cargo-vendor/wasmparser-0.121.2/src/validator.rs +1619 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/Cargo.toml +45 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/src/lib.rs +3139 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/src/operator.rs +1110 -0
- data/ext/cargo-vendor/wasmprinter-0.2.80/tests/all.rs +278 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/Cargo.toml +249 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/compile.rs +835 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/config.rs +2513 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/engine/serialization.rs +778 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/engine.rs +728 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/lib.rs +444 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/jitdump.rs +66 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/perfmap.rs +47 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent/vtune.rs +80 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/profiling_agent.rs +105 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code.rs +102 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/code_memory.rs +335 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/component.rs +458 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func/host.rs +456 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/func.rs +721 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/instance.rs +815 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/linker.rs +600 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/resource_table.rs +350 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/types.rs +928 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/component/values.rs +1274 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/debug.rs +165 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func/typed.rs +638 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/func.rs +2391 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instance.rs +985 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/instantiate.rs +433 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/linker.rs +1479 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/memory.rs +998 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module/registry.rs +360 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/module.rs +1335 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/profiling.rs +218 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/store.rs +2389 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/func.rs +135 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/memory.rs +269 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline/table.rs +20 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trampoline.rs +77 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/trap.rs +644 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/type_registry.rs +236 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types/matching.rs +312 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime/types.rs +581 -0
- data/ext/cargo-vendor/wasmtime-18.0.3/src/runtime.rs +109 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-18.0.3/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-18.0.3/Cargo.toml +81 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/build.rs +5 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/src/bindgen.rs +396 -0
- data/ext/cargo-vendor/wasmtime-component-macro-18.0.3/tests/codegen/wat.wit +10 -0
- data/ext/cargo-vendor/wasmtime-component-util-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-18.0.3/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/Cargo.toml +113 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/builder.rs +127 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler/component.rs +960 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/compiler.rs +1317 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/debug/transform/simulate.rs +411 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/func_environ.rs +2756 -0
- data/ext/cargo-vendor/wasmtime-cranelift-18.0.3/src/lib.rs +186 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/Cargo.toml +71 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-18.0.3/src/isa_builder.rs +104 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.lock +761 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/Cargo.toml +140 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/artifacts.rs +45 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/dfg.rs +690 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/info.rs +594 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate/inline.rs +1334 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/translate.rs +953 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component/types.rs +1933 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/component.rs +97 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/lib.rs +66 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module.rs +1075 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_artifacts.rs +378 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_environ.rs +894 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/module_types.rs +120 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/tunables.rs +140 -0
- data/ext/cargo-vendor/wasmtime-environ-18.0.3/src/vmoffsets.rs +919 -0
- data/ext/cargo-vendor/wasmtime-fiber-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-18.0.3/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-18.0.3/Cargo.toml +67 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-18.0.3/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/component.rs +855 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling/memory_pool.rs +997 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator/pooling.rs +658 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance/allocator.rs +712 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/instance.rs +1485 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/lib.rs +264 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/enabled.rs +208 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/mpk/pkru.rs +104 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/sys/unix/signals.rs +402 -0
- data/ext/cargo-vendor/wasmtime-runtime-18.0.3/src/vmcontext.rs +1202 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/Cargo.toml +36 -0
- data/ext/cargo-vendor/wasmtime-types-18.0.3/src/lib.rs +509 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-18.0.3/Cargo.toml +32 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/Cargo.toml +254 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/lib.rs +103 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ctx.rs +337 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/error.rs +111 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/filesystem.rs +369 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/clocks.rs +103 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/filesystem.rs +1081 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/instance_network.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/io.rs +366 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/network.rs +625 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/random.rs +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp.rs +605 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/tcp_create_socket.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp.rs +530 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/host/udp_create_socket.rs +15 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/ip_name_lookup.rs +125 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/pipe.rs +826 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/poll.rs +175 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview0.rs +870 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/preview1.rs +2361 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/random.rs +58 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/stdio.rs +259 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/src/preview2/write_stream.rs +203 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/api.rs +211 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/tests/all/main.rs +106 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/poll.wit +41 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/io/streams.wit +262 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/tcp.wit +353 -0
- data/ext/cargo-vendor/wasmtime-wasi-18.0.3/wit/deps/sockets/udp.wit +266 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/Cargo.toml +77 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/builder.rs +65 -0
- data/ext/cargo-vendor/wasmtime-winch-18.0.3/src/compiler.rs +283 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/Cargo.toml +41 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-18.0.3/src/lib.rs +2095 -0
- data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wmemcheck-18.0.3/Cargo.toml +29 -0
- data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +59 -0
- data/ext/cargo-vendor/wast-201.0.0/src/component/component.rs +321 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +1365 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/custom.rs +393 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +1993 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +281 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/module.rs +218 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +233 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +763 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +289 -0
- data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +861 -0
- data/ext/cargo-vendor/wast-201.0.0/src/lexer.rs +1442 -0
- data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +542 -0
- data/ext/cargo-vendor/wast-201.0.0/src/names.rs +89 -0
- data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +1374 -0
- data/ext/cargo-vendor/wast-201.0.0/src/token.rs +718 -0
- data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +63 -0
- data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +33 -0
- data/ext/cargo-vendor/wat-1.201.0/src/lib.rs +401 -0
- data/ext/cargo-vendor/wiggle-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-18.0.3/Cargo.toml +122 -0
- data/ext/cargo-vendor/wiggle-18.0.3/src/lib.rs +1199 -0
- data/ext/cargo-vendor/wiggle-generate-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-18.0.3/Cargo.toml +65 -0
- data/ext/cargo-vendor/wiggle-macro-18.0.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-18.0.3/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/Cargo.toml +77 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/local.rs +81 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/abi/mod.rs +645 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/builtin.rs +268 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/call.rs +361 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/context.rs +530 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/control.rs +972 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/env.rs +257 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/codegen/mod.rs +441 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/frame/mod.rs +221 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/abi.rs +313 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/masm.rs +519 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/aarch64/mod.rs +145 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/mod.rs +232 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/reg.rs +86 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/abi.rs +531 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/asm.rs +1277 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/masm.rs +1168 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/isa/x64/mod.rs +184 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/masm.rs +776 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/stack.rs +439 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/trampoline.rs +733 -0
- data/ext/cargo-vendor/winch-codegen-0.16.3/src/visitor.rs +1848 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/Cargo.toml +71 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/lex.rs +748 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast/resolve.rs +1428 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/ast.rs +1349 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/src/resolve.rs +2104 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/comments.wit.json +49 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap1.wit.json +39 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/import-export-overlap2.wit.json +41 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit +6 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/same-name-import-export.wit.json +47 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit +60 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/types.wit.json +774 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/union-fuzz-2.wit.json +72 -0
- data/ext/cargo-vendor/wit-parser-0.13.2/tests/ui/wasi.wit.json +539 -0
- data/ext/src/ruby_api/config/tracked_memory_creator.rs +1 -1
- data/ext/src/ruby_api/store.rs +1 -1
- data/ext/src/ruby_api/wasi_ctx.rs +1 -1
- data/ext/src/ruby_api/wasi_ctx_builder.rs +2 -2
- data/lib/wasmtime/version.rb +1 -1
- metadata +2127 -2071
- data/ext/cargo-vendor/cranelift-bforest-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.104.1/Cargo.toml +0 -40
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/Cargo.toml +0 -175
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/build.rs +0 -392
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/egraph/domtree.rs +0 -69
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/egraph.rs +0 -704
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst/emit.rs +0 -4410
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst/emit_tests.rs +0 -5525
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/inst.isle +0 -5202
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/lower.isle +0 -4744
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/isa/x64/mod.rs +0 -223
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/lib.rs +0 -106
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/machinst/reg.rs +0 -561
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/README.md +0 -87
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/extends.isle +0 -124
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/opts/icmp.isle +0 -197
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/prelude_opt.isle +0 -134
- data/ext/cargo-vendor/cranelift-codegen-0.104.1/src/verifier/mod.rs +0 -2041
- data/ext/cargo-vendor/cranelift-codegen-meta-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.104.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-codegen-shared-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.104.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.104.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.104.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/cranelift-frontend-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.104.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/cranelift-isle-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.104.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/cranelift-native-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.104.1/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-native-0.104.1/src/lib.rs +0 -184
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/Cargo.toml +0 -106
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/code_translator.rs +0 -3646
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/environ/dummy.rs +0 -953
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/environ/spec.rs +0 -952
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/sections_translator.rs +0 -408
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/src/translation_utils.rs +0 -89
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/icall-simd.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/icall.wat +0 -7
- data/ext/cargo-vendor/cranelift-wasm-0.104.1/wasmtests/unreachable_code.wat +0 -77
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.18/Cargo.toml +0 -49
- data/ext/cargo-vendor/rb-sys-0.9.86/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-0.9.86/Cargo.toml +0 -54
- data/ext/cargo-vendor/rb-sys-0.9.86/src/lib.rs +0 -37
- data/ext/cargo-vendor/rb-sys-build-0.9.86/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rb-sys-build-0.9.86/Cargo.toml +0 -62
- data/ext/cargo-vendor/rb-sys-build-0.9.86/src/bindings.rs +0 -250
- data/ext/cargo-vendor/rb-sys-build-0.9.86/src/rb_config.rs +0 -807
- data/ext/cargo-vendor/tokio-1.35.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.35.1/CHANGELOG.md +0 -3191
- data/ext/cargo-vendor/tokio-1.35.1/Cargo.toml +0 -230
- data/ext/cargo-vendor/tokio-1.35.1/README.md +0 -249
- data/ext/cargo-vendor/tokio-1.35.1/external-types.toml +0 -11
- data/ext/cargo-vendor/tokio-1.35.1/src/doc/os.rs +0 -68
- data/ext/cargo-vendor/tokio-1.35.1/src/fs/open_options/mock_open_options.rs +0 -39
- data/ext/cargo-vendor/tokio-1.35.1/src/future/mod.rs +0 -31
- data/ext/cargo-vendor/tokio-1.35.1/src/io/async_fd.rs +0 -1243
- data/ext/cargo-vendor/tokio-1.35.1/src/io/bsd/poll_aio.rs +0 -197
- data/ext/cargo-vendor/tokio-1.35.1/src/io/interest.rs +0 -345
- data/ext/cargo-vendor/tokio-1.35.1/src/io/mod.rs +0 -290
- data/ext/cargo-vendor/tokio-1.35.1/src/io/poll_evented.rs +0 -258
- data/ext/cargo-vendor/tokio-1.35.1/src/io/stdio_common.rs +0 -221
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/async_buf_read_ext.rs +0 -351
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_reader.rs +0 -311
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/buf_writer.rs +0 -310
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/chain.rs +0 -144
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/copy.rs +0 -219
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/empty.rs +0 -102
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/flush.rs +0 -46
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/mod.rs +0 -97
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_exact.rs +0 -69
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/read_line.rs +0 -119
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/repeat.rs +0 -72
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/shutdown.rs +0 -46
- data/ext/cargo-vendor/tokio-1.35.1/src/io/util/sink.rs +0 -87
- data/ext/cargo-vendor/tokio-1.35.1/src/lib.rs +0 -695
- data/ext/cargo-vendor/tokio-1.35.1/src/loom/std/atomic_u64.rs +0 -19
- data/ext/cargo-vendor/tokio-1.35.1/src/macros/cfg.rs +0 -575
- data/ext/cargo-vendor/tokio-1.35.1/src/macros/try_join.rs +0 -218
- data/ext/cargo-vendor/tokio-1.35.1/src/net/mod.rs +0 -56
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/listener.rs +0 -451
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/socket.rs +0 -846
- data/ext/cargo-vendor/tokio-1.35.1/src/net/tcp/stream.rs +0 -1424
- data/ext/cargo-vendor/tokio-1.35.1/src/net/udp.rs +0 -2046
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/datagram/socket.rs +0 -1583
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/listener.rs +0 -216
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/mod.rs +0 -37
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/pipe.rs +0 -1217
- data/ext/cargo-vendor/tokio-1.35.1/src/net/unix/stream.rs +0 -1044
- data/ext/cargo-vendor/tokio-1.35.1/src/net/windows/named_pipe.rs +0 -2690
- data/ext/cargo-vendor/tokio-1.35.1/src/process/mod.rs +0 -1678
- data/ext/cargo-vendor/tokio-1.35.1/src/process/unix/mod.rs +0 -344
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/blocking/pool.rs +0 -603
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/builder.rs +0 -1335
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/context.rs +0 -193
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/handle.rs +0 -632
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/driver.rs +0 -273
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/io/scheduled_io.rs +0 -598
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/park.rs +0 -340
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/current_thread/mod.rs +0 -764
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/park.rs +0 -232
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/queue.rs +0 -608
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/stats.rs +0 -140
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread/worker.rs +0 -1234
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -595
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1597
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/core.rs +0 -494
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/harness.rs +0 -517
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/join.rs +0 -370
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/list.rs +0 -338
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/mod.rs +0 -526
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/state.rs +0 -619
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/task/trace/mod.rs +0 -358
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/loom_local.rs +0 -47
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/tests/task_combinations.rs +0 -488
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/entry.rs +0 -646
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/source.rs +0 -39
- data/ext/cargo-vendor/tokio-1.35.1/src/runtime/time/wheel/level.rs +0 -274
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/ctrl_c.rs +0 -62
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/mod.rs +0 -98
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/registry.rs +0 -283
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/unix.rs +0 -530
- data/ext/cargo-vendor/tokio-1.35.1/src/signal/windows.rs +0 -524
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/batch_semaphore.rs +0 -752
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/broadcast.rs +0 -1515
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/bounded.rs +0 -1399
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/error.rs +0 -149
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/mod.rs +0 -122
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mpsc/unbounded.rs +0 -526
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/mutex.rs +0 -1391
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/oneshot.rs +0 -1390
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/rwlock.rs +0 -1119
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/semaphore.rs +0 -977
- data/ext/cargo-vendor/tokio-1.35.1/src/sync/watch.rs +0 -1388
- data/ext/cargo-vendor/tokio-1.35.1/src/task/join_set.rs +0 -584
- data/ext/cargo-vendor/tokio-1.35.1/src/task/local.rs +0 -1233
- data/ext/cargo-vendor/tokio-1.35.1/src/task/mod.rs +0 -373
- data/ext/cargo-vendor/tokio-1.35.1/src/util/idle_notified_set.rs +0 -481
- data/ext/cargo-vendor/tokio-1.35.1/src/util/rand.rs +0 -95
- data/ext/cargo-vendor/tokio-1.35.1/src/util/sharded_list.rs +0 -149
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_async_fd.rs +0 -836
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy.rs +0 -87
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_copy_bidirectional.rs +0 -140
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_panic.rs +0 -181
- data/ext/cargo-vendor/tokio-1.35.1/tests/io_poll_aio.rs +0 -375
- data/ext/cargo-vendor/tokio-1.35.1/tests/join_handle_panic.rs +0 -21
- data/ext/cargo-vendor/tokio-1.35.1/tests/macros_test.rs +0 -88
- data/ext/cargo-vendor/tokio-1.35.1/tests/macros_try_join.rs +0 -190
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_named_pipe.rs +0 -399
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_panic.rs +0 -192
- data/ext/cargo-vendor/tokio-1.35.1/tests/net_unix_pipe.rs +0 -429
- data/ext/cargo-vendor/tokio-1.35.1/tests/process_issue_2174.rs +0 -45
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_basic.rs +0 -448
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_handle.rs +0 -94
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_panic.rs +0 -81
- data/ext/cargo-vendor/tokio-1.35.1/tests/rt_time_start_paused.rs +0 -14
- data/ext/cargo-vendor/tokio-1.35.1/tests/signal_panic.rs +0 -29
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_mpsc.rs +0 -841
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_panic.rs +0 -209
- data/ext/cargo-vendor/tokio-1.35.1/tests/sync_watch.rs +0 -301
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_id.rs +0 -303
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_join_set.rs +0 -229
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_local.rs +0 -119
- data/ext/cargo-vendor/tokio-1.35.1/tests/task_panic.rs +0 -130
- data/ext/cargo-vendor/tokio-1.35.1/tests/tcp_into_split.rs +0 -131
- data/ext/cargo-vendor/tokio-1.35.1/tests/time_panic.rs +0 -98
- data/ext/cargo-vendor/tokio-1.35.1/tests/time_pause.rs +0 -332
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/Cargo.toml +0 -102
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/README.md +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/clocks.rs +0 -41
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/dir.rs +0 -464
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/file.rs +0 -254
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/lib.rs +0 -161
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/net.rs +0 -402
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched/unix.rs +0 -82
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched/windows.rs +0 -221
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/sched.rs +0 -40
- data/ext/cargo-vendor/wasi-cap-std-sync-17.0.1/src/stdio.rs +0 -197
- data/ext/cargo-vendor/wasi-common-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-17.0.1/Cargo.toml +0 -131
- data/ext/cargo-vendor/wasi-common-17.0.1/src/lib.rs +0 -76
- data/ext/cargo-vendor/wasm-encoder-0.38.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.38.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/component/types.rs +0 -771
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/code.rs +0 -3179
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/names.rs +0 -290
- data/ext/cargo-vendor/wasm-encoder-0.38.1/src/core/types.rs +0 -611
- data/ext/cargo-vendor/wasmparser-0.118.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.lock +0 -649
- data/ext/cargo-vendor/wasmparser-0.118.1/Cargo.toml +0 -60
- data/ext/cargo-vendor/wasmparser-0.118.1/README.md +0 -36
- data/ext/cargo-vendor/wasmparser-0.118.1/benches/benchmark.rs +0 -370
- data/ext/cargo-vendor/wasmparser-0.118.1/src/binary_reader.rs +0 -1706
- data/ext/cargo-vendor/wasmparser-0.118.1/src/lib.rs +0 -726
- data/ext/cargo-vendor/wasmparser-0.118.1/src/limits.rs +0 -58
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/dylink0.rs +0 -132
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/names.rs +0 -153
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/operators.rs +0 -354
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core/types.rs +0 -1520
- data/ext/cargo-vendor/wasmparser-0.118.1/src/readers/core.rs +0 -37
- data/ext/cargo-vendor/wasmparser-0.118.1/src/resources.rs +0 -408
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/component.rs +0 -3211
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core/canonical.rs +0 -233
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/core.rs +0 -1381
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/func.rs +0 -345
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/names.rs +0 -859
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/operators.rs +0 -3515
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator/types.rs +0 -4416
- data/ext/cargo-vendor/wasmparser-0.118.1/src/validator.rs +0 -1606
- data/ext/cargo-vendor/wasmprinter-0.2.75/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmprinter-0.2.75/Cargo.toml +0 -39
- data/ext/cargo-vendor/wasmprinter-0.2.75/src/lib.rs +0 -2969
- data/ext/cargo-vendor/wasmprinter-0.2.75/src/operator.rs +0 -873
- data/ext/cargo-vendor/wasmprinter-0.2.75/tests/all.rs +0 -278
- data/ext/cargo-vendor/wasmtime-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-17.0.1/Cargo.toml +0 -211
- data/ext/cargo-vendor/wasmtime-17.0.1/src/code.rs +0 -103
- data/ext/cargo-vendor/wasmtime-17.0.1/src/compiler.rs +0 -682
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/component.rs +0 -545
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/func/host.rs +0 -456
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/func.rs +0 -720
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/instance.rs +0 -815
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/linker.rs +0 -580
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/resource_table.rs +0 -350
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/types.rs +0 -752
- data/ext/cargo-vendor/wasmtime-17.0.1/src/component/values.rs +0 -1272
- data/ext/cargo-vendor/wasmtime-17.0.1/src/config.rs +0 -2428
- data/ext/cargo-vendor/wasmtime-17.0.1/src/engine/serialization.rs +0 -657
- data/ext/cargo-vendor/wasmtime-17.0.1/src/engine.rs +0 -792
- data/ext/cargo-vendor/wasmtime-17.0.1/src/func/typed.rs +0 -638
- data/ext/cargo-vendor/wasmtime-17.0.1/src/func.rs +0 -2391
- data/ext/cargo-vendor/wasmtime-17.0.1/src/instance.rs +0 -941
- data/ext/cargo-vendor/wasmtime-17.0.1/src/lib.rs +0 -526
- data/ext/cargo-vendor/wasmtime-17.0.1/src/linker.rs +0 -1479
- data/ext/cargo-vendor/wasmtime-17.0.1/src/memory.rs +0 -998
- data/ext/cargo-vendor/wasmtime-17.0.1/src/module/registry.rs +0 -361
- data/ext/cargo-vendor/wasmtime-17.0.1/src/module.rs +0 -1370
- data/ext/cargo-vendor/wasmtime-17.0.1/src/profiling.rs +0 -212
- data/ext/cargo-vendor/wasmtime-17.0.1/src/store.rs +0 -2389
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/func.rs +0 -133
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/memory.rs +0 -269
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline/table.rs +0 -20
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trampoline.rs +0 -77
- data/ext/cargo-vendor/wasmtime-17.0.1/src/trap.rs +0 -643
- data/ext/cargo-vendor/wasmtime-17.0.1/src/types/matching.rs +0 -312
- data/ext/cargo-vendor/wasmtime-17.0.1/src/types.rs +0 -581
- data/ext/cargo-vendor/wasmtime-asm-macros-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-17.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-17.0.1/Cargo.toml +0 -81
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-component-macro-17.0.1/src/bindgen.rs +0 -371
- data/ext/cargo-vendor/wasmtime-component-util-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-17.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/Cargo.toml +0 -112
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/builder.rs +0 -123
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/compiler/component.rs +0 -959
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/compiler.rs +0 -1317
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/debug/transform/simulate.rs +0 -410
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/func_environ.rs +0 -2750
- data/ext/cargo-vendor/wasmtime-cranelift-17.0.1/src/lib.rs +0 -186
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasmtime-cranelift-shared-17.0.1/src/isa_builder.rs +0 -100
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/Cargo.lock +0 -726
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/Cargo.toml +0 -125
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/dfg.rs +0 -678
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/info.rs +0 -583
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/translate/inline.rs +0 -1322
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/translate.rs +0 -951
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component/types.rs +0 -1876
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/component.rs +0 -95
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/lib.rs +0 -59
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module.rs +0 -1075
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module_environ.rs +0 -892
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/module_types.rs +0 -120
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/tunables.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-17.0.1/src/vmoffsets.rs +0 -919
- data/ext/cargo-vendor/wasmtime-fiber-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-17.0.1/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/Cargo.toml +0 -125
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/code_memory.rs +0 -319
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/debug.rs +0 -165
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/instantiate.rs +0 -772
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/lib.rs +0 -21
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/jitdump.rs +0 -66
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/perfmap.rs +0 -47
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling/vtune.rs +0 -80
- data/ext/cargo-vendor/wasmtime-jit-17.0.1/src/profiling.rs +0 -108
- data/ext/cargo-vendor/wasmtime-jit-debug-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-17.0.1/Cargo.toml +0 -67
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-17.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/component.rs +0 -855
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator/pooling/memory_pool.rs +0 -997
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator/pooling.rs +0 -658
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance/allocator.rs +0 -712
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/instance.rs +0 -1479
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/lib.rs +0 -264
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/mpk/enabled.rs +0 -204
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/mpk/pkru.rs +0 -102
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/sys/unix/signals.rs +0 -402
- data/ext/cargo-vendor/wasmtime-runtime-17.0.1/src/vmcontext.rs +0 -1197
- data/ext/cargo-vendor/wasmtime-types-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-17.0.1/Cargo.toml +0 -36
- data/ext/cargo-vendor/wasmtime-types-17.0.1/src/lib.rs +0 -504
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-17.0.1/Cargo.toml +0 -32
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/Cargo.toml +0 -261
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/build.rs +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/lib.rs +0 -137
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/clocks.rs +0 -12
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/ctx.rs +0 -333
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/error.rs +0 -97
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/filesystem.rs +0 -325
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/clocks.rs +0 -103
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/filesystem.rs +0 -1069
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/instance_network.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/io.rs +0 -368
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/network.rs +0 -625
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/random.rs +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/tcp.rs +0 -605
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/tcp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/udp.rs +0 -530
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/host/udp_create_socket.rs +0 -15
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/ip_name_lookup.rs +0 -125
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/pipe.rs +0 -826
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/poll.rs +0 -175
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/preview0.rs +0 -870
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/preview1.rs +0 -2362
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/random.rs +0 -58
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/stdio.rs +0 -259
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/src/preview2/write_stream.rs +0 -203
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/tests/all/api.rs +0 -217
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/tests/all/main.rs +0 -112
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/io/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/io/streams.wit +0 -251
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/sockets/tcp.wit +0 -309
- data/ext/cargo-vendor/wasmtime-wasi-17.0.1/wit/deps/sockets/udp.wit +0 -264
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/src/builder.rs +0 -64
- data/ext/cargo-vendor/wasmtime-winch-17.0.1/src/compiler.rs +0 -243
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/Cargo.toml +0 -41
- data/ext/cargo-vendor/wasmtime-wit-bindgen-17.0.1/src/lib.rs +0 -2097
- data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wmemcheck-17.0.1/Cargo.toml +0 -29
- data/ext/cargo-vendor/wast-69.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-69.0.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/wast-69.0.1/src/component/component.rs +0 -320
- data/ext/cargo-vendor/wast-69.0.1/src/core/binary.rs +0 -1273
- data/ext/cargo-vendor/wast-69.0.1/src/core/custom.rs +0 -390
- data/ext/cargo-vendor/wast-69.0.1/src/core/expr.rs +0 -2072
- data/ext/cargo-vendor/wast-69.0.1/src/core/memory.rs +0 -279
- data/ext/cargo-vendor/wast-69.0.1/src/core/module.rs +0 -217
- data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/deinline_import_export.rs +0 -231
- data/ext/cargo-vendor/wast-69.0.1/src/core/resolve/names.rs +0 -764
- data/ext/cargo-vendor/wast-69.0.1/src/core/table.rs +0 -288
- data/ext/cargo-vendor/wast-69.0.1/src/core/types.rs +0 -865
- data/ext/cargo-vendor/wast-69.0.1/src/lexer.rs +0 -1443
- data/ext/cargo-vendor/wast-69.0.1/src/lib.rs +0 -542
- data/ext/cargo-vendor/wast-69.0.1/src/names.rs +0 -86
- data/ext/cargo-vendor/wast-69.0.1/src/parser.rs +0 -1382
- data/ext/cargo-vendor/wast-69.0.1/src/token.rs +0 -698
- data/ext/cargo-vendor/wast-69.0.1/src/wat.rs +0 -62
- data/ext/cargo-vendor/wat-1.0.82/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.82/Cargo.toml +0 -27
- data/ext/cargo-vendor/wat-1.0.82/src/lib.rs +0 -333
- data/ext/cargo-vendor/wiggle-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-17.0.1/Cargo.toml +0 -115
- data/ext/cargo-vendor/wiggle-17.0.1/src/lib.rs +0 -1198
- data/ext/cargo-vendor/wiggle-generate-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-17.0.1/Cargo.toml +0 -65
- data/ext/cargo-vendor/wiggle-macro-17.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-17.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wiggle-macro-17.0.1/LICENSE +0 -220
- data/ext/cargo-vendor/winch-codegen-0.15.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.15.1/Cargo.toml +0 -76
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/abi/local.rs +0 -81
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/abi/mod.rs +0 -614
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/builtin.rs +0 -268
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/call.rs +0 -345
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/context.rs +0 -553
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/control.rs +0 -497
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/env.rs +0 -309
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/codegen/mod.rs +0 -428
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/frame/mod.rs +0 -221
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/abi.rs +0 -313
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/masm.rs +0 -457
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/aarch64/mod.rs +0 -137
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/mod.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/reg.rs +0 -73
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/abi.rs +0 -524
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/asm.rs +0 -1149
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/masm.rs +0 -1044
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/isa/x64/mod.rs +0 -172
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/masm.rs +0 -708
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/stack.rs +0 -452
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/trampoline.rs +0 -734
- data/ext/cargo-vendor/winch-codegen-0.15.1/src/visitor.rs +0 -1617
- data/ext/cargo-vendor/wit-parser-0.13.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wit-parser-0.13.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/lex.rs +0 -737
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast/resolve.rs +0 -1425
- data/ext/cargo-vendor/wit-parser-0.13.0/src/ast.rs +0 -1340
- data/ext/cargo-vendor/wit-parser-0.13.0/src/resolve.rs +0 -1872
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/comments.wit.json +0 -46
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -5
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit +0 -58
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/types.wit.json +0 -751
- data/ext/cargo-vendor/wit-parser-0.13.0/tests/ui/wasi.wit.json +0 -296
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.104.1 → cranelift-bforest-0.105.3}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/buffer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.104.1 → cranelift-codegen-0.105.3}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.104.1 → cranelift-codegen-meta-0.105.3}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.104.1 → cranelift-codegen-shared-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.104.1 → cranelift-control-0.105.3}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.104.1 → cranelift-entity-0.105.3}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.104.1 → cranelift-frontend-0.105.3}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.104.1 → cranelift-isle-0.105.3}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.104.1 → cranelift-native-0.105.3}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/tests/wasm_testsuite.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.104.1 → cranelift-wasm-0.105.3}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/README.md +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.18 → deterministic-wasi-ctx-0.1.19}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/bin/release.sh +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/features.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/main.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/stable_api_config.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/build/version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/readme.md +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/bindings.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/hidden.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/ruby_abi_version.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/special_consts.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.c +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/compiled.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_6.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_2_7.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_0.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_1.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_2.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api/ruby_3_3.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/stable_api.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/tracking_allocator.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-0.9.86 → rb-sys-0.9.89}/src/value_type.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/sanitizer.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/stable_api.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/bindings/wrapper.h +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/cc.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/flags.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/library.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/rb_config/search_path.rs +0 -0
- /data/ext/cargo-vendor/{rb-sys-build-0.9.86 → rb-sys-build-0.9.89}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/maybe_done.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/copy_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/mem.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mocked.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u16.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u32.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/atomic_usize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/schedule.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/config.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/coop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/metrics/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/tests/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/chan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/consume_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/spawn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/task/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/bit.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/sync_wrapper.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/async_send_sync.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1/tests/coop_budger.rs → tokio-1.36.0/tests/coop_budget.rs} +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/duplex_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/uds_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.35.1 → tokio-1.36.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-17.0.1 → wasi-common-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasi-common-18.0.3}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-17.0.1 → wasm-encoder-0.201.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.201.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.38.1 → wasm-encoder-0.41.2}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.118.1 → wasmparser-0.121.2}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmprinter-0.2.75 → wasmprinter-0.2.80}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1 → wasmtime-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1 → wasmtime-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-17.0.1/src → wasmtime-18.0.3/src/runtime}/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-17.0.1 → wasmtime-asm-macros-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-17.0.1 → wasmtime-cache-18.0.3}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-17.0.1 → wasmtime-component-macro-18.0.3}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-17.0.1 → wasmtime-component-util-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-17.0.1 → wasmtime-cranelift-18.0.3}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-17.0.1 → wasmtime-cranelift-shared-18.0.3}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/types/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-17.0.1 → wasmtime-environ-18.0.3}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-17.0.1 → wasmtime-environ-18.0.3}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-17.0.1 → wasmtime-fiber-18.0.3}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-17.0.1 → wasmtime-jit-debug-18.0.3}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-17.0.1 → wasmtime-jit-icache-coherence-18.0.3}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-17.0.1 → wasmtime-runtime-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-runtime-18.0.3}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-17.0.1 → wasmtime-types-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-17.0.1 → wasmtime-types-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-17.0.1 → wasmtime-versioned-export-macros-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-17.0.1 → wasmtime-wasi-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/src/preview2/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wasmtime-wasi-18.0.3}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-17.0.1 → wasmtime-winch-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-17.0.1 → wasmtime-winch-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-17.0.1 → wasmtime-wit-bindgen-18.0.3}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wmemcheck-17.0.1 → wasmtime-wmemcheck-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-17.0.1 → wast-201.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wast-201.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wast-69.0.1 → wat-1.201.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.82 → wat-1.201.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.82 → wiggle-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-18.0.3}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-17.0.1 → wiggle-generate-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-generate-18.0.3}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-17.0.1 → wiggle-macro-18.0.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-17.0.1 → wiggle-macro-18.0.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.15.1 → winch-codegen-0.16.3}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/abi.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/ast/toposort.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/live.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/serde_.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/src/sizealign.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/comments.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/bar/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/deps/baz/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/complex-include.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/cross-package-resource.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1/join.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/diamond1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/disambiguate-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps-union.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/foreign-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/functions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps/world.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/ignore-files-deps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/import-export-overlap2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/include-reps.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/kebab-name-include-with.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/many-names.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/cycle-b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/multi-file.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/name-both-resource-and-type.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/package-syntax4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/async1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world/root.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/use-world.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/random.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-empty.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-multiple.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-borrow.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources-return-own.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/resources1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/shared-types.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/stress-export-elaborate.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/type-then-eof.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/union-fuzz-1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0/tests/ui/parse-fail → wit-parser-0.13.2/tests/ui}/union-fuzz-2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use-chain.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/use.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions/foo.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/versions.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/wasi.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-diamond.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-iface-no-collide.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import1.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import2.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-implicit-import3.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-same-fields4.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-funcs.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/world-top-level-resources.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-union-dedup.wit.json +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wit-parser-0.13.0 → wit-parser-0.13.2}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,1399 @@
|
|
1
|
+
#![cfg_attr(not(feature = "sync"), allow(dead_code, unreachable_pub))]
|
2
|
+
|
3
|
+
//! A single-producer, multi-consumer channel that only retains the *last* sent
|
4
|
+
//! value.
|
5
|
+
//!
|
6
|
+
//! This channel is useful for watching for changes to a value from multiple
|
7
|
+
//! points in the code base, for example, changes to configuration values.
|
8
|
+
//!
|
9
|
+
//! # Usage
|
10
|
+
//!
|
11
|
+
//! [`channel`] returns a [`Sender`] / [`Receiver`] pair. These are the producer
|
12
|
+
//! and consumer halves of the channel. The channel is created with an initial
|
13
|
+
//! value.
|
14
|
+
//!
|
15
|
+
//! Each [`Receiver`] independently tracks the last value *seen* by its caller.
|
16
|
+
//!
|
17
|
+
//! To access the **current** value stored in the channel and mark it as *seen*
|
18
|
+
//! by a given [`Receiver`], use [`Receiver::borrow_and_update()`].
|
19
|
+
//!
|
20
|
+
//! To access the current value **without** marking it as *seen*, use
|
21
|
+
//! [`Receiver::borrow()`]. (If the value has already been marked *seen*,
|
22
|
+
//! [`Receiver::borrow()`] is equivalent to [`Receiver::borrow_and_update()`].)
|
23
|
+
//!
|
24
|
+
//! For more information on when to use these methods, see
|
25
|
+
//! [here](#borrow_and_update-versus-borrow).
|
26
|
+
//!
|
27
|
+
//! ## Change notifications
|
28
|
+
//!
|
29
|
+
//! The [`Receiver`] half provides an asynchronous [`changed`] method. This
|
30
|
+
//! method is ready when a new, *unseen* value is sent via the [`Sender`] half.
|
31
|
+
//!
|
32
|
+
//! * [`Receiver::changed()`] returns `Ok(())` on receiving a new value, or
|
33
|
+
//! `Err(`[`error::RecvError`]`)` if the [`Sender`] has been dropped.
|
34
|
+
//! * If the current value is *unseen* when calling [`changed`], then
|
35
|
+
//! [`changed`] will return immediately. If the current value is *seen*, then
|
36
|
+
//! it will sleep until either a new message is sent via the [`Sender`] half,
|
37
|
+
//! or the [`Sender`] is dropped.
|
38
|
+
//! * On completion, the [`changed`] method marks the new value as *seen*.
|
39
|
+
//! * At creation, the initial value is considered *seen*. In other words,
|
40
|
+
//! [`Receiver::changed()`] will not return until a subsequent value is sent.
|
41
|
+
//! * New [`Receiver`] instances can be created with [`Sender::subscribe()`].
|
42
|
+
//! The current value at the time the [`Receiver`] is created is considered
|
43
|
+
//! *seen*.
|
44
|
+
//!
|
45
|
+
//! ## `borrow_and_update` versus `borrow`
|
46
|
+
//!
|
47
|
+
//! If the receiver intends to await notifications from [`changed`] in a loop,
|
48
|
+
//! [`Receiver::borrow_and_update()`] should be preferred over
|
49
|
+
//! [`Receiver::borrow()`]. This avoids a potential race where a new value is
|
50
|
+
//! sent between [`changed`] being ready and the value being read. (If
|
51
|
+
//! [`Receiver::borrow()`] is used, the loop may run twice with the same value.)
|
52
|
+
//!
|
53
|
+
//! If the receiver is only interested in the current value, and does not intend
|
54
|
+
//! to wait for changes, then [`Receiver::borrow()`] can be used. It may be more
|
55
|
+
//! convenient to use [`borrow`](Receiver::borrow) since it's an `&self`
|
56
|
+
//! method---[`borrow_and_update`](Receiver::borrow_and_update) requires `&mut
|
57
|
+
//! self`.
|
58
|
+
//!
|
59
|
+
//! # Examples
|
60
|
+
//!
|
61
|
+
//! The following example prints `hello! world! `.
|
62
|
+
//!
|
63
|
+
//! ```
|
64
|
+
//! use tokio::sync::watch;
|
65
|
+
//! use tokio::time::{Duration, sleep};
|
66
|
+
//!
|
67
|
+
//! # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
68
|
+
//! let (tx, mut rx) = watch::channel("hello");
|
69
|
+
//!
|
70
|
+
//! tokio::spawn(async move {
|
71
|
+
//! // Use the equivalent of a "do-while" loop so the initial value is
|
72
|
+
//! // processed before awaiting the `changed()` future.
|
73
|
+
//! loop {
|
74
|
+
//! println!("{}! ", *rx.borrow_and_update());
|
75
|
+
//! if rx.changed().await.is_err() {
|
76
|
+
//! break;
|
77
|
+
//! }
|
78
|
+
//! }
|
79
|
+
//! });
|
80
|
+
//!
|
81
|
+
//! sleep(Duration::from_millis(100)).await;
|
82
|
+
//! tx.send("world")?;
|
83
|
+
//! # Ok(())
|
84
|
+
//! # }
|
85
|
+
//! ```
|
86
|
+
//!
|
87
|
+
//! # Closing
|
88
|
+
//!
|
89
|
+
//! [`Sender::is_closed`] and [`Sender::closed`] allow the producer to detect
|
90
|
+
//! when all [`Receiver`] handles have been dropped. This indicates that there
|
91
|
+
//! is no further interest in the values being produced and work can be stopped.
|
92
|
+
//!
|
93
|
+
//! The value in the channel will not be dropped until the sender and all
|
94
|
+
//! receivers have been dropped.
|
95
|
+
//!
|
96
|
+
//! # Thread safety
|
97
|
+
//!
|
98
|
+
//! Both [`Sender`] and [`Receiver`] are thread safe. They can be moved to other
|
99
|
+
//! threads and can be used in a concurrent environment. Clones of [`Receiver`]
|
100
|
+
//! handles may be moved to separate threads and also used concurrently.
|
101
|
+
//!
|
102
|
+
//! [`Sender`]: crate::sync::watch::Sender
|
103
|
+
//! [`Receiver`]: crate::sync::watch::Receiver
|
104
|
+
//! [`changed`]: crate::sync::watch::Receiver::changed
|
105
|
+
//! [`Receiver::changed()`]: crate::sync::watch::Receiver::changed
|
106
|
+
//! [`Receiver::borrow()`]: crate::sync::watch::Receiver::borrow
|
107
|
+
//! [`Receiver::borrow_and_update()`]:
|
108
|
+
//! crate::sync::watch::Receiver::borrow_and_update
|
109
|
+
//! [`channel`]: crate::sync::watch::channel
|
110
|
+
//! [`Sender::is_closed`]: crate::sync::watch::Sender::is_closed
|
111
|
+
//! [`Sender::closed`]: crate::sync::watch::Sender::closed
|
112
|
+
//! [`Sender::subscribe()`]: crate::sync::watch::Sender::subscribe
|
113
|
+
|
114
|
+
use crate::sync::notify::Notify;
|
115
|
+
|
116
|
+
use crate::loom::sync::atomic::AtomicUsize;
|
117
|
+
use crate::loom::sync::atomic::Ordering::Relaxed;
|
118
|
+
use crate::loom::sync::{Arc, RwLock, RwLockReadGuard};
|
119
|
+
use std::fmt;
|
120
|
+
use std::mem;
|
121
|
+
use std::ops;
|
122
|
+
use std::panic;
|
123
|
+
|
124
|
+
/// Receives values from the associated [`Sender`](struct@Sender).
|
125
|
+
///
|
126
|
+
/// Instances are created by the [`channel`](fn@channel) function.
|
127
|
+
///
|
128
|
+
/// To turn this receiver into a `Stream`, you can use the [`WatchStream`]
|
129
|
+
/// wrapper.
|
130
|
+
///
|
131
|
+
/// [`WatchStream`]: https://docs.rs/tokio-stream/0.1/tokio_stream/wrappers/struct.WatchStream.html
|
132
|
+
#[derive(Debug)]
|
133
|
+
pub struct Receiver<T> {
|
134
|
+
/// Pointer to the shared state
|
135
|
+
shared: Arc<Shared<T>>,
|
136
|
+
|
137
|
+
/// Last observed version
|
138
|
+
version: Version,
|
139
|
+
}
|
140
|
+
|
141
|
+
/// Sends values to the associated [`Receiver`](struct@Receiver).
|
142
|
+
///
|
143
|
+
/// Instances are created by the [`channel`](fn@channel) function.
|
144
|
+
#[derive(Debug)]
|
145
|
+
pub struct Sender<T> {
|
146
|
+
shared: Arc<Shared<T>>,
|
147
|
+
}
|
148
|
+
|
149
|
+
/// Returns a reference to the inner value.
|
150
|
+
///
|
151
|
+
/// Outstanding borrows hold a read lock on the inner value. This means that
|
152
|
+
/// long-lived borrows could cause the producer half to block. It is recommended
|
153
|
+
/// to keep the borrow as short-lived as possible. Additionally, if you are
|
154
|
+
/// running in an environment that allows `!Send` futures, you must ensure that
|
155
|
+
/// the returned `Ref` type is never held alive across an `.await` point,
|
156
|
+
/// otherwise, it can lead to a deadlock.
|
157
|
+
///
|
158
|
+
/// The priority policy of the lock is dependent on the underlying lock
|
159
|
+
/// implementation, and this type does not guarantee that any particular policy
|
160
|
+
/// will be used. In particular, a producer which is waiting to acquire the lock
|
161
|
+
/// in `send` might or might not block concurrent calls to `borrow`, e.g.:
|
162
|
+
///
|
163
|
+
/// <details><summary>Potential deadlock example</summary>
|
164
|
+
///
|
165
|
+
/// ```text
|
166
|
+
/// // Task 1 (on thread A) | // Task 2 (on thread B)
|
167
|
+
/// let _ref1 = rx.borrow(); |
|
168
|
+
/// | // will block
|
169
|
+
/// | let _ = tx.send(());
|
170
|
+
/// // may deadlock |
|
171
|
+
/// let _ref2 = rx.borrow(); |
|
172
|
+
/// ```
|
173
|
+
/// </details>
|
174
|
+
#[derive(Debug)]
|
175
|
+
pub struct Ref<'a, T> {
|
176
|
+
inner: RwLockReadGuard<'a, T>,
|
177
|
+
has_changed: bool,
|
178
|
+
}
|
179
|
+
|
180
|
+
impl<'a, T> Ref<'a, T> {
|
181
|
+
/// Indicates if the borrowed value is considered as _changed_ since the last
|
182
|
+
/// time it has been marked as seen.
|
183
|
+
///
|
184
|
+
/// Unlike [`Receiver::has_changed()`], this method does not fail if the channel is closed.
|
185
|
+
///
|
186
|
+
/// When borrowed from the [`Sender`] this function will always return `false`.
|
187
|
+
///
|
188
|
+
/// # Examples
|
189
|
+
///
|
190
|
+
/// ```
|
191
|
+
/// use tokio::sync::watch;
|
192
|
+
///
|
193
|
+
/// #[tokio::main]
|
194
|
+
/// async fn main() {
|
195
|
+
/// let (tx, mut rx) = watch::channel("hello");
|
196
|
+
///
|
197
|
+
/// tx.send("goodbye").unwrap();
|
198
|
+
/// // The sender does never consider the value as changed.
|
199
|
+
/// assert!(!tx.borrow().has_changed());
|
200
|
+
///
|
201
|
+
/// // Drop the sender immediately, just for testing purposes.
|
202
|
+
/// drop(tx);
|
203
|
+
///
|
204
|
+
/// // Even if the sender has already been dropped...
|
205
|
+
/// assert!(rx.has_changed().is_err());
|
206
|
+
/// // ...the modified value is still readable and detected as changed.
|
207
|
+
/// assert_eq!(*rx.borrow(), "goodbye");
|
208
|
+
/// assert!(rx.borrow().has_changed());
|
209
|
+
///
|
210
|
+
/// // Read the changed value and mark it as seen.
|
211
|
+
/// {
|
212
|
+
/// let received = rx.borrow_and_update();
|
213
|
+
/// assert_eq!(*received, "goodbye");
|
214
|
+
/// assert!(received.has_changed());
|
215
|
+
/// // Release the read lock when leaving this scope.
|
216
|
+
/// }
|
217
|
+
///
|
218
|
+
/// // Now the value has already been marked as seen and could
|
219
|
+
/// // never be modified again (after the sender has been dropped).
|
220
|
+
/// assert!(!rx.borrow().has_changed());
|
221
|
+
/// }
|
222
|
+
/// ```
|
223
|
+
pub fn has_changed(&self) -> bool {
|
224
|
+
self.has_changed
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
struct Shared<T> {
|
229
|
+
/// The most recent value.
|
230
|
+
value: RwLock<T>,
|
231
|
+
|
232
|
+
/// The current version.
|
233
|
+
///
|
234
|
+
/// The lowest bit represents a "closed" state. The rest of the bits
|
235
|
+
/// represent the current version.
|
236
|
+
state: AtomicState,
|
237
|
+
|
238
|
+
/// Tracks the number of `Receiver` instances.
|
239
|
+
ref_count_rx: AtomicUsize,
|
240
|
+
|
241
|
+
/// Notifies waiting receivers that the value changed.
|
242
|
+
notify_rx: big_notify::BigNotify,
|
243
|
+
|
244
|
+
/// Notifies any task listening for `Receiver` dropped events.
|
245
|
+
notify_tx: Notify,
|
246
|
+
}
|
247
|
+
|
248
|
+
impl<T: fmt::Debug> fmt::Debug for Shared<T> {
|
249
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
250
|
+
let state = self.state.load();
|
251
|
+
f.debug_struct("Shared")
|
252
|
+
.field("value", &self.value)
|
253
|
+
.field("version", &state.version())
|
254
|
+
.field("is_closed", &state.is_closed())
|
255
|
+
.field("ref_count_rx", &self.ref_count_rx)
|
256
|
+
.finish()
|
257
|
+
}
|
258
|
+
}
|
259
|
+
|
260
|
+
pub mod error {
|
261
|
+
//! Watch error types.
|
262
|
+
|
263
|
+
use std::error::Error;
|
264
|
+
use std::fmt;
|
265
|
+
|
266
|
+
/// Error produced when sending a value fails.
|
267
|
+
#[derive(PartialEq, Eq, Clone, Copy)]
|
268
|
+
pub struct SendError<T>(pub T);
|
269
|
+
|
270
|
+
// ===== impl SendError =====
|
271
|
+
|
272
|
+
impl<T> fmt::Debug for SendError<T> {
|
273
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
274
|
+
f.debug_struct("SendError").finish_non_exhaustive()
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
impl<T> fmt::Display for SendError<T> {
|
279
|
+
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
280
|
+
write!(fmt, "channel closed")
|
281
|
+
}
|
282
|
+
}
|
283
|
+
|
284
|
+
impl<T> Error for SendError<T> {}
|
285
|
+
|
286
|
+
/// Error produced when receiving a change notification.
|
287
|
+
#[derive(Debug, Clone)]
|
288
|
+
pub struct RecvError(pub(super) ());
|
289
|
+
|
290
|
+
// ===== impl RecvError =====
|
291
|
+
|
292
|
+
impl fmt::Display for RecvError {
|
293
|
+
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
294
|
+
write!(fmt, "channel closed")
|
295
|
+
}
|
296
|
+
}
|
297
|
+
|
298
|
+
impl Error for RecvError {}
|
299
|
+
}
|
300
|
+
|
301
|
+
mod big_notify {
|
302
|
+
use super::Notify;
|
303
|
+
use crate::sync::notify::Notified;
|
304
|
+
|
305
|
+
// To avoid contention on the lock inside the `Notify`, we store multiple
|
306
|
+
// copies of it. Then, we use either circular access or randomness to spread
|
307
|
+
// out threads over different `Notify` objects.
|
308
|
+
//
|
309
|
+
// Some simple benchmarks show that randomness performs slightly better than
|
310
|
+
// circular access (probably due to contention on `next`), so we prefer to
|
311
|
+
// use randomness when Tokio is compiled with a random number generator.
|
312
|
+
//
|
313
|
+
// When the random number generator is not available, we fall back to
|
314
|
+
// circular access.
|
315
|
+
|
316
|
+
pub(super) struct BigNotify {
|
317
|
+
#[cfg(not(all(not(loom), feature = "sync", any(feature = "rt", feature = "macros"))))]
|
318
|
+
next: std::sync::atomic::AtomicUsize,
|
319
|
+
inner: [Notify; 8],
|
320
|
+
}
|
321
|
+
|
322
|
+
impl BigNotify {
|
323
|
+
pub(super) fn new() -> Self {
|
324
|
+
Self {
|
325
|
+
#[cfg(not(all(
|
326
|
+
not(loom),
|
327
|
+
feature = "sync",
|
328
|
+
any(feature = "rt", feature = "macros")
|
329
|
+
)))]
|
330
|
+
next: std::sync::atomic::AtomicUsize::new(0),
|
331
|
+
inner: Default::default(),
|
332
|
+
}
|
333
|
+
}
|
334
|
+
|
335
|
+
pub(super) fn notify_waiters(&self) {
|
336
|
+
for notify in &self.inner {
|
337
|
+
notify.notify_waiters();
|
338
|
+
}
|
339
|
+
}
|
340
|
+
|
341
|
+
/// This function implements the case where randomness is not available.
|
342
|
+
#[cfg(not(all(not(loom), feature = "sync", any(feature = "rt", feature = "macros"))))]
|
343
|
+
pub(super) fn notified(&self) -> Notified<'_> {
|
344
|
+
let i = self.next.fetch_add(1, std::sync::atomic::Ordering::Relaxed) % 8;
|
345
|
+
self.inner[i].notified()
|
346
|
+
}
|
347
|
+
|
348
|
+
/// This function implements the case where randomness is available.
|
349
|
+
#[cfg(all(not(loom), feature = "sync", any(feature = "rt", feature = "macros")))]
|
350
|
+
pub(super) fn notified(&self) -> Notified<'_> {
|
351
|
+
let i = crate::runtime::context::thread_rng_n(8) as usize;
|
352
|
+
self.inner[i].notified()
|
353
|
+
}
|
354
|
+
}
|
355
|
+
}
|
356
|
+
|
357
|
+
use self::state::{AtomicState, Version};
|
358
|
+
mod state {
|
359
|
+
use crate::loom::sync::atomic::AtomicUsize;
|
360
|
+
use crate::loom::sync::atomic::Ordering;
|
361
|
+
|
362
|
+
const CLOSED_BIT: usize = 1;
|
363
|
+
|
364
|
+
// Using 2 as the step size preserves the `CLOSED_BIT`.
|
365
|
+
const STEP_SIZE: usize = 2;
|
366
|
+
|
367
|
+
/// The version part of the state. The lowest bit is always zero.
|
368
|
+
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
369
|
+
pub(super) struct Version(usize);
|
370
|
+
|
371
|
+
/// Snapshot of the state. The first bit is used as the CLOSED bit.
|
372
|
+
/// The remaining bits are used as the version.
|
373
|
+
///
|
374
|
+
/// The CLOSED bit tracks whether the Sender has been dropped. Dropping all
|
375
|
+
/// receivers does not set it.
|
376
|
+
#[derive(Copy, Clone, Debug)]
|
377
|
+
pub(super) struct StateSnapshot(usize);
|
378
|
+
|
379
|
+
/// The state stored in an atomic integer.
|
380
|
+
///
|
381
|
+
/// The `Sender` uses `Release` ordering for storing a new state
|
382
|
+
/// and the `Receiver`s use `Acquire` ordering for loading the
|
383
|
+
/// current state. This ensures that written values are seen by
|
384
|
+
/// the `Receiver`s for a proper handover.
|
385
|
+
#[derive(Debug)]
|
386
|
+
pub(super) struct AtomicState(AtomicUsize);
|
387
|
+
|
388
|
+
impl Version {
|
389
|
+
/// Decrements the version.
|
390
|
+
pub(super) fn decrement(&mut self) {
|
391
|
+
// Using a wrapping decrement here is required to ensure that the
|
392
|
+
// operation is consistent with `std::sync::atomic::AtomicUsize::fetch_add()`
|
393
|
+
// which wraps on overflow.
|
394
|
+
self.0 = self.0.wrapping_sub(STEP_SIZE);
|
395
|
+
}
|
396
|
+
|
397
|
+
pub(super) const INITIAL: Self = Version(0);
|
398
|
+
}
|
399
|
+
|
400
|
+
impl StateSnapshot {
|
401
|
+
/// Extract the version from the state.
|
402
|
+
pub(super) fn version(self) -> Version {
|
403
|
+
Version(self.0 & !CLOSED_BIT)
|
404
|
+
}
|
405
|
+
|
406
|
+
/// Is the closed bit set?
|
407
|
+
pub(super) fn is_closed(self) -> bool {
|
408
|
+
(self.0 & CLOSED_BIT) == CLOSED_BIT
|
409
|
+
}
|
410
|
+
}
|
411
|
+
|
412
|
+
impl AtomicState {
|
413
|
+
/// Create a new `AtomicState` that is not closed and which has the
|
414
|
+
/// version set to `Version::INITIAL`.
|
415
|
+
pub(super) fn new() -> Self {
|
416
|
+
AtomicState(AtomicUsize::new(Version::INITIAL.0))
|
417
|
+
}
|
418
|
+
|
419
|
+
/// Load the current value of the state.
|
420
|
+
///
|
421
|
+
/// Only used by the receiver and for debugging purposes.
|
422
|
+
///
|
423
|
+
/// The receiver side (read-only) uses `Acquire` ordering for a proper handover
|
424
|
+
/// of the shared value with the sender side (single writer). The state is always
|
425
|
+
/// updated after modifying and before releasing the (exclusive) lock on the
|
426
|
+
/// shared value.
|
427
|
+
pub(super) fn load(&self) -> StateSnapshot {
|
428
|
+
StateSnapshot(self.0.load(Ordering::Acquire))
|
429
|
+
}
|
430
|
+
|
431
|
+
/// Increment the version counter.
|
432
|
+
pub(super) fn increment_version_while_locked(&self) {
|
433
|
+
// Use `Release` ordering to ensure that the shared value
|
434
|
+
// has been written before updating the version. The shared
|
435
|
+
// value is still protected by an exclusive lock during this
|
436
|
+
// method.
|
437
|
+
self.0.fetch_add(STEP_SIZE, Ordering::Release);
|
438
|
+
}
|
439
|
+
|
440
|
+
/// Set the closed bit in the state.
|
441
|
+
pub(super) fn set_closed(&self) {
|
442
|
+
self.0.fetch_or(CLOSED_BIT, Ordering::Release);
|
443
|
+
}
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
/// Creates a new watch channel, returning the "send" and "receive" handles.
|
448
|
+
///
|
449
|
+
/// All values sent by [`Sender`] will become visible to the [`Receiver`] handles.
|
450
|
+
/// Only the last value sent is made available to the [`Receiver`] half. All
|
451
|
+
/// intermediate values are dropped.
|
452
|
+
///
|
453
|
+
/// # Examples
|
454
|
+
///
|
455
|
+
/// The following example prints `hello! world! `.
|
456
|
+
///
|
457
|
+
/// ```
|
458
|
+
/// use tokio::sync::watch;
|
459
|
+
/// use tokio::time::{Duration, sleep};
|
460
|
+
///
|
461
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
462
|
+
/// let (tx, mut rx) = watch::channel("hello");
|
463
|
+
///
|
464
|
+
/// tokio::spawn(async move {
|
465
|
+
/// // Use the equivalent of a "do-while" loop so the initial value is
|
466
|
+
/// // processed before awaiting the `changed()` future.
|
467
|
+
/// loop {
|
468
|
+
/// println!("{}! ", *rx.borrow_and_update());
|
469
|
+
/// if rx.changed().await.is_err() {
|
470
|
+
/// break;
|
471
|
+
/// }
|
472
|
+
/// }
|
473
|
+
/// });
|
474
|
+
///
|
475
|
+
/// sleep(Duration::from_millis(100)).await;
|
476
|
+
/// tx.send("world")?;
|
477
|
+
/// # Ok(())
|
478
|
+
/// # }
|
479
|
+
/// ```
|
480
|
+
///
|
481
|
+
/// [`Sender`]: struct@Sender
|
482
|
+
/// [`Receiver`]: struct@Receiver
|
483
|
+
pub fn channel<T>(init: T) -> (Sender<T>, Receiver<T>) {
|
484
|
+
let shared = Arc::new(Shared {
|
485
|
+
value: RwLock::new(init),
|
486
|
+
state: AtomicState::new(),
|
487
|
+
ref_count_rx: AtomicUsize::new(1),
|
488
|
+
notify_rx: big_notify::BigNotify::new(),
|
489
|
+
notify_tx: Notify::new(),
|
490
|
+
});
|
491
|
+
|
492
|
+
let tx = Sender {
|
493
|
+
shared: shared.clone(),
|
494
|
+
};
|
495
|
+
|
496
|
+
let rx = Receiver {
|
497
|
+
shared,
|
498
|
+
version: Version::INITIAL,
|
499
|
+
};
|
500
|
+
|
501
|
+
(tx, rx)
|
502
|
+
}
|
503
|
+
|
504
|
+
impl<T> Receiver<T> {
|
505
|
+
fn from_shared(version: Version, shared: Arc<Shared<T>>) -> Self {
|
506
|
+
// No synchronization necessary as this is only used as a counter and
|
507
|
+
// not memory access.
|
508
|
+
shared.ref_count_rx.fetch_add(1, Relaxed);
|
509
|
+
|
510
|
+
Self { shared, version }
|
511
|
+
}
|
512
|
+
|
513
|
+
/// Returns a reference to the most recently sent value.
|
514
|
+
///
|
515
|
+
/// This method does not mark the returned value as seen, so future calls to
|
516
|
+
/// [`changed`] may return immediately even if you have already seen the
|
517
|
+
/// value with a call to `borrow`.
|
518
|
+
///
|
519
|
+
/// Outstanding borrows hold a read lock on the inner value. This means that
|
520
|
+
/// long-lived borrows could cause the producer half to block. It is recommended
|
521
|
+
/// to keep the borrow as short-lived as possible. Additionally, if you are
|
522
|
+
/// running in an environment that allows `!Send` futures, you must ensure that
|
523
|
+
/// the returned `Ref` type is never held alive across an `.await` point,
|
524
|
+
/// otherwise, it can lead to a deadlock.
|
525
|
+
///
|
526
|
+
/// The priority policy of the lock is dependent on the underlying lock
|
527
|
+
/// implementation, and this type does not guarantee that any particular policy
|
528
|
+
/// will be used. In particular, a producer which is waiting to acquire the lock
|
529
|
+
/// in `send` might or might not block concurrent calls to `borrow`, e.g.:
|
530
|
+
///
|
531
|
+
/// <details><summary>Potential deadlock example</summary>
|
532
|
+
///
|
533
|
+
/// ```text
|
534
|
+
/// // Task 1 (on thread A) | // Task 2 (on thread B)
|
535
|
+
/// let _ref1 = rx.borrow(); |
|
536
|
+
/// | // will block
|
537
|
+
/// | let _ = tx.send(());
|
538
|
+
/// // may deadlock |
|
539
|
+
/// let _ref2 = rx.borrow(); |
|
540
|
+
/// ```
|
541
|
+
/// </details>
|
542
|
+
///
|
543
|
+
/// For more information on when to use this method versus
|
544
|
+
/// [`borrow_and_update`], see [here](self#borrow_and_update-versus-borrow).
|
545
|
+
///
|
546
|
+
/// [`changed`]: Receiver::changed
|
547
|
+
/// [`borrow_and_update`]: Receiver::borrow_and_update
|
548
|
+
///
|
549
|
+
/// # Examples
|
550
|
+
///
|
551
|
+
/// ```
|
552
|
+
/// use tokio::sync::watch;
|
553
|
+
///
|
554
|
+
/// let (_, rx) = watch::channel("hello");
|
555
|
+
/// assert_eq!(*rx.borrow(), "hello");
|
556
|
+
/// ```
|
557
|
+
pub fn borrow(&self) -> Ref<'_, T> {
|
558
|
+
let inner = self.shared.value.read().unwrap();
|
559
|
+
|
560
|
+
// After obtaining a read-lock no concurrent writes could occur
|
561
|
+
// and the loaded version matches that of the borrowed reference.
|
562
|
+
let new_version = self.shared.state.load().version();
|
563
|
+
let has_changed = self.version != new_version;
|
564
|
+
|
565
|
+
Ref { inner, has_changed }
|
566
|
+
}
|
567
|
+
|
568
|
+
/// Returns a reference to the most recently sent value and marks that value
|
569
|
+
/// as seen.
|
570
|
+
///
|
571
|
+
/// This method marks the current value as seen. Subsequent calls to [`changed`]
|
572
|
+
/// will not return immediately until the [`Sender`] has modified the shared
|
573
|
+
/// value again.
|
574
|
+
///
|
575
|
+
/// Outstanding borrows hold a read lock on the inner value. This means that
|
576
|
+
/// long-lived borrows could cause the producer half to block. It is recommended
|
577
|
+
/// to keep the borrow as short-lived as possible. Additionally, if you are
|
578
|
+
/// running in an environment that allows `!Send` futures, you must ensure that
|
579
|
+
/// the returned `Ref` type is never held alive across an `.await` point,
|
580
|
+
/// otherwise, it can lead to a deadlock.
|
581
|
+
///
|
582
|
+
/// The priority policy of the lock is dependent on the underlying lock
|
583
|
+
/// implementation, and this type does not guarantee that any particular policy
|
584
|
+
/// will be used. In particular, a producer which is waiting to acquire the lock
|
585
|
+
/// in `send` might or might not block concurrent calls to `borrow`, e.g.:
|
586
|
+
///
|
587
|
+
/// <details><summary>Potential deadlock example</summary>
|
588
|
+
///
|
589
|
+
/// ```text
|
590
|
+
/// // Task 1 (on thread A) | // Task 2 (on thread B)
|
591
|
+
/// let _ref1 = rx1.borrow_and_update(); |
|
592
|
+
/// | // will block
|
593
|
+
/// | let _ = tx.send(());
|
594
|
+
/// // may deadlock |
|
595
|
+
/// let _ref2 = rx2.borrow_and_update(); |
|
596
|
+
/// ```
|
597
|
+
/// </details>
|
598
|
+
///
|
599
|
+
/// For more information on when to use this method versus [`borrow`], see
|
600
|
+
/// [here](self#borrow_and_update-versus-borrow).
|
601
|
+
///
|
602
|
+
/// [`changed`]: Receiver::changed
|
603
|
+
/// [`borrow`]: Receiver::borrow
|
604
|
+
pub fn borrow_and_update(&mut self) -> Ref<'_, T> {
|
605
|
+
let inner = self.shared.value.read().unwrap();
|
606
|
+
|
607
|
+
// After obtaining a read-lock no concurrent writes could occur
|
608
|
+
// and the loaded version matches that of the borrowed reference.
|
609
|
+
let new_version = self.shared.state.load().version();
|
610
|
+
let has_changed = self.version != new_version;
|
611
|
+
|
612
|
+
// Mark the shared value as seen by updating the version
|
613
|
+
self.version = new_version;
|
614
|
+
|
615
|
+
Ref { inner, has_changed }
|
616
|
+
}
|
617
|
+
|
618
|
+
/// Checks if this channel contains a message that this receiver has not yet
|
619
|
+
/// seen. The new value is not marked as seen.
|
620
|
+
///
|
621
|
+
/// Although this method is called `has_changed`, it does not check new
|
622
|
+
/// messages for equality, so this call will return true even if the new
|
623
|
+
/// message is equal to the old message.
|
624
|
+
///
|
625
|
+
/// Returns an error if the channel has been closed.
|
626
|
+
/// # Examples
|
627
|
+
///
|
628
|
+
/// ```
|
629
|
+
/// use tokio::sync::watch;
|
630
|
+
///
|
631
|
+
/// #[tokio::main]
|
632
|
+
/// async fn main() {
|
633
|
+
/// let (tx, mut rx) = watch::channel("hello");
|
634
|
+
///
|
635
|
+
/// tx.send("goodbye").unwrap();
|
636
|
+
///
|
637
|
+
/// assert!(rx.has_changed().unwrap());
|
638
|
+
/// assert_eq!(*rx.borrow_and_update(), "goodbye");
|
639
|
+
///
|
640
|
+
/// // The value has been marked as seen
|
641
|
+
/// assert!(!rx.has_changed().unwrap());
|
642
|
+
///
|
643
|
+
/// drop(tx);
|
644
|
+
/// // The `tx` handle has been dropped
|
645
|
+
/// assert!(rx.has_changed().is_err());
|
646
|
+
/// }
|
647
|
+
/// ```
|
648
|
+
pub fn has_changed(&self) -> Result<bool, error::RecvError> {
|
649
|
+
// Load the version from the state
|
650
|
+
let state = self.shared.state.load();
|
651
|
+
if state.is_closed() {
|
652
|
+
// The sender has dropped.
|
653
|
+
return Err(error::RecvError(()));
|
654
|
+
}
|
655
|
+
let new_version = state.version();
|
656
|
+
|
657
|
+
Ok(self.version != new_version)
|
658
|
+
}
|
659
|
+
|
660
|
+
/// Marks the state as changed.
|
661
|
+
///
|
662
|
+
/// After invoking this method [`has_changed()`](Self::has_changed)
|
663
|
+
/// returns `true` and [`changed()`](Self::changed) returns
|
664
|
+
/// immediately, regardless of whether a new value has been sent.
|
665
|
+
///
|
666
|
+
/// This is useful for triggering an initial change notification after
|
667
|
+
/// subscribing to synchronize new receivers.
|
668
|
+
pub fn mark_changed(&mut self) {
|
669
|
+
self.version.decrement();
|
670
|
+
}
|
671
|
+
|
672
|
+
/// Marks the state as unchanged.
|
673
|
+
///
|
674
|
+
/// The current value will be considered seen by the receiver.
|
675
|
+
///
|
676
|
+
/// This is useful if you are not interested in the current value
|
677
|
+
/// visible in the receiver.
|
678
|
+
pub fn mark_unchanged(&mut self) {
|
679
|
+
let current_version = self.shared.state.load().version();
|
680
|
+
self.version = current_version;
|
681
|
+
}
|
682
|
+
|
683
|
+
/// Waits for a change notification, then marks the newest value as seen.
|
684
|
+
///
|
685
|
+
/// If the newest value in the channel has not yet been marked seen when
|
686
|
+
/// this method is called, the method marks that value seen and returns
|
687
|
+
/// immediately. If the newest value has already been marked seen, then the
|
688
|
+
/// method sleeps until a new message is sent by the [`Sender`] connected to
|
689
|
+
/// this `Receiver`, or until the [`Sender`] is dropped.
|
690
|
+
///
|
691
|
+
/// This method returns an error if and only if the [`Sender`] is dropped.
|
692
|
+
///
|
693
|
+
/// For more information, see
|
694
|
+
/// [*Change notifications*](self#change-notifications) in the module-level documentation.
|
695
|
+
///
|
696
|
+
/// # Cancel safety
|
697
|
+
///
|
698
|
+
/// This method is cancel safe. If you use it as the event in a
|
699
|
+
/// [`tokio::select!`](crate::select) statement and some other branch
|
700
|
+
/// completes first, then it is guaranteed that no values have been marked
|
701
|
+
/// seen by this call to `changed`.
|
702
|
+
///
|
703
|
+
/// [`Sender`]: struct@Sender
|
704
|
+
///
|
705
|
+
/// # Examples
|
706
|
+
///
|
707
|
+
/// ```
|
708
|
+
/// use tokio::sync::watch;
|
709
|
+
///
|
710
|
+
/// #[tokio::main]
|
711
|
+
/// async fn main() {
|
712
|
+
/// let (tx, mut rx) = watch::channel("hello");
|
713
|
+
///
|
714
|
+
/// tokio::spawn(async move {
|
715
|
+
/// tx.send("goodbye").unwrap();
|
716
|
+
/// });
|
717
|
+
///
|
718
|
+
/// assert!(rx.changed().await.is_ok());
|
719
|
+
/// assert_eq!(*rx.borrow_and_update(), "goodbye");
|
720
|
+
///
|
721
|
+
/// // The `tx` handle has been dropped
|
722
|
+
/// assert!(rx.changed().await.is_err());
|
723
|
+
/// }
|
724
|
+
/// ```
|
725
|
+
pub async fn changed(&mut self) -> Result<(), error::RecvError> {
|
726
|
+
changed_impl(&self.shared, &mut self.version).await
|
727
|
+
}
|
728
|
+
|
729
|
+
/// Waits for a value that satisfies the provided condition.
|
730
|
+
///
|
731
|
+
/// This method will call the provided closure whenever something is sent on
|
732
|
+
/// the channel. Once the closure returns `true`, this method will return a
|
733
|
+
/// reference to the value that was passed to the closure.
|
734
|
+
///
|
735
|
+
/// Before `wait_for` starts waiting for changes, it will call the closure
|
736
|
+
/// on the current value. If the closure returns `true` when given the
|
737
|
+
/// current value, then `wait_for` will immediately return a reference to
|
738
|
+
/// the current value. This is the case even if the current value is already
|
739
|
+
/// considered seen.
|
740
|
+
///
|
741
|
+
/// The watch channel only keeps track of the most recent value, so if
|
742
|
+
/// several messages are sent faster than `wait_for` is able to call the
|
743
|
+
/// closure, then it may skip some updates. Whenever the closure is called,
|
744
|
+
/// it will be called with the most recent value.
|
745
|
+
///
|
746
|
+
/// When this function returns, the value that was passed to the closure
|
747
|
+
/// when it returned `true` will be considered seen.
|
748
|
+
///
|
749
|
+
/// If the channel is closed, then `wait_for` will return a `RecvError`.
|
750
|
+
/// Once this happens, no more messages can ever be sent on the channel.
|
751
|
+
/// When an error is returned, it is guaranteed that the closure has been
|
752
|
+
/// called on the last value, and that it returned `false` for that value.
|
753
|
+
/// (If the closure returned `true`, then the last value would have been
|
754
|
+
/// returned instead of the error.)
|
755
|
+
///
|
756
|
+
/// Like the `borrow` method, the returned borrow holds a read lock on the
|
757
|
+
/// inner value. This means that long-lived borrows could cause the producer
|
758
|
+
/// half to block. It is recommended to keep the borrow as short-lived as
|
759
|
+
/// possible. See the documentation of `borrow` for more information on
|
760
|
+
/// this.
|
761
|
+
///
|
762
|
+
/// [`Receiver::changed()`]: crate::sync::watch::Receiver::changed
|
763
|
+
///
|
764
|
+
/// # Examples
|
765
|
+
///
|
766
|
+
/// ```
|
767
|
+
/// use tokio::sync::watch;
|
768
|
+
///
|
769
|
+
/// #[tokio::main]
|
770
|
+
///
|
771
|
+
/// async fn main() {
|
772
|
+
/// let (tx, _rx) = watch::channel("hello");
|
773
|
+
///
|
774
|
+
/// tx.send("goodbye").unwrap();
|
775
|
+
///
|
776
|
+
/// // here we subscribe to a second receiver
|
777
|
+
/// // now in case of using `changed` we would have
|
778
|
+
/// // to first check the current value and then wait
|
779
|
+
/// // for changes or else `changed` would hang.
|
780
|
+
/// let mut rx2 = tx.subscribe();
|
781
|
+
///
|
782
|
+
/// // in place of changed we have use `wait_for`
|
783
|
+
/// // which would automatically check the current value
|
784
|
+
/// // and wait for changes until the closure returns true.
|
785
|
+
/// assert!(rx2.wait_for(|val| *val == "goodbye").await.is_ok());
|
786
|
+
/// assert_eq!(*rx2.borrow(), "goodbye");
|
787
|
+
/// }
|
788
|
+
/// ```
|
789
|
+
pub async fn wait_for(
|
790
|
+
&mut self,
|
791
|
+
mut f: impl FnMut(&T) -> bool,
|
792
|
+
) -> Result<Ref<'_, T>, error::RecvError> {
|
793
|
+
let mut closed = false;
|
794
|
+
loop {
|
795
|
+
{
|
796
|
+
let inner = self.shared.value.read().unwrap();
|
797
|
+
|
798
|
+
let new_version = self.shared.state.load().version();
|
799
|
+
let has_changed = self.version != new_version;
|
800
|
+
self.version = new_version;
|
801
|
+
|
802
|
+
if !closed || has_changed {
|
803
|
+
let result = panic::catch_unwind(panic::AssertUnwindSafe(|| f(&inner)));
|
804
|
+
match result {
|
805
|
+
Ok(true) => {
|
806
|
+
return Ok(Ref { inner, has_changed });
|
807
|
+
}
|
808
|
+
Ok(false) => {
|
809
|
+
// Skip the value.
|
810
|
+
}
|
811
|
+
Err(panicked) => {
|
812
|
+
// Drop the read-lock to avoid poisoning it.
|
813
|
+
drop(inner);
|
814
|
+
// Forward the panic to the caller.
|
815
|
+
panic::resume_unwind(panicked);
|
816
|
+
// Unreachable
|
817
|
+
}
|
818
|
+
};
|
819
|
+
}
|
820
|
+
}
|
821
|
+
|
822
|
+
if closed {
|
823
|
+
return Err(error::RecvError(()));
|
824
|
+
}
|
825
|
+
|
826
|
+
// Wait for the value to change.
|
827
|
+
closed = changed_impl(&self.shared, &mut self.version).await.is_err();
|
828
|
+
}
|
829
|
+
}
|
830
|
+
|
831
|
+
/// Returns `true` if receivers belong to the same channel.
|
832
|
+
///
|
833
|
+
/// # Examples
|
834
|
+
///
|
835
|
+
/// ```
|
836
|
+
/// let (tx, rx) = tokio::sync::watch::channel(true);
|
837
|
+
/// let rx2 = rx.clone();
|
838
|
+
/// assert!(rx.same_channel(&rx2));
|
839
|
+
///
|
840
|
+
/// let (tx3, rx3) = tokio::sync::watch::channel(true);
|
841
|
+
/// assert!(!rx3.same_channel(&rx2));
|
842
|
+
/// ```
|
843
|
+
pub fn same_channel(&self, other: &Self) -> bool {
|
844
|
+
Arc::ptr_eq(&self.shared, &other.shared)
|
845
|
+
}
|
846
|
+
|
847
|
+
cfg_process_driver! {
|
848
|
+
pub(crate) fn try_has_changed(&mut self) -> Option<Result<(), error::RecvError>> {
|
849
|
+
maybe_changed(&self.shared, &mut self.version)
|
850
|
+
}
|
851
|
+
}
|
852
|
+
}
|
853
|
+
|
854
|
+
fn maybe_changed<T>(
|
855
|
+
shared: &Shared<T>,
|
856
|
+
version: &mut Version,
|
857
|
+
) -> Option<Result<(), error::RecvError>> {
|
858
|
+
// Load the version from the state
|
859
|
+
let state = shared.state.load();
|
860
|
+
let new_version = state.version();
|
861
|
+
|
862
|
+
if *version != new_version {
|
863
|
+
// Observe the new version and return
|
864
|
+
*version = new_version;
|
865
|
+
return Some(Ok(()));
|
866
|
+
}
|
867
|
+
|
868
|
+
if state.is_closed() {
|
869
|
+
// The sender has been dropped.
|
870
|
+
return Some(Err(error::RecvError(())));
|
871
|
+
}
|
872
|
+
|
873
|
+
None
|
874
|
+
}
|
875
|
+
|
876
|
+
async fn changed_impl<T>(
|
877
|
+
shared: &Shared<T>,
|
878
|
+
version: &mut Version,
|
879
|
+
) -> Result<(), error::RecvError> {
|
880
|
+
crate::trace::async_trace_leaf().await;
|
881
|
+
|
882
|
+
loop {
|
883
|
+
// In order to avoid a race condition, we first request a notification,
|
884
|
+
// **then** check the current value's version. If a new version exists,
|
885
|
+
// the notification request is dropped.
|
886
|
+
let notified = shared.notify_rx.notified();
|
887
|
+
|
888
|
+
if let Some(ret) = maybe_changed(shared, version) {
|
889
|
+
return ret;
|
890
|
+
}
|
891
|
+
|
892
|
+
notified.await;
|
893
|
+
// loop around again in case the wake-up was spurious
|
894
|
+
}
|
895
|
+
}
|
896
|
+
|
897
|
+
impl<T> Clone for Receiver<T> {
|
898
|
+
fn clone(&self) -> Self {
|
899
|
+
let version = self.version;
|
900
|
+
let shared = self.shared.clone();
|
901
|
+
|
902
|
+
Self::from_shared(version, shared)
|
903
|
+
}
|
904
|
+
}
|
905
|
+
|
906
|
+
impl<T> Drop for Receiver<T> {
|
907
|
+
fn drop(&mut self) {
|
908
|
+
// No synchronization necessary as this is only used as a counter and
|
909
|
+
// not memory access.
|
910
|
+
if 1 == self.shared.ref_count_rx.fetch_sub(1, Relaxed) {
|
911
|
+
// This is the last `Receiver` handle, tasks waiting on `Sender::closed()`
|
912
|
+
self.shared.notify_tx.notify_waiters();
|
913
|
+
}
|
914
|
+
}
|
915
|
+
}
|
916
|
+
|
917
|
+
impl<T> Sender<T> {
|
918
|
+
/// Creates the sending-half of the [`watch`] channel.
|
919
|
+
///
|
920
|
+
/// See documentation of [`watch::channel`] for errors when calling this function.
|
921
|
+
/// Beware that attempting to send a value when there are no receivers will
|
922
|
+
/// return an error.
|
923
|
+
///
|
924
|
+
/// [`watch`]: crate::sync::watch
|
925
|
+
/// [`watch::channel`]: crate::sync::watch
|
926
|
+
///
|
927
|
+
/// # Examples
|
928
|
+
/// ```
|
929
|
+
/// let sender = tokio::sync::watch::Sender::new(0u8);
|
930
|
+
/// assert!(sender.send(3).is_err());
|
931
|
+
/// let _rec = sender.subscribe();
|
932
|
+
/// assert!(sender.send(4).is_ok());
|
933
|
+
/// ```
|
934
|
+
pub fn new(init: T) -> Self {
|
935
|
+
let (tx, _) = channel(init);
|
936
|
+
tx
|
937
|
+
}
|
938
|
+
|
939
|
+
/// Sends a new value via the channel, notifying all receivers.
|
940
|
+
///
|
941
|
+
/// This method fails if the channel is closed, which is the case when
|
942
|
+
/// every receiver has been dropped. It is possible to reopen the channel
|
943
|
+
/// using the [`subscribe`] method. However, when `send` fails, the value
|
944
|
+
/// isn't made available for future receivers (but returned with the
|
945
|
+
/// [`SendError`]).
|
946
|
+
///
|
947
|
+
/// To always make a new value available for future receivers, even if no
|
948
|
+
/// receiver currently exists, one of the other send methods
|
949
|
+
/// ([`send_if_modified`], [`send_modify`], or [`send_replace`]) can be
|
950
|
+
/// used instead.
|
951
|
+
///
|
952
|
+
/// [`subscribe`]: Sender::subscribe
|
953
|
+
/// [`SendError`]: error::SendError
|
954
|
+
/// [`send_if_modified`]: Sender::send_if_modified
|
955
|
+
/// [`send_modify`]: Sender::send_modify
|
956
|
+
/// [`send_replace`]: Sender::send_replace
|
957
|
+
pub fn send(&self, value: T) -> Result<(), error::SendError<T>> {
|
958
|
+
// This is pretty much only useful as a hint anyway, so synchronization isn't critical.
|
959
|
+
if 0 == self.receiver_count() {
|
960
|
+
return Err(error::SendError(value));
|
961
|
+
}
|
962
|
+
|
963
|
+
self.send_replace(value);
|
964
|
+
Ok(())
|
965
|
+
}
|
966
|
+
|
967
|
+
/// Modifies the watched value **unconditionally** in-place,
|
968
|
+
/// notifying all receivers.
|
969
|
+
///
|
970
|
+
/// This can be useful for modifying the watched value, without
|
971
|
+
/// having to allocate a new instance. Additionally, this
|
972
|
+
/// method permits sending values even when there are no receivers.
|
973
|
+
///
|
974
|
+
/// Prefer to use the more versatile function [`Self::send_if_modified()`]
|
975
|
+
/// if the value is only modified conditionally during the mutable borrow
|
976
|
+
/// to prevent unneeded change notifications for unmodified values.
|
977
|
+
///
|
978
|
+
/// # Panics
|
979
|
+
///
|
980
|
+
/// This function panics when the invocation of the `modify` closure panics.
|
981
|
+
/// No receivers are notified when panicking. All changes of the watched
|
982
|
+
/// value applied by the closure before panicking will be visible in
|
983
|
+
/// subsequent calls to `borrow`.
|
984
|
+
///
|
985
|
+
/// # Examples
|
986
|
+
///
|
987
|
+
/// ```
|
988
|
+
/// use tokio::sync::watch;
|
989
|
+
///
|
990
|
+
/// struct State {
|
991
|
+
/// counter: usize,
|
992
|
+
/// }
|
993
|
+
/// let (state_tx, state_rx) = watch::channel(State { counter: 0 });
|
994
|
+
/// state_tx.send_modify(|state| state.counter += 1);
|
995
|
+
/// assert_eq!(state_rx.borrow().counter, 1);
|
996
|
+
/// ```
|
997
|
+
pub fn send_modify<F>(&self, modify: F)
|
998
|
+
where
|
999
|
+
F: FnOnce(&mut T),
|
1000
|
+
{
|
1001
|
+
self.send_if_modified(|value| {
|
1002
|
+
modify(value);
|
1003
|
+
true
|
1004
|
+
});
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
/// Modifies the watched value **conditionally** in-place,
|
1008
|
+
/// notifying all receivers only if modified.
|
1009
|
+
///
|
1010
|
+
/// This can be useful for modifying the watched value, without
|
1011
|
+
/// having to allocate a new instance. Additionally, this
|
1012
|
+
/// method permits sending values even when there are no receivers.
|
1013
|
+
///
|
1014
|
+
/// The `modify` closure must return `true` if the value has actually
|
1015
|
+
/// been modified during the mutable borrow. It should only return `false`
|
1016
|
+
/// if the value is guaranteed to be unmodified despite the mutable
|
1017
|
+
/// borrow.
|
1018
|
+
///
|
1019
|
+
/// Receivers are only notified if the closure returned `true`. If the
|
1020
|
+
/// closure has modified the value but returned `false` this results
|
1021
|
+
/// in a *silent modification*, i.e. the modified value will be visible
|
1022
|
+
/// in subsequent calls to `borrow`, but receivers will not receive
|
1023
|
+
/// a change notification.
|
1024
|
+
///
|
1025
|
+
/// Returns the result of the closure, i.e. `true` if the value has
|
1026
|
+
/// been modified and `false` otherwise.
|
1027
|
+
///
|
1028
|
+
/// # Panics
|
1029
|
+
///
|
1030
|
+
/// This function panics when the invocation of the `modify` closure panics.
|
1031
|
+
/// No receivers are notified when panicking. All changes of the watched
|
1032
|
+
/// value applied by the closure before panicking will be visible in
|
1033
|
+
/// subsequent calls to `borrow`.
|
1034
|
+
///
|
1035
|
+
/// # Examples
|
1036
|
+
///
|
1037
|
+
/// ```
|
1038
|
+
/// use tokio::sync::watch;
|
1039
|
+
///
|
1040
|
+
/// struct State {
|
1041
|
+
/// counter: usize,
|
1042
|
+
/// }
|
1043
|
+
/// let (state_tx, mut state_rx) = watch::channel(State { counter: 1 });
|
1044
|
+
/// let inc_counter_if_odd = |state: &mut State| {
|
1045
|
+
/// if state.counter % 2 == 1 {
|
1046
|
+
/// state.counter += 1;
|
1047
|
+
/// return true;
|
1048
|
+
/// }
|
1049
|
+
/// false
|
1050
|
+
/// };
|
1051
|
+
///
|
1052
|
+
/// assert_eq!(state_rx.borrow().counter, 1);
|
1053
|
+
///
|
1054
|
+
/// assert!(!state_rx.has_changed().unwrap());
|
1055
|
+
/// assert!(state_tx.send_if_modified(inc_counter_if_odd));
|
1056
|
+
/// assert!(state_rx.has_changed().unwrap());
|
1057
|
+
/// assert_eq!(state_rx.borrow_and_update().counter, 2);
|
1058
|
+
///
|
1059
|
+
/// assert!(!state_rx.has_changed().unwrap());
|
1060
|
+
/// assert!(!state_tx.send_if_modified(inc_counter_if_odd));
|
1061
|
+
/// assert!(!state_rx.has_changed().unwrap());
|
1062
|
+
/// assert_eq!(state_rx.borrow_and_update().counter, 2);
|
1063
|
+
/// ```
|
1064
|
+
pub fn send_if_modified<F>(&self, modify: F) -> bool
|
1065
|
+
where
|
1066
|
+
F: FnOnce(&mut T) -> bool,
|
1067
|
+
{
|
1068
|
+
{
|
1069
|
+
// Acquire the write lock and update the value.
|
1070
|
+
let mut lock = self.shared.value.write().unwrap();
|
1071
|
+
|
1072
|
+
// Update the value and catch possible panic inside func.
|
1073
|
+
let result = panic::catch_unwind(panic::AssertUnwindSafe(|| modify(&mut lock)));
|
1074
|
+
match result {
|
1075
|
+
Ok(modified) => {
|
1076
|
+
if !modified {
|
1077
|
+
// Abort, i.e. don't notify receivers if unmodified
|
1078
|
+
return false;
|
1079
|
+
}
|
1080
|
+
// Continue if modified
|
1081
|
+
}
|
1082
|
+
Err(panicked) => {
|
1083
|
+
// Drop the lock to avoid poisoning it.
|
1084
|
+
drop(lock);
|
1085
|
+
// Forward the panic to the caller.
|
1086
|
+
panic::resume_unwind(panicked);
|
1087
|
+
// Unreachable
|
1088
|
+
}
|
1089
|
+
};
|
1090
|
+
|
1091
|
+
self.shared.state.increment_version_while_locked();
|
1092
|
+
|
1093
|
+
// Release the write lock.
|
1094
|
+
//
|
1095
|
+
// Incrementing the version counter while holding the lock ensures
|
1096
|
+
// that receivers are able to figure out the version number of the
|
1097
|
+
// value they are currently looking at.
|
1098
|
+
drop(lock);
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
self.shared.notify_rx.notify_waiters();
|
1102
|
+
|
1103
|
+
true
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
/// Sends a new value via the channel, notifying all receivers and returning
|
1107
|
+
/// the previous value in the channel.
|
1108
|
+
///
|
1109
|
+
/// This can be useful for reusing the buffers inside a watched value.
|
1110
|
+
/// Additionally, this method permits sending values even when there are no
|
1111
|
+
/// receivers.
|
1112
|
+
///
|
1113
|
+
/// # Examples
|
1114
|
+
///
|
1115
|
+
/// ```
|
1116
|
+
/// use tokio::sync::watch;
|
1117
|
+
///
|
1118
|
+
/// let (tx, _rx) = watch::channel(1);
|
1119
|
+
/// assert_eq!(tx.send_replace(2), 1);
|
1120
|
+
/// assert_eq!(tx.send_replace(3), 2);
|
1121
|
+
/// ```
|
1122
|
+
pub fn send_replace(&self, mut value: T) -> T {
|
1123
|
+
// swap old watched value with the new one
|
1124
|
+
self.send_modify(|old| mem::swap(old, &mut value));
|
1125
|
+
|
1126
|
+
value
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
/// Returns a reference to the most recently sent value
|
1130
|
+
///
|
1131
|
+
/// Outstanding borrows hold a read lock on the inner value. This means that
|
1132
|
+
/// long-lived borrows could cause the producer half to block. It is recommended
|
1133
|
+
/// to keep the borrow as short-lived as possible. Additionally, if you are
|
1134
|
+
/// running in an environment that allows `!Send` futures, you must ensure that
|
1135
|
+
/// the returned `Ref` type is never held alive across an `.await` point,
|
1136
|
+
/// otherwise, it can lead to a deadlock.
|
1137
|
+
///
|
1138
|
+
/// # Examples
|
1139
|
+
///
|
1140
|
+
/// ```
|
1141
|
+
/// use tokio::sync::watch;
|
1142
|
+
///
|
1143
|
+
/// let (tx, _) = watch::channel("hello");
|
1144
|
+
/// assert_eq!(*tx.borrow(), "hello");
|
1145
|
+
/// ```
|
1146
|
+
pub fn borrow(&self) -> Ref<'_, T> {
|
1147
|
+
let inner = self.shared.value.read().unwrap();
|
1148
|
+
|
1149
|
+
// The sender/producer always sees the current version
|
1150
|
+
let has_changed = false;
|
1151
|
+
|
1152
|
+
Ref { inner, has_changed }
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
/// Checks if the channel has been closed. This happens when all receivers
|
1156
|
+
/// have dropped.
|
1157
|
+
///
|
1158
|
+
/// # Examples
|
1159
|
+
///
|
1160
|
+
/// ```
|
1161
|
+
/// let (tx, rx) = tokio::sync::watch::channel(());
|
1162
|
+
/// assert!(!tx.is_closed());
|
1163
|
+
///
|
1164
|
+
/// drop(rx);
|
1165
|
+
/// assert!(tx.is_closed());
|
1166
|
+
/// ```
|
1167
|
+
pub fn is_closed(&self) -> bool {
|
1168
|
+
self.receiver_count() == 0
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
/// Completes when all receivers have dropped.
|
1172
|
+
///
|
1173
|
+
/// This allows the producer to get notified when interest in the produced
|
1174
|
+
/// values is canceled and immediately stop doing work.
|
1175
|
+
///
|
1176
|
+
/// # Cancel safety
|
1177
|
+
///
|
1178
|
+
/// This method is cancel safe. Once the channel is closed, it stays closed
|
1179
|
+
/// forever and all future calls to `closed` will return immediately.
|
1180
|
+
///
|
1181
|
+
/// # Examples
|
1182
|
+
///
|
1183
|
+
/// ```
|
1184
|
+
/// use tokio::sync::watch;
|
1185
|
+
///
|
1186
|
+
/// #[tokio::main]
|
1187
|
+
/// async fn main() {
|
1188
|
+
/// let (tx, rx) = watch::channel("hello");
|
1189
|
+
///
|
1190
|
+
/// tokio::spawn(async move {
|
1191
|
+
/// // use `rx`
|
1192
|
+
/// drop(rx);
|
1193
|
+
/// });
|
1194
|
+
///
|
1195
|
+
/// // Waits for `rx` to drop
|
1196
|
+
/// tx.closed().await;
|
1197
|
+
/// println!("the `rx` handles dropped")
|
1198
|
+
/// }
|
1199
|
+
/// ```
|
1200
|
+
pub async fn closed(&self) {
|
1201
|
+
crate::trace::async_trace_leaf().await;
|
1202
|
+
|
1203
|
+
while self.receiver_count() > 0 {
|
1204
|
+
let notified = self.shared.notify_tx.notified();
|
1205
|
+
|
1206
|
+
if self.receiver_count() == 0 {
|
1207
|
+
return;
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
notified.await;
|
1211
|
+
// The channel could have been reopened in the meantime by calling
|
1212
|
+
// `subscribe`, so we loop again.
|
1213
|
+
}
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
/// Creates a new [`Receiver`] connected to this `Sender`.
|
1217
|
+
///
|
1218
|
+
/// All messages sent before this call to `subscribe` are initially marked
|
1219
|
+
/// as seen by the new `Receiver`.
|
1220
|
+
///
|
1221
|
+
/// This method can be called even if there are no other receivers. In this
|
1222
|
+
/// case, the channel is reopened.
|
1223
|
+
///
|
1224
|
+
/// # Examples
|
1225
|
+
///
|
1226
|
+
/// The new channel will receive messages sent on this `Sender`.
|
1227
|
+
///
|
1228
|
+
/// ```
|
1229
|
+
/// use tokio::sync::watch;
|
1230
|
+
///
|
1231
|
+
/// #[tokio::main]
|
1232
|
+
/// async fn main() {
|
1233
|
+
/// let (tx, _rx) = watch::channel(0u64);
|
1234
|
+
///
|
1235
|
+
/// tx.send(5).unwrap();
|
1236
|
+
///
|
1237
|
+
/// let rx = tx.subscribe();
|
1238
|
+
/// assert_eq!(5, *rx.borrow());
|
1239
|
+
///
|
1240
|
+
/// tx.send(10).unwrap();
|
1241
|
+
/// assert_eq!(10, *rx.borrow());
|
1242
|
+
/// }
|
1243
|
+
/// ```
|
1244
|
+
///
|
1245
|
+
/// The most recent message is considered seen by the channel, so this test
|
1246
|
+
/// is guaranteed to pass.
|
1247
|
+
///
|
1248
|
+
/// ```
|
1249
|
+
/// use tokio::sync::watch;
|
1250
|
+
/// use tokio::time::Duration;
|
1251
|
+
///
|
1252
|
+
/// #[tokio::main]
|
1253
|
+
/// async fn main() {
|
1254
|
+
/// let (tx, _rx) = watch::channel(0u64);
|
1255
|
+
/// tx.send(5).unwrap();
|
1256
|
+
/// let mut rx = tx.subscribe();
|
1257
|
+
///
|
1258
|
+
/// tokio::spawn(async move {
|
1259
|
+
/// // by spawning and sleeping, the message is sent after `main`
|
1260
|
+
/// // hits the call to `changed`.
|
1261
|
+
/// # if false {
|
1262
|
+
/// tokio::time::sleep(Duration::from_millis(10)).await;
|
1263
|
+
/// # }
|
1264
|
+
/// tx.send(100).unwrap();
|
1265
|
+
/// });
|
1266
|
+
///
|
1267
|
+
/// rx.changed().await.unwrap();
|
1268
|
+
/// assert_eq!(100, *rx.borrow());
|
1269
|
+
/// }
|
1270
|
+
/// ```
|
1271
|
+
pub fn subscribe(&self) -> Receiver<T> {
|
1272
|
+
let shared = self.shared.clone();
|
1273
|
+
let version = shared.state.load().version();
|
1274
|
+
|
1275
|
+
// The CLOSED bit in the state tracks only whether the sender is
|
1276
|
+
// dropped, so we do not need to unset it if this reopens the channel.
|
1277
|
+
Receiver::from_shared(version, shared)
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
/// Returns the number of receivers that currently exist.
|
1281
|
+
///
|
1282
|
+
/// # Examples
|
1283
|
+
///
|
1284
|
+
/// ```
|
1285
|
+
/// use tokio::sync::watch;
|
1286
|
+
///
|
1287
|
+
/// #[tokio::main]
|
1288
|
+
/// async fn main() {
|
1289
|
+
/// let (tx, rx1) = watch::channel("hello");
|
1290
|
+
///
|
1291
|
+
/// assert_eq!(1, tx.receiver_count());
|
1292
|
+
///
|
1293
|
+
/// let mut _rx2 = rx1.clone();
|
1294
|
+
///
|
1295
|
+
/// assert_eq!(2, tx.receiver_count());
|
1296
|
+
/// }
|
1297
|
+
/// ```
|
1298
|
+
pub fn receiver_count(&self) -> usize {
|
1299
|
+
self.shared.ref_count_rx.load(Relaxed)
|
1300
|
+
}
|
1301
|
+
}
|
1302
|
+
|
1303
|
+
impl<T> Drop for Sender<T> {
|
1304
|
+
fn drop(&mut self) {
|
1305
|
+
self.shared.state.set_closed();
|
1306
|
+
self.shared.notify_rx.notify_waiters();
|
1307
|
+
}
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
// ===== impl Ref =====
|
1311
|
+
|
1312
|
+
impl<T> ops::Deref for Ref<'_, T> {
|
1313
|
+
type Target = T;
|
1314
|
+
|
1315
|
+
fn deref(&self) -> &T {
|
1316
|
+
self.inner.deref()
|
1317
|
+
}
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
#[cfg(all(test, loom))]
|
1321
|
+
mod tests {
|
1322
|
+
use futures::future::FutureExt;
|
1323
|
+
use loom::thread;
|
1324
|
+
|
1325
|
+
// test for https://github.com/tokio-rs/tokio/issues/3168
|
1326
|
+
#[test]
|
1327
|
+
fn watch_spurious_wakeup() {
|
1328
|
+
loom::model(|| {
|
1329
|
+
let (send, mut recv) = crate::sync::watch::channel(0i32);
|
1330
|
+
|
1331
|
+
send.send(1).unwrap();
|
1332
|
+
|
1333
|
+
let send_thread = thread::spawn(move || {
|
1334
|
+
send.send(2).unwrap();
|
1335
|
+
send
|
1336
|
+
});
|
1337
|
+
|
1338
|
+
recv.changed().now_or_never();
|
1339
|
+
|
1340
|
+
let send = send_thread.join().unwrap();
|
1341
|
+
let recv_thread = thread::spawn(move || {
|
1342
|
+
recv.changed().now_or_never();
|
1343
|
+
recv.changed().now_or_never();
|
1344
|
+
recv
|
1345
|
+
});
|
1346
|
+
|
1347
|
+
send.send(3).unwrap();
|
1348
|
+
|
1349
|
+
let mut recv = recv_thread.join().unwrap();
|
1350
|
+
let send_thread = thread::spawn(move || {
|
1351
|
+
send.send(2).unwrap();
|
1352
|
+
});
|
1353
|
+
|
1354
|
+
recv.changed().now_or_never();
|
1355
|
+
|
1356
|
+
send_thread.join().unwrap();
|
1357
|
+
});
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
#[test]
|
1361
|
+
fn watch_borrow() {
|
1362
|
+
loom::model(|| {
|
1363
|
+
let (send, mut recv) = crate::sync::watch::channel(0i32);
|
1364
|
+
|
1365
|
+
assert!(send.borrow().eq(&0));
|
1366
|
+
assert!(recv.borrow().eq(&0));
|
1367
|
+
|
1368
|
+
send.send(1).unwrap();
|
1369
|
+
assert!(send.borrow().eq(&1));
|
1370
|
+
|
1371
|
+
let send_thread = thread::spawn(move || {
|
1372
|
+
send.send(2).unwrap();
|
1373
|
+
send
|
1374
|
+
});
|
1375
|
+
|
1376
|
+
recv.changed().now_or_never();
|
1377
|
+
|
1378
|
+
let send = send_thread.join().unwrap();
|
1379
|
+
let recv_thread = thread::spawn(move || {
|
1380
|
+
recv.changed().now_or_never();
|
1381
|
+
recv.changed().now_or_never();
|
1382
|
+
recv
|
1383
|
+
});
|
1384
|
+
|
1385
|
+
send.send(3).unwrap();
|
1386
|
+
|
1387
|
+
let recv = recv_thread.join().unwrap();
|
1388
|
+
assert!(recv.borrow().eq(&3));
|
1389
|
+
assert!(send.borrow().eq(&3));
|
1390
|
+
|
1391
|
+
send.send(2).unwrap();
|
1392
|
+
|
1393
|
+
thread::spawn(move || {
|
1394
|
+
assert!(recv.borrow().eq(&2));
|
1395
|
+
});
|
1396
|
+
assert!(send.borrow().eq(&2));
|
1397
|
+
});
|
1398
|
+
}
|
1399
|
+
}
|