wasmtime 25.0.0 → 25.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +89 -80
- data/ext/Cargo.toml +8 -8
- data/ext/cargo-vendor/anyhow-1.0.89/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/anyhow-1.0.89/Cargo.toml +126 -0
- data/ext/cargo-vendor/anyhow-1.0.89/README.md +181 -0
- data/ext/cargo-vendor/anyhow-1.0.89/build/probe.rs +35 -0
- data/ext/cargo-vendor/anyhow-1.0.89/build.rs +192 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/backtrace.rs +411 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/chain.rs +102 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/context.rs +193 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/error.rs +1027 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/kind.rs +121 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/lib.rs +731 -0
- data/ext/cargo-vendor/anyhow-1.0.89/src/wrapper.rs +84 -0
- data/ext/cargo-vendor/anyhow-1.0.89/tests/compiletest.rs +7 -0
- data/ext/cargo-vendor/anyhow-1.0.89/tests/test_autotrait.rs +34 -0
- data/ext/cargo-vendor/anyhow-1.0.89/tests/test_backtrace.rs +15 -0
- data/ext/cargo-vendor/anyhow-1.0.89/tests/test_ensure.rs +741 -0
- data/ext/cargo-vendor/anyhow-1.0.89/tests/test_fmt.rs +93 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.15/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.15/Cargo.toml +99 -0
- data/ext/cargo-vendor/async-timer-1.0.0-beta.15/src/timer/async_tokio1.rs +308 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.112.2/Cargo.toml +59 -0
- data/ext/cargo-vendor/cranelift-bitset-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.112.2/Cargo.toml +74 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.112.2/Cargo.toml +222 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.2/Cargo.toml +54 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.2/Cargo.toml +32 -0
- data/ext/cargo-vendor/cranelift-control-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.112.2/Cargo.toml +43 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.112.2/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.112.2/Cargo.toml +97 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.112.2/Cargo.toml +69 -0
- data/ext/cargo-vendor/cranelift-native-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.112.2/Cargo.toml +52 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.112.2/Cargo.toml +128 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-0.1.2/Cargo.toml +85 -0
- data/ext/cargo-vendor/tokio-1.40.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.40.0/CHANGELOG.md +3574 -0
- data/ext/cargo-vendor/tokio-1.40.0/Cargo.toml +804 -0
- data/ext/cargo-vendor/tokio-1.40.0/README.md +252 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/fs/file.rs +978 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/fs/read_dir.rs +357 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/fs/try_exists.rs +28 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/future/maybe_done.rs +123 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/async_fd.rs +1358 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/async_read.rs +132 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/blocking.rs +294 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/bsd/poll_aio.rs +197 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/mod.rs +292 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/poll_evented.rs +305 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/seek.rs +57 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_reader.rs +311 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/buf_writer.rs +310 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/chain.rs +144 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy.rs +295 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_bidirectional.rs +137 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/copy_buf.rs +108 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/empty.rs +164 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/lines.rs +145 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mem.rs +429 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/mod.rs +111 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read.rs +55 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_buf.rs +72 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_exact.rs +69 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_int.rs +158 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_line.rs +119 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_end.rs +143 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_to_string.rs +78 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/read_until.rs +80 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/repeat.rs +75 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/sink.rs +94 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/split.rs +121 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/take.rs +138 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all.rs +55 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_all_buf.rs +64 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_buf.rs +55 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/io/util/write_int.rs +151 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/lib.rs +696 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/loom/mocked.rs +58 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u16.rs +48 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_u32.rs +48 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/atomic_usize.rs +60 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/loom/std/mutex.rs +44 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/macros/mod.rs +36 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/macros/select.rs +1261 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/addr.rs +333 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/listener.rs +451 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/tcp/stream.rs +1424 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/udp.rs +2049 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/datagram/socket.rs +1595 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/net/unix/listener.rs +240 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/process/mod.rs +1690 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/process/unix/pidfd_reaper.rs +322 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/pool.rs +608 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/blocking/schedule.rs +70 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/builder.rs +1456 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/config.rs +49 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/coop.rs +323 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/io/registration.rs +259 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/mod.rs +417 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/current_thread/mod.rs +795 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/mod.rs +283 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/handle.rs +84 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread/worker.rs +1261 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/handle.rs +85 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1604 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/core.rs +496 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/error.rs +202 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/harness.rs +532 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/id.rs +99 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/join.rs +378 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task/mod.rs +546 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/task_hooks.rs +36 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread.rs +462 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/loom_multi_thread_alt.rs +572 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/mod.rs +82 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/queue.rs +293 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/tests/task.rs +455 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/runtime/time/mod.rs +513 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/batch_semaphore.rs +780 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/broadcast.rs +1541 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/chan.rs +600 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/error.rs +169 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/mpsc/mod.rs +140 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/notify.rs +1218 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/sync/oneshot.rs +1408 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/task/consume_budget.rs +41 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/task/join_set.rs +798 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/task/local.rs +1257 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/task/spawn.rs +207 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/task/yield_now.rs +64 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/time/interval.rs +644 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/time/sleep.rs +453 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/util/bit.rs +64 -0
- data/ext/cargo-vendor/tokio-1.40.0/src/util/sync_wrapper.rs +37 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/async_send_sync.rs +759 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/io_async_fd.rs +855 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/io_copy.rs +101 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/io_write_all_buf.rs +145 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/macros_join.rs +176 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/sync_mpsc.rs +1456 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/task_abort.rs +332 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/task_hooks.rs +76 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/task_join_set.rs +347 -0
- data/ext/cargo-vendor/tokio-1.40.0/tests/uds_stream.rs +435 -0
- data/ext/cargo-vendor/wasi-common-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-25.0.2/Cargo.toml +242 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/Cargo.toml +65 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/README.md +80 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/aliases.rs +160 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/builder.rs +467 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/canonicals.rs +176 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/components.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/exports.rs +129 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/imports.rs +169 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/instances.rs +199 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/modules.rs +29 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/names.rs +155 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/start.rs +52 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component/types.rs +774 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/component.rs +168 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/branch_hints.rs +125 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/code.rs +4032 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/custom.rs +73 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/data.rs +186 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/dump.rs +627 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/elements.rs +224 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/exports.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/functions.rs +63 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/globals.rs +100 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/imports.rs +143 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/linking.rs +263 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/memories.rs +115 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/names.rs +304 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/producers.rs +181 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/start.rs +39 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tables.rs +129 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/tags.rs +85 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core/types.rs +717 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/core.rs +175 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/lib.rs +218 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/raw.rs +30 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode/component.rs +1344 -0
- data/ext/cargo-vendor/wasm-encoder-0.218.0/src/reencode.rs +1958 -0
- data/ext/cargo-vendor/wasmtime-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-25.0.2/Cargo.toml +407 -0
- data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/type_registry.rs +1233 -0
- data/ext/cargo-vendor/wasmtime-25.0.2/src/runtime/vm/traphandlers/backtrace.rs +287 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.2/Cargo.toml +33 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-25.0.2/Cargo.toml +112 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.2/Cargo.toml +115 -0
- data/ext/cargo-vendor/wasmtime-component-util-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-25.0.2/Cargo.toml +36 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.2/Cargo.toml +137 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.lock +792 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.2/Cargo.toml +195 -0
- data/ext/cargo-vendor/wasmtime-environ-25.0.2/src/compile/module_environ.rs +1267 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-25.0.2/Cargo.toml +84 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.2/Cargo.toml +86 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.2/Cargo.toml +71 -0
- data/ext/cargo-vendor/wasmtime-slab-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-25.0.2/Cargo.toml +50 -0
- data/ext/cargo-vendor/wasmtime-types-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-25.0.2/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.2/Cargo.toml +41 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-25.0.2/Cargo.toml +224 -0
- data/ext/cargo-vendor/wasmtime-winch-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-25.0.2/Cargo.toml +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.2/Cargo.toml +66 -0
- data/ext/cargo-vendor/wast-218.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-218.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/binary.rs +878 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/component.rs +329 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/expand.rs +896 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/func.rs +537 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/resolve.rs +1075 -0
- data/ext/cargo-vendor/wast-218.0.0/src/component/types.rs +1003 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/binary.rs +1495 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/expr.rs +2225 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/deinline_import_export.rs +232 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/names.rs +868 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/resolve/types.rs +274 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/table.rs +308 -0
- data/ext/cargo-vendor/wast-218.0.0/src/core/types.rs +1117 -0
- data/ext/cargo-vendor/wast-218.0.0/src/lib.rs +566 -0
- data/ext/cargo-vendor/wast-218.0.0/src/wast.rs +567 -0
- data/ext/cargo-vendor/wat-1.218.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.218.0/Cargo.toml +56 -0
- data/ext/cargo-vendor/wiggle-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-25.0.2/Cargo.toml +119 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-25.0.2/Cargo.toml +85 -0
- data/ext/cargo-vendor/wiggle-macro-25.0.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-25.0.2/Cargo.toml +78 -0
- data/ext/cargo-vendor/winch-codegen-0.23.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.23.2/Cargo.toml +95 -0
- data/ext/src/ruby_api/convert.rs +17 -2
- data/ext/src/ruby_api/engine.rs +1 -1
- data/ext/src/ruby_api/externals.rs +112 -2
- data/ext/src/ruby_api/func.rs +57 -0
- data/ext/src/ruby_api/global.rs +56 -3
- data/ext/src/ruby_api/memory.rs +43 -0
- data/ext/src/ruby_api/module.rs +29 -3
- data/ext/src/ruby_api/table.rs +49 -3
- data/lib/wasmtime/version.rb +1 -1
- metadata +1816 -1777
- data/ext/cargo-vendor/anyhow-1.0.86/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/anyhow-1.0.86/Cargo.toml +0 -130
- data/ext/cargo-vendor/anyhow-1.0.86/README.md +0 -181
- data/ext/cargo-vendor/anyhow-1.0.86/build/probe.rs +0 -35
- data/ext/cargo-vendor/anyhow-1.0.86/build.rs +0 -179
- data/ext/cargo-vendor/anyhow-1.0.86/src/backtrace.rs +0 -406
- data/ext/cargo-vendor/anyhow-1.0.86/src/chain.rs +0 -102
- data/ext/cargo-vendor/anyhow-1.0.86/src/context.rs +0 -193
- data/ext/cargo-vendor/anyhow-1.0.86/src/error.rs +0 -1024
- data/ext/cargo-vendor/anyhow-1.0.86/src/kind.rs +0 -121
- data/ext/cargo-vendor/anyhow-1.0.86/src/lib.rs +0 -730
- data/ext/cargo-vendor/anyhow-1.0.86/src/wrapper.rs +0 -84
- data/ext/cargo-vendor/anyhow-1.0.86/tests/compiletest.rs +0 -7
- data/ext/cargo-vendor/anyhow-1.0.86/tests/test_autotrait.rs +0 -15
- data/ext/cargo-vendor/anyhow-1.0.86/tests/test_backtrace.rs +0 -15
- data/ext/cargo-vendor/anyhow-1.0.86/tests/test_ensure.rs +0 -741
- data/ext/cargo-vendor/anyhow-1.0.86/tests/test_fmt.rs +0 -94
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/Cargo.toml +0 -78
- data/ext/cargo-vendor/async-timer-1.0.0-beta.14/src/timer/async_tokio1.rs +0 -299
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.112.0/Cargo.toml +0 -59
- data/ext/cargo-vendor/cranelift-bitset-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.112.0/Cargo.toml +0 -74
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.112.0/Cargo.toml +0 -222
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/Cargo.toml +0 -54
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/Cargo.toml +0 -32
- data/ext/cargo-vendor/cranelift-control-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.112.0/Cargo.toml +0 -43
- data/ext/cargo-vendor/cranelift-entity-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.112.0/Cargo.toml +0 -75
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.112.0/Cargo.toml +0 -97
- data/ext/cargo-vendor/cranelift-isle-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.112.0/Cargo.toml +0 -69
- data/ext/cargo-vendor/cranelift-native-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.112.0/Cargo.toml +0 -52
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.112.0/Cargo.toml +0 -128
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-0.1.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/tokio-1.39.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.39.3/CHANGELOG.md +0 -3525
- data/ext/cargo-vendor/tokio-1.39.3/Cargo.toml +0 -800
- data/ext/cargo-vendor/tokio-1.39.3/README.md +0 -252
- data/ext/cargo-vendor/tokio-1.39.3/src/fs/file.rs +0 -979
- data/ext/cargo-vendor/tokio-1.39.3/src/fs/read_dir.rs +0 -358
- data/ext/cargo-vendor/tokio-1.39.3/src/fs/try_exists.rs +0 -34
- data/ext/cargo-vendor/tokio-1.39.3/src/future/maybe_done.rs +0 -71
- data/ext/cargo-vendor/tokio-1.39.3/src/io/async_fd.rs +0 -1359
- data/ext/cargo-vendor/tokio-1.39.3/src/io/async_read.rs +0 -131
- data/ext/cargo-vendor/tokio-1.39.3/src/io/blocking.rs +0 -294
- data/ext/cargo-vendor/tokio-1.39.3/src/io/bsd/poll_aio.rs +0 -197
- data/ext/cargo-vendor/tokio-1.39.3/src/io/mod.rs +0 -292
- data/ext/cargo-vendor/tokio-1.39.3/src/io/poll_evented.rs +0 -304
- data/ext/cargo-vendor/tokio-1.39.3/src/io/seek.rs +0 -57
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_reader.rs +0 -311
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/buf_writer.rs +0 -310
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/chain.rs +0 -144
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy.rs +0 -295
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_bidirectional.rs +0 -137
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/copy_buf.rs +0 -108
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/empty.rs +0 -164
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/lines.rs +0 -145
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mem.rs +0 -374
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/mod.rs +0 -111
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read.rs +0 -55
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_buf.rs +0 -72
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_exact.rs +0 -69
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_int.rs +0 -159
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_line.rs +0 -119
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_end.rs +0 -143
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_to_string.rs +0 -78
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/read_until.rs +0 -80
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/repeat.rs +0 -75
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/sink.rs +0 -94
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/split.rs +0 -121
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/take.rs +0 -138
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all.rs +0 -55
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_all_buf.rs +0 -56
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_buf.rs +0 -55
- data/ext/cargo-vendor/tokio-1.39.3/src/io/util/write_int.rs +0 -152
- data/ext/cargo-vendor/tokio-1.39.3/src/lib.rs +0 -690
- data/ext/cargo-vendor/tokio-1.39.3/src/loom/mocked.rs +0 -53
- data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u16.rs +0 -45
- data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_u32.rs +0 -45
- data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/atomic_usize.rs +0 -57
- data/ext/cargo-vendor/tokio-1.39.3/src/loom/std/mutex.rs +0 -36
- data/ext/cargo-vendor/tokio-1.39.3/src/macros/mod.rs +0 -39
- data/ext/cargo-vendor/tokio-1.39.3/src/macros/ready.rs +0 -8
- data/ext/cargo-vendor/tokio-1.39.3/src/macros/select.rs +0 -1261
- data/ext/cargo-vendor/tokio-1.39.3/src/net/addr.rs +0 -333
- data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/listener.rs +0 -451
- data/ext/cargo-vendor/tokio-1.39.3/src/net/tcp/stream.rs +0 -1424
- data/ext/cargo-vendor/tokio-1.39.3/src/net/udp.rs +0 -2049
- data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/datagram/socket.rs +0 -1595
- data/ext/cargo-vendor/tokio-1.39.3/src/net/unix/listener.rs +0 -240
- data/ext/cargo-vendor/tokio-1.39.3/src/process/mod.rs +0 -1686
- data/ext/cargo-vendor/tokio-1.39.3/src/process/unix/pidfd_reaper.rs +0 -322
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/pool.rs +0 -608
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/blocking/schedule.rs +0 -60
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/builder.rs +0 -1352
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/config.rs +0 -43
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/coop.rs +0 -323
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/io/registration.rs +0 -259
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/mod.rs +0 -410
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/current_thread/mod.rs +0 -772
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/mod.rs +0 -271
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/handle.rs +0 -74
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread/worker.rs +0 -1260
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1603
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/core.rs +0 -494
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/error.rs +0 -169
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/harness.rs +0 -517
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/id.rs +0 -98
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/join.rs +0 -377
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/task/mod.rs +0 -537
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread.rs +0 -462
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/loom_multi_thread_alt.rs +0 -572
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/mod.rs +0 -76
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/queue.rs +0 -287
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/tests/task.rs +0 -353
- data/ext/cargo-vendor/tokio-1.39.3/src/runtime/time/mod.rs +0 -474
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/batch_semaphore.rs +0 -779
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/broadcast.rs +0 -1541
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/chan.rs +0 -597
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/error.rs +0 -149
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/mpsc/mod.rs +0 -124
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/notify.rs +0 -1218
- data/ext/cargo-vendor/tokio-1.39.3/src/sync/oneshot.rs +0 -1408
- data/ext/cargo-vendor/tokio-1.39.3/src/task/consume_budget.rs +0 -41
- data/ext/cargo-vendor/tokio-1.39.3/src/task/join_set.rs +0 -725
- data/ext/cargo-vendor/tokio-1.39.3/src/task/local.rs +0 -1250
- data/ext/cargo-vendor/tokio-1.39.3/src/task/spawn.rs +0 -207
- data/ext/cargo-vendor/tokio-1.39.3/src/task/yield_now.rs +0 -64
- data/ext/cargo-vendor/tokio-1.39.3/src/time/interval.rs +0 -644
- data/ext/cargo-vendor/tokio-1.39.3/src/time/sleep.rs +0 -452
- data/ext/cargo-vendor/tokio-1.39.3/src/util/bit.rs +0 -69
- data/ext/cargo-vendor/tokio-1.39.3/src/util/sync_wrapper.rs +0 -26
- data/ext/cargo-vendor/tokio-1.39.3/tests/async_send_sync.rs +0 -753
- data/ext/cargo-vendor/tokio-1.39.3/tests/io_async_fd.rs +0 -853
- data/ext/cargo-vendor/tokio-1.39.3/tests/io_copy.rs +0 -102
- data/ext/cargo-vendor/tokio-1.39.3/tests/io_write_all_buf.rs +0 -96
- data/ext/cargo-vendor/tokio-1.39.3/tests/macros_join.rs +0 -176
- data/ext/cargo-vendor/tokio-1.39.3/tests/sync_mpsc.rs +0 -1436
- data/ext/cargo-vendor/tokio-1.39.3/tests/task_abort.rs +0 -222
- data/ext/cargo-vendor/tokio-1.39.3/tests/task_join_set.rs +0 -307
- data/ext/cargo-vendor/tokio-1.39.3/tests/uds_stream.rs +0 -424
- data/ext/cargo-vendor/wasi-common-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-25.0.0/Cargo.toml +0 -242
- data/ext/cargo-vendor/wasmtime-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-25.0.0/Cargo.toml +0 -407
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/type_registry.rs +0 -1099
- data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-25.0.0/Cargo.toml +0 -112
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/Cargo.toml +0 -115
- data/ext/cargo-vendor/wasmtime-component-util-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-25.0.0/Cargo.toml +0 -36
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/Cargo.toml +0 -137
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.lock +0 -792
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.toml +0 -195
- data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/module_environ.rs +0 -1264
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-25.0.0/Cargo.toml +0 -84
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasmtime-slab-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-25.0.0/Cargo.toml +0 -50
- data/ext/cargo-vendor/wasmtime-types-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-25.0.0/Cargo.toml +0 -80
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/Cargo.toml +0 -41
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-25.0.0/Cargo.toml +0 -224
- data/ext/cargo-vendor/wasmtime-winch-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-25.0.0/Cargo.toml +0 -100
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/Cargo.toml +0 -66
- data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +0 -101
- data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +0 -1014
- data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +0 -324
- data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +0 -879
- data/ext/cargo-vendor/wast-217.0.0/src/component/func.rs +0 -486
- data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +0 -994
- data/ext/cargo-vendor/wast-217.0.0/src/component/types.rs +0 -999
- data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +0 -1556
- data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +0 -2110
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/deinline_import_export.rs +0 -232
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +0 -808
- data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +0 -273
- data/ext/cargo-vendor/wast-217.0.0/src/core/table.rs +0 -308
- data/ext/cargo-vendor/wast-217.0.0/src/core/types.rs +0 -1057
- data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +0 -557
- data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +0 -552
- data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +0 -56
- data/ext/cargo-vendor/wiggle-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-25.0.0/Cargo.toml +0 -119
- data/ext/cargo-vendor/wiggle-generate-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-25.0.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/wiggle-macro-25.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-25.0.0/Cargo.toml +0 -78
- data/ext/cargo-vendor/winch-codegen-0.23.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.23.0/Cargo.toml +0 -95
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/src/ptr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/drop/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_boxed.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_convert.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_downcast.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_ffi.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_repr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/chained-comparison.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/empty-ensure.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/ensure-nonbool.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/no-impl.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/temporary-value.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.86 → anyhow-1.0.89}/tests/ui/wrong-interpolation.stderr +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/README.md +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/c_wrapper/posix.c +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/interval.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/apple.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/dummy.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/posix.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/web.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/timer/win.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/interval.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timed.rs +0 -0
- /data/ext/cargo-vendor/{async-timer-1.0.0-beta.14 → async-timer-1.0.0-beta.15}/tests/timer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.112.0 → cranelift-bforest-0.112.2}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/src/scalar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.112.0 → cranelift-bitset-0.112.2}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/isle_prelude.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/abi.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/buffer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude_lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.112.0 → cranelift-codegen-0.112.2}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/pulley.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.112.0 → cranelift-codegen-meta-0.112.2}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.112.0 → cranelift-codegen-shared-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.112.0 → cranelift-control-0.112.2}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.112.0 → cranelift-entity-0.112.2}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.112.0 → cranelift-frontend-0.112.2}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.112.0 → cranelift-isle-0.112.2}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.112.0 → cranelift-native-0.112.2}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/code_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/environ/spec.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/sections_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.112.0 → cranelift-wasm-0.112.2}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/decode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/disas.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/imms.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/interp.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/opcode.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/src/regs.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/disas.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/interp.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-0.1.0 → pulley-interpreter-0.1.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/doc/os.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options/mock_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/interest.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdio_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_buf_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/flush.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/cfg.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/macros/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/net/windows/named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/context.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/io/scheduled_io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/metrics/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/stats.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/state.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/tests/task_combinations.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/entry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/source.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/level.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/registry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/unix.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/signal/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/bounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mpsc/unbounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/sync/watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/idle_notified_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/metric_atomics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rand.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/sharded_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/coop_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/duplex_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_repeat.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_sink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/join_handle_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/macros_try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/net_unix_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_change_of_runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_2174.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_basic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_time_start_paused.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/rt_unstable_metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/sync_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_pause.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.39.3 → tokio-1.40.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-25.0.0 → wasi-common-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile/code_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/engine.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/code_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/bindgen_examples/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/unsupported.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/libcalls.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/custom/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/signals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/vm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-25.0.0 → wasmtime-25.0.2}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-25.0.0 → wasmtime-asm-macros-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-25.0.0 → wasmtime-cache-25.0.2}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/char_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/conventions_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/dead-code_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/direct-import_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/flags_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/floats_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/integers_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/lists_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/many-arguments_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multi-return_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/multiversion_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/records_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/rename_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-export_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/resources-import_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/share-types_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-functions_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-lists_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke-export_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/smoke_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/strings_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/use-paths_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/variants_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/wat_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded/worlds-with-types_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-25.0.0 → wasmtime-component-macro-25.0.2}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-25.0.0 → wasmtime-component-util-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiler/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/func_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-25.0.0 → wasmtime-cranelift-25.0.2}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/info.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module_artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-25.0.0 → wasmtime-environ-25.0.2}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-25.0.0 → wasmtime-fiber-25.0.2}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-25.0.0 → wasmtime-jit-debug-25.0.2}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-25.0.0 → wasmtime-jit-icache-coherence-25.0.2}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-25.0.0 → wasmtime-slab-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-25.0.0 → wasmtime-types-25.0.2}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-25.0.0 → wasmtime-versioned-export-macros-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/bindings.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/ip_name_lookup.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/poll.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/imports.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/clocks/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/filesystem/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/error.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/poll.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/io/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/random/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/deps/sockets/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/wit/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview0/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview1/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-25.0.0 → wasmtime-wasi-25.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-25.0.0 → wasmtime-winch-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-25.0.0 → wasmtime-wit-bindgen-25.0.2}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-217.0.0 → wast-218.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.217.0 → wat-1.218.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-25.0.0 → wiggle-25.0.2}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-25.0.0 → wiggle-generate-25.0.2}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-25.0.0 → wiggle-macro-25.0.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/abi/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/bounds.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/builtin.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/call.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/context.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/control.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/codegen/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/abi.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/asm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/masm.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/stack.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.23.0 → winch-codegen-0.23.2}/src/visitor.rs +0 -0
@@ -0,0 +1,1233 @@
|
|
1
|
+
//! Implement a registry of types: function, struct, and array definitions.
|
2
|
+
//!
|
3
|
+
//! Helps implement fast indirect call signature checking, reference type
|
4
|
+
//! downcasting, and etc...
|
5
|
+
|
6
|
+
use crate::prelude::*;
|
7
|
+
use crate::sync::RwLock;
|
8
|
+
use crate::vm::{GcLayout, GcRuntime};
|
9
|
+
use crate::Engine;
|
10
|
+
use alloc::borrow::Cow;
|
11
|
+
use alloc::sync::Arc;
|
12
|
+
use core::iter;
|
13
|
+
use core::{
|
14
|
+
borrow::Borrow,
|
15
|
+
fmt::{self, Debug},
|
16
|
+
hash::{Hash, Hasher},
|
17
|
+
ops::Range,
|
18
|
+
sync::atomic::{
|
19
|
+
AtomicBool, AtomicUsize,
|
20
|
+
Ordering::{AcqRel, Acquire, Release},
|
21
|
+
},
|
22
|
+
};
|
23
|
+
use hashbrown::HashSet;
|
24
|
+
use wasmtime_environ::{
|
25
|
+
iter_entity_range,
|
26
|
+
packed_option::{PackedOption, ReservedValue},
|
27
|
+
EngineOrModuleTypeIndex, ModuleInternedTypeIndex, ModuleTypes, PrimaryMap, SecondaryMap,
|
28
|
+
TypeTrace, VMSharedTypeIndex, WasmRecGroup, WasmSubType,
|
29
|
+
};
|
30
|
+
use wasmtime_slab::{Id as SlabId, Slab};
|
31
|
+
|
32
|
+
// ### Notes on the Lifetime Management of Types
|
33
|
+
//
|
34
|
+
// All defined types from all Wasm modules loaded into Wasmtime are interned
|
35
|
+
// into their engine's `TypeRegistry`.
|
36
|
+
//
|
37
|
+
// With Wasm MVP, managing type lifetimes within the registry was easy: we only
|
38
|
+
// cared about canonicalizing types so that `call_indirect` was fast and we
|
39
|
+
// didn't waste memory on many copies of the same function type definition.
|
40
|
+
// Function types could only take and return simple scalars (i32/f64/etc...) and
|
41
|
+
// there were no type-to-type references. We could simply deduplicate function
|
42
|
+
// types and reference count their entries in the registry.
|
43
|
+
//
|
44
|
+
// The typed function references and GC proposals change everything. The former
|
45
|
+
// introduced function types that take a reference to a function of another
|
46
|
+
// specific type. This is a type-to-type reference. The latter introduces struct
|
47
|
+
// and array types that can have references to other struct, array, and function
|
48
|
+
// types, as well as recursion groups that allow cyclic references between
|
49
|
+
// types. Now type canonicalization additionally enables fast type checks and
|
50
|
+
// downcasts *across* modules: so that two modules which define the same struct
|
51
|
+
// type, for example, can pass instances of that struct type to each other, and
|
52
|
+
// we can quickly check that those instances are in fact of the expected types.
|
53
|
+
//
|
54
|
+
// But how do we manage the lifetimes of types that can reference other types as
|
55
|
+
// Wasm modules are dynamically loaded and unloaded from the engine? These
|
56
|
+
// modules can define subsets of the same types and there can be cyclic type
|
57
|
+
// references. Dynamic lifetimes, sharing, and cycles is a classic combination
|
58
|
+
// of constraints that push a design towards a tracing garbage collector (or,
|
59
|
+
// equivalently, a reference-counting collector with a cycle collector).
|
60
|
+
//
|
61
|
+
// However, we can rely on the following properties:
|
62
|
+
//
|
63
|
+
// 1. The unit of type canonicalization is a whole recursion group.
|
64
|
+
//
|
65
|
+
// 2. Type-to-type reference cycles may only happen within a recursion group and
|
66
|
+
// therefore type-to-type references across recursion groups are acyclic.
|
67
|
+
//
|
68
|
+
// Therefore, our type registry makes the following design decisions:
|
69
|
+
//
|
70
|
+
// * We manage the lifetime of whole recursion groups, not individual
|
71
|
+
// types. That is, every type in the recursion group stays alive as long as
|
72
|
+
// any type in the recursion group is kept alive. This is effectively mandated
|
73
|
+
// by property (1) and the hash consing it implies.
|
74
|
+
//
|
75
|
+
// * We still use naive reference counting to manage the lifetimes of recursion
|
76
|
+
// groups. A type-to-type reference that crosses the boundary from recursion
|
77
|
+
// group A to recursion group B will increment B's reference count when A is
|
78
|
+
// first registered and decrement B's reference count when A is removed from
|
79
|
+
// the registry. Because of property (2) we don't need to worry about cycles,
|
80
|
+
// which are the classic weakness of reference counting.
|
81
|
+
|
82
|
+
/// Represents a collection of shared types.
|
83
|
+
///
|
84
|
+
/// This is used to register shared types with a shared type registry.
|
85
|
+
///
|
86
|
+
/// The collection will unregister any contained types with the registry
|
87
|
+
/// when dropped.
|
88
|
+
pub struct TypeCollection {
|
89
|
+
engine: Engine,
|
90
|
+
rec_groups: Vec<RecGroupEntry>,
|
91
|
+
types: PrimaryMap<ModuleInternedTypeIndex, VMSharedTypeIndex>,
|
92
|
+
trampolines: SecondaryMap<VMSharedTypeIndex, PackedOption<ModuleInternedTypeIndex>>,
|
93
|
+
}
|
94
|
+
|
95
|
+
impl Debug for TypeCollection {
|
96
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
97
|
+
let TypeCollection {
|
98
|
+
engine: _,
|
99
|
+
rec_groups,
|
100
|
+
types,
|
101
|
+
trampolines,
|
102
|
+
} = self;
|
103
|
+
f.debug_struct("TypeCollection")
|
104
|
+
.field("rec_groups", rec_groups)
|
105
|
+
.field("types", types)
|
106
|
+
.field("trampolines", trampolines)
|
107
|
+
.finish_non_exhaustive()
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
impl TypeCollection {
|
112
|
+
/// Creates a type collection for a module given the module's types.
|
113
|
+
pub fn new_for_module(engine: &Engine, module_types: &ModuleTypes) -> Self {
|
114
|
+
let engine = engine.clone();
|
115
|
+
let registry = engine.signatures();
|
116
|
+
let gc_runtime = engine.gc_runtime();
|
117
|
+
let (rec_groups, types) = registry
|
118
|
+
.0
|
119
|
+
.write()
|
120
|
+
.register_module_types(&**gc_runtime, module_types);
|
121
|
+
|
122
|
+
let mut trampolines = SecondaryMap::with_capacity(types.len());
|
123
|
+
for (module_ty, trampoline) in module_types.trampoline_types() {
|
124
|
+
let shared_ty = types[module_ty];
|
125
|
+
let trampoline_ty = registry.trampoline_type(shared_ty);
|
126
|
+
trampolines[trampoline_ty] = Some(trampoline).into();
|
127
|
+
}
|
128
|
+
|
129
|
+
Self {
|
130
|
+
engine,
|
131
|
+
rec_groups,
|
132
|
+
types,
|
133
|
+
trampolines,
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
/// Treats the type collection as a map from a module type index to
|
138
|
+
/// registered shared type indexes.
|
139
|
+
///
|
140
|
+
/// This is used for looking up module shared type indexes during module
|
141
|
+
/// instantiation.
|
142
|
+
pub fn as_module_map(&self) -> &PrimaryMap<ModuleInternedTypeIndex, VMSharedTypeIndex> {
|
143
|
+
&self.types
|
144
|
+
}
|
145
|
+
|
146
|
+
/// Gets the shared type index given a module type index.
|
147
|
+
#[inline]
|
148
|
+
pub fn shared_type(&self, index: ModuleInternedTypeIndex) -> Option<VMSharedTypeIndex> {
|
149
|
+
self.types.get(index).copied()
|
150
|
+
}
|
151
|
+
|
152
|
+
/// Get the module-level type index of the trampoline type for the given
|
153
|
+
/// engine-level function type, if any.
|
154
|
+
///
|
155
|
+
/// This allows callers to look up the pre-compiled wasm-to-native
|
156
|
+
/// trampoline in this type collection's associated module.
|
157
|
+
///
|
158
|
+
/// See the docs for `WasmFuncType::trampoline_type` for details on
|
159
|
+
/// trampoline types.
|
160
|
+
#[inline]
|
161
|
+
pub fn trampoline_type(&self, ty: VMSharedTypeIndex) -> Option<ModuleInternedTypeIndex> {
|
162
|
+
let trampoline_ty = self.trampolines[ty].expand();
|
163
|
+
log::trace!("TypeCollection::trampoline_type({ty:?}) -> {trampoline_ty:?}");
|
164
|
+
trampoline_ty
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
impl Drop for TypeCollection {
|
169
|
+
fn drop(&mut self) {
|
170
|
+
if !self.rec_groups.is_empty() {
|
171
|
+
self.engine
|
172
|
+
.signatures()
|
173
|
+
.0
|
174
|
+
.write()
|
175
|
+
.unregister_type_collection(self);
|
176
|
+
}
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
#[inline]
|
181
|
+
fn shared_type_index_to_slab_id(index: VMSharedTypeIndex) -> SlabId {
|
182
|
+
assert!(!index.is_reserved_value());
|
183
|
+
SlabId::from_raw(index.bits())
|
184
|
+
}
|
185
|
+
|
186
|
+
#[inline]
|
187
|
+
fn slab_id_to_shared_type_index(id: SlabId) -> VMSharedTypeIndex {
|
188
|
+
let index = VMSharedTypeIndex::new(id.into_raw());
|
189
|
+
assert!(!index.is_reserved_value());
|
190
|
+
index
|
191
|
+
}
|
192
|
+
|
193
|
+
/// A Wasm type that has been registered in the engine's `TypeRegistry`.
|
194
|
+
///
|
195
|
+
/// Prevents its associated type from being unregistered while it is alive.
|
196
|
+
///
|
197
|
+
/// Automatically unregisters the type on drop. (Unless other `RegisteredTypes`
|
198
|
+
/// are keeping the type registered).
|
199
|
+
///
|
200
|
+
/// Dereferences to its underlying `WasmSubType`.
|
201
|
+
pub struct RegisteredType {
|
202
|
+
engine: Engine,
|
203
|
+
entry: RecGroupEntry,
|
204
|
+
ty: Arc<WasmSubType>,
|
205
|
+
index: VMSharedTypeIndex,
|
206
|
+
layout: Option<GcLayout>,
|
207
|
+
}
|
208
|
+
|
209
|
+
impl Debug for RegisteredType {
|
210
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
211
|
+
let RegisteredType {
|
212
|
+
engine: _,
|
213
|
+
entry: _,
|
214
|
+
ty,
|
215
|
+
index,
|
216
|
+
layout,
|
217
|
+
} = self;
|
218
|
+
f.debug_struct("RegisteredType")
|
219
|
+
.field("index", index)
|
220
|
+
.field("ty", ty)
|
221
|
+
.field("layout", layout)
|
222
|
+
.finish_non_exhaustive()
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
impl Clone for RegisteredType {
|
227
|
+
fn clone(&self) -> Self {
|
228
|
+
self.entry.incref("cloning RegisteredType");
|
229
|
+
RegisteredType {
|
230
|
+
engine: self.engine.clone(),
|
231
|
+
entry: self.entry.clone(),
|
232
|
+
ty: self.ty.clone(),
|
233
|
+
index: self.index,
|
234
|
+
layout: self.layout.clone(),
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
impl Drop for RegisteredType {
|
240
|
+
fn drop(&mut self) {
|
241
|
+
if self.entry.decref("dropping RegisteredType") {
|
242
|
+
self.engine
|
243
|
+
.signatures()
|
244
|
+
.0
|
245
|
+
.write()
|
246
|
+
.unregister_entry(self.entry.clone());
|
247
|
+
}
|
248
|
+
}
|
249
|
+
}
|
250
|
+
|
251
|
+
impl core::ops::Deref for RegisteredType {
|
252
|
+
type Target = WasmSubType;
|
253
|
+
|
254
|
+
fn deref(&self) -> &Self::Target {
|
255
|
+
&self.ty
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
impl PartialEq for RegisteredType {
|
260
|
+
fn eq(&self, other: &Self) -> bool {
|
261
|
+
let eq = Arc::ptr_eq(&self.entry.0, &other.entry.0);
|
262
|
+
|
263
|
+
if cfg!(debug_assertions) {
|
264
|
+
if eq {
|
265
|
+
assert!(Engine::same(&self.engine, &other.engine));
|
266
|
+
assert_eq!(self.ty, other.ty);
|
267
|
+
} else {
|
268
|
+
assert!(self.ty != other.ty || !Engine::same(&self.engine, &other.engine));
|
269
|
+
}
|
270
|
+
}
|
271
|
+
|
272
|
+
eq
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
impl Eq for RegisteredType {}
|
277
|
+
|
278
|
+
impl Hash for RegisteredType {
|
279
|
+
fn hash<H: Hasher>(&self, state: &mut H) {
|
280
|
+
let ptr = Arc::as_ptr(&self.entry.0);
|
281
|
+
ptr.hash(state);
|
282
|
+
}
|
283
|
+
}
|
284
|
+
|
285
|
+
impl RegisteredType {
|
286
|
+
/// Constructs a new `RegisteredType`, registering the given type with the
|
287
|
+
/// engine's `TypeRegistry`.
|
288
|
+
pub fn new(engine: &Engine, ty: WasmSubType) -> RegisteredType {
|
289
|
+
let (entry, index, ty, layout) = {
|
290
|
+
log::trace!("RegisteredType::new({ty:?})");
|
291
|
+
|
292
|
+
let gc_runtime = engine.gc_runtime();
|
293
|
+
let mut inner = engine.signatures().0.write();
|
294
|
+
|
295
|
+
// It shouldn't be possible for users to construct non-canonical
|
296
|
+
// types via the embedding API, and the only other types they can
|
297
|
+
// get are already-canonicalized types from modules, so we shouldn't
|
298
|
+
// ever get non-canonical types here. Furthermore, this is only
|
299
|
+
// called internally to Wasmtime, so we shouldn't ever have an
|
300
|
+
// engine mismatch; those should be caught earlier.
|
301
|
+
inner.assert_canonicalized_for_runtime_usage_in_this_registry(&ty);
|
302
|
+
|
303
|
+
let entry = inner.register_singleton_rec_group(&**gc_runtime, ty);
|
304
|
+
|
305
|
+
let index = entry.0.shared_type_indices[0];
|
306
|
+
let id = shared_type_index_to_slab_id(index);
|
307
|
+
let ty = inner.types[id].clone();
|
308
|
+
let layout = inner.type_to_gc_layout.get(index).and_then(|l| l.clone());
|
309
|
+
|
310
|
+
(entry, index, ty, layout)
|
311
|
+
};
|
312
|
+
|
313
|
+
RegisteredType::from_parts(engine.clone(), entry, index, ty, layout)
|
314
|
+
}
|
315
|
+
|
316
|
+
/// Create an owning handle to the given index's associated type.
|
317
|
+
///
|
318
|
+
/// This will prevent the associated type from being unregistered as long as
|
319
|
+
/// the returned `RegisteredType` is kept alive.
|
320
|
+
///
|
321
|
+
/// Returns `None` if `index` is not registered in the given engine's
|
322
|
+
/// registry.
|
323
|
+
pub fn root(engine: &Engine, index: VMSharedTypeIndex) -> Option<RegisteredType> {
|
324
|
+
let (entry, ty, layout) = {
|
325
|
+
let id = shared_type_index_to_slab_id(index);
|
326
|
+
let inner = engine.signatures().0.read();
|
327
|
+
|
328
|
+
let ty = inner.types.get(id)?.clone();
|
329
|
+
let entry = inner.type_to_rec_group[index].clone().unwrap();
|
330
|
+
let layout = inner.type_to_gc_layout.get(index).and_then(|l| l.clone());
|
331
|
+
|
332
|
+
// NB: make sure to incref while the lock is held to prevent:
|
333
|
+
//
|
334
|
+
// * This thread: read locks registry, gets entry E, unlocks registry
|
335
|
+
// * Other thread: drops `RegisteredType` for entry E, decref
|
336
|
+
// reaches zero, write locks registry, unregisters entry
|
337
|
+
// * This thread: increfs entry, but it isn't in the registry anymore
|
338
|
+
entry.incref("RegisteredType::root");
|
339
|
+
|
340
|
+
(entry, ty, layout)
|
341
|
+
};
|
342
|
+
|
343
|
+
Some(RegisteredType::from_parts(
|
344
|
+
engine.clone(),
|
345
|
+
entry,
|
346
|
+
index,
|
347
|
+
ty,
|
348
|
+
layout,
|
349
|
+
))
|
350
|
+
}
|
351
|
+
|
352
|
+
/// Construct a new `RegisteredType`.
|
353
|
+
///
|
354
|
+
/// It is the caller's responsibility to ensure that the entry's reference
|
355
|
+
/// count has already been incremented.
|
356
|
+
fn from_parts(
|
357
|
+
engine: Engine,
|
358
|
+
entry: RecGroupEntry,
|
359
|
+
index: VMSharedTypeIndex,
|
360
|
+
ty: Arc<WasmSubType>,
|
361
|
+
layout: Option<GcLayout>,
|
362
|
+
) -> Self {
|
363
|
+
debug_assert!(entry.0.registrations.load(Acquire) != 0);
|
364
|
+
RegisteredType {
|
365
|
+
engine,
|
366
|
+
entry,
|
367
|
+
ty,
|
368
|
+
index,
|
369
|
+
layout,
|
370
|
+
}
|
371
|
+
}
|
372
|
+
|
373
|
+
/// Get the engine whose registry this type is registered within.
|
374
|
+
pub fn engine(&self) -> &Engine {
|
375
|
+
&self.engine
|
376
|
+
}
|
377
|
+
|
378
|
+
/// Get this registered type's index.
|
379
|
+
pub fn index(&self) -> VMSharedTypeIndex {
|
380
|
+
self.index
|
381
|
+
}
|
382
|
+
|
383
|
+
/// Get this registered type's GC layout, if any.
|
384
|
+
///
|
385
|
+
/// Only struct and array types have GC layouts; function types do not have
|
386
|
+
/// layouts.
|
387
|
+
pub fn layout(&self) -> Option<&GcLayout> {
|
388
|
+
self.layout.as_ref()
|
389
|
+
}
|
390
|
+
}
|
391
|
+
|
392
|
+
/// An entry in the type registry.
|
393
|
+
///
|
394
|
+
/// Implements `Borrow`, `Eq`, and `Hash` by forwarding to the underlying Wasm
|
395
|
+
/// rec group, so that this can be a hash consing key. (We can't use
|
396
|
+
/// `Arc<RecGroupEntryInner>` directly for this purpose because `Arc<T>` doesn't
|
397
|
+
/// implement `Borrow<U>` when `T: Borrow<U>`).
|
398
|
+
#[derive(Clone)]
|
399
|
+
struct RecGroupEntry(Arc<RecGroupEntryInner>);
|
400
|
+
|
401
|
+
impl Debug for RecGroupEntry {
|
402
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
403
|
+
struct Ptr<'a, P>(&'a P);
|
404
|
+
impl<P: fmt::Pointer> Debug for Ptr<'_, P> {
|
405
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
406
|
+
write!(f, "{:#p}", *self.0)
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
f.debug_struct("RecGroupEntry")
|
411
|
+
.field("ptr", &Ptr(&self.0))
|
412
|
+
.field("shared_type_indices", &self.0.shared_type_indices)
|
413
|
+
.field("hash_consing_key", &self.0.hash_consing_key)
|
414
|
+
.field("registrations", &self.0.registrations.load(Acquire))
|
415
|
+
.finish()
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
419
|
+
struct RecGroupEntryInner {
|
420
|
+
/// The Wasm rec group, canonicalized for hash consing.
|
421
|
+
hash_consing_key: WasmRecGroup,
|
422
|
+
|
423
|
+
/// The shared type indices for each type in this rec group.
|
424
|
+
shared_type_indices: Box<[VMSharedTypeIndex]>,
|
425
|
+
|
426
|
+
/// The number of times that this entry has been registered in the
|
427
|
+
/// `TypeRegistryInner`.
|
428
|
+
///
|
429
|
+
/// This is an atomic counter so that cloning a `RegisteredType`, and
|
430
|
+
/// temporarily keeping a type registered, doesn't require locking the full
|
431
|
+
/// registry.
|
432
|
+
registrations: AtomicUsize,
|
433
|
+
|
434
|
+
/// Whether this entry has already been unregistered from the
|
435
|
+
/// `TypeRegistryInner`.
|
436
|
+
///
|
437
|
+
/// This flag exists to detect and avoid double-unregistration bugs that
|
438
|
+
/// could otherwise occur in rare cases. See the comments in
|
439
|
+
/// `TypeRegistryInner::unregister_type` for details.
|
440
|
+
///
|
441
|
+
/// To maintain consistency with the rest of this entry's state, this flag
|
442
|
+
/// should only be accessed while holding the type registry lock.
|
443
|
+
unregistered: AtomicBool,
|
444
|
+
}
|
445
|
+
|
446
|
+
impl PartialEq for RecGroupEntry {
|
447
|
+
fn eq(&self, other: &Self) -> bool {
|
448
|
+
self.0.hash_consing_key == other.0.hash_consing_key
|
449
|
+
}
|
450
|
+
}
|
451
|
+
|
452
|
+
impl Eq for RecGroupEntry {}
|
453
|
+
|
454
|
+
impl Hash for RecGroupEntry {
|
455
|
+
fn hash<H: Hasher>(&self, state: &mut H) {
|
456
|
+
self.0.hash_consing_key.hash(state);
|
457
|
+
}
|
458
|
+
}
|
459
|
+
|
460
|
+
impl Borrow<WasmRecGroup> for RecGroupEntry {
|
461
|
+
fn borrow(&self) -> &WasmRecGroup {
|
462
|
+
&self.0.hash_consing_key
|
463
|
+
}
|
464
|
+
}
|
465
|
+
|
466
|
+
impl RecGroupEntry {
|
467
|
+
/// Increment the registration count.
|
468
|
+
fn incref(&self, why: &str) {
|
469
|
+
let old_count = self.0.registrations.fetch_add(1, AcqRel);
|
470
|
+
log::trace!(
|
471
|
+
"increment registration count for {self:?} (registrations -> {}): {why}",
|
472
|
+
old_count + 1
|
473
|
+
);
|
474
|
+
}
|
475
|
+
|
476
|
+
/// Decrement the registration count and return `true` if the registration
|
477
|
+
/// count reached zero and this entry should be removed from the registry.
|
478
|
+
#[must_use = "caller must remove entry from registry if `decref` returns `true`"]
|
479
|
+
fn decref(&self, why: &str) -> bool {
|
480
|
+
let old_count = self.0.registrations.fetch_sub(1, AcqRel);
|
481
|
+
debug_assert_ne!(old_count, 0);
|
482
|
+
log::trace!(
|
483
|
+
"decrement registration count for {self:?} (registrations -> {}): {why}",
|
484
|
+
old_count - 1
|
485
|
+
);
|
486
|
+
old_count == 1
|
487
|
+
}
|
488
|
+
}
|
489
|
+
|
490
|
+
#[derive(Debug, Default)]
|
491
|
+
struct TypeRegistryInner {
|
492
|
+
// A hash map from a canonicalized-for-hash-consing rec group to its
|
493
|
+
// `VMSharedTypeIndex`es.
|
494
|
+
//
|
495
|
+
// There is an entry in this map for every rec group we have already
|
496
|
+
// registered. Before registering new rec groups, we first check this map to
|
497
|
+
// see if we've already registered an identical rec group that we should
|
498
|
+
// reuse instead.
|
499
|
+
hash_consing_map: HashSet<RecGroupEntry>,
|
500
|
+
|
501
|
+
// A map from `VMSharedTypeIndex::bits()` to the type index's associated
|
502
|
+
// Wasm type.
|
503
|
+
//
|
504
|
+
// These types are always canonicalized for runtime usage.
|
505
|
+
types: Slab<Arc<WasmSubType>>,
|
506
|
+
|
507
|
+
// A map that lets you walk backwards from a `VMSharedTypeIndex` to its
|
508
|
+
// `RecGroupEntry`.
|
509
|
+
type_to_rec_group: SecondaryMap<VMSharedTypeIndex, Option<RecGroupEntry>>,
|
510
|
+
|
511
|
+
// A map from a registered type to its complete list of supertypes.
|
512
|
+
//
|
513
|
+
// The supertypes are ordered from super- to subtype, i.e. the immediate
|
514
|
+
// parent supertype is the last element and the least-upper-bound of all
|
515
|
+
// supertypes is the first element.
|
516
|
+
//
|
517
|
+
// Types without any supertypes are omitted from this map. This means that
|
518
|
+
// we never allocate any backing storage for this map when Wasm GC is not in
|
519
|
+
// use.
|
520
|
+
type_to_supertypes: SecondaryMap<VMSharedTypeIndex, Option<Box<[VMSharedTypeIndex]>>>,
|
521
|
+
|
522
|
+
// A map from each registered function type to its trampoline type.
|
523
|
+
//
|
524
|
+
// Note that when a function type is its own trampoline type, then we omit
|
525
|
+
// the entry in this map as a memory optimization. This means that if only
|
526
|
+
// core Wasm function types are ever used, then we will never allocate any
|
527
|
+
// backing storage for this map. As a nice bonus, this also avoids cycles (a
|
528
|
+
// function type referencing itself) that our naive reference counting
|
529
|
+
// doesn't play well with.
|
530
|
+
type_to_trampoline: SecondaryMap<VMSharedTypeIndex, PackedOption<VMSharedTypeIndex>>,
|
531
|
+
|
532
|
+
// A map from each registered GC type to its layout.
|
533
|
+
//
|
534
|
+
// Function types do not have an entry in this map. Similar to the
|
535
|
+
// `type_to_{supertypes,trampoline}` maps, we completely omit the `None`
|
536
|
+
// entries for these types as a memory optimization.
|
537
|
+
type_to_gc_layout: SecondaryMap<VMSharedTypeIndex, Option<GcLayout>>,
|
538
|
+
|
539
|
+
// An explicit stack of entries that we are in the middle of dropping. Used
|
540
|
+
// to avoid recursion when dropping a type that is holding the last
|
541
|
+
// reference to another type, etc...
|
542
|
+
drop_stack: Vec<RecGroupEntry>,
|
543
|
+
}
|
544
|
+
|
545
|
+
impl TypeRegistryInner {
|
546
|
+
fn register_module_types(
|
547
|
+
&mut self,
|
548
|
+
gc_runtime: &dyn GcRuntime,
|
549
|
+
types: &ModuleTypes,
|
550
|
+
) -> (
|
551
|
+
Vec<RecGroupEntry>,
|
552
|
+
PrimaryMap<ModuleInternedTypeIndex, VMSharedTypeIndex>,
|
553
|
+
) {
|
554
|
+
log::trace!("Start registering module types");
|
555
|
+
|
556
|
+
let mut entries = Vec::with_capacity(types.rec_groups().len());
|
557
|
+
let mut map = PrimaryMap::<ModuleInternedTypeIndex, VMSharedTypeIndex>::with_capacity(
|
558
|
+
types.wasm_types().len(),
|
559
|
+
);
|
560
|
+
|
561
|
+
for (_rec_group_index, module_group) in types.rec_groups() {
|
562
|
+
let entry = self.register_rec_group(
|
563
|
+
gc_runtime,
|
564
|
+
&map,
|
565
|
+
module_group.clone(),
|
566
|
+
iter_entity_range(module_group.clone()).map(|ty| types[ty].clone()),
|
567
|
+
);
|
568
|
+
|
569
|
+
for (module_ty, engine_ty) in
|
570
|
+
iter_entity_range(module_group).zip(entry.0.shared_type_indices.iter())
|
571
|
+
{
|
572
|
+
let module_ty2 = map.push(*engine_ty);
|
573
|
+
assert_eq!(module_ty, module_ty2);
|
574
|
+
}
|
575
|
+
|
576
|
+
entries.push(entry);
|
577
|
+
}
|
578
|
+
|
579
|
+
log::trace!("End registering module types");
|
580
|
+
|
581
|
+
(entries, map)
|
582
|
+
}
|
583
|
+
|
584
|
+
/// Register a rec group in this registry.
|
585
|
+
///
|
586
|
+
/// The rec group may be either module-level canonical (i.e. straight from
|
587
|
+
/// `wasmparser`) or engine-level canonicalized for runtime usage in this
|
588
|
+
/// registry. It may *not* be engine-level canonicalized for hash consing or
|
589
|
+
/// engine-level canonicalized for a different type registry instance.
|
590
|
+
///
|
591
|
+
/// If this rec group is determined to be a duplicate of an
|
592
|
+
/// already-registered rec group, the existing rec group is reused.
|
593
|
+
///
|
594
|
+
/// Parameters:
|
595
|
+
///
|
596
|
+
/// * `map`: A map that we use to canonicalize inter-group type references
|
597
|
+
/// from module-canonical to engine-canonical indices. This must contain
|
598
|
+
/// entries for each inter-group type reference that this rec group
|
599
|
+
/// contains.
|
600
|
+
///
|
601
|
+
/// * `range`: The range of (module-level) types defined by this rec
|
602
|
+
/// group. This is used to determine which type references inside this rec
|
603
|
+
/// group are inter- vs intra-group.
|
604
|
+
///
|
605
|
+
/// * `types`: The types defined within this rec group. Must have the same
|
606
|
+
/// length as `range`.
|
607
|
+
///
|
608
|
+
/// The returned entry will have already had its reference count incremented
|
609
|
+
/// on behalf of callers.
|
610
|
+
fn register_rec_group(
|
611
|
+
&mut self,
|
612
|
+
gc_runtime: &dyn GcRuntime,
|
613
|
+
map: &PrimaryMap<ModuleInternedTypeIndex, VMSharedTypeIndex>,
|
614
|
+
range: Range<ModuleInternedTypeIndex>,
|
615
|
+
types: impl ExactSizeIterator<Item = WasmSubType>,
|
616
|
+
) -> RecGroupEntry {
|
617
|
+
debug_assert_eq!(iter_entity_range(range.clone()).len(), types.len());
|
618
|
+
|
619
|
+
let mut non_canon_types = Vec::with_capacity(types.len());
|
620
|
+
let hash_consing_key = WasmRecGroup {
|
621
|
+
types: types
|
622
|
+
.zip(iter_entity_range(range.clone()))
|
623
|
+
.map(|(mut ty, module_index)| {
|
624
|
+
non_canon_types.push((module_index, ty.clone()));
|
625
|
+
ty.canonicalize_for_hash_consing(range.clone(), &mut |idx| {
|
626
|
+
debug_assert!(idx < range.clone().start);
|
627
|
+
map[idx]
|
628
|
+
});
|
629
|
+
ty
|
630
|
+
})
|
631
|
+
.collect::<Box<[_]>>(),
|
632
|
+
};
|
633
|
+
|
634
|
+
// If we've already registered this rec group before, reuse it.
|
635
|
+
if let Some(entry) = self.hash_consing_map.get(&hash_consing_key) {
|
636
|
+
assert_eq!(entry.0.unregistered.load(Acquire), false);
|
637
|
+
entry.incref(
|
638
|
+
"hash consed to already-registered type in `TypeRegistryInner::register_rec_group`",
|
639
|
+
);
|
640
|
+
return entry.clone();
|
641
|
+
}
|
642
|
+
|
643
|
+
// Inter-group edges: increment the referenced group's ref
|
644
|
+
// count, because these other rec groups shouldn't be dropped
|
645
|
+
// while this rec group is still alive.
|
646
|
+
hash_consing_key
|
647
|
+
.trace_engine_indices::<_, ()>(&mut |index| {
|
648
|
+
let other_entry = &self.type_to_rec_group[index].as_ref().unwrap();
|
649
|
+
assert_eq!(other_entry.0.unregistered.load(Acquire), false);
|
650
|
+
other_entry.incref(
|
651
|
+
"new cross-group type reference to existing type in `register_rec_group`",
|
652
|
+
);
|
653
|
+
Ok(())
|
654
|
+
})
|
655
|
+
.unwrap();
|
656
|
+
|
657
|
+
// Register the individual types.
|
658
|
+
//
|
659
|
+
// Note that we can't update the reverse type-to-rec-group map until
|
660
|
+
// after we've constructed the `RecGroupEntry`, since that map needs to
|
661
|
+
// the fully-constructed entry for its values.
|
662
|
+
let module_rec_group_start = range.start;
|
663
|
+
let engine_rec_group_start = u32::try_from(self.types.len()).unwrap();
|
664
|
+
let shared_type_indices: Box<[_]> = non_canon_types
|
665
|
+
.into_iter()
|
666
|
+
.map(|(module_index, mut ty)| {
|
667
|
+
ty.canonicalize_for_runtime_usage(&mut |idx| {
|
668
|
+
if idx < module_rec_group_start {
|
669
|
+
map[idx]
|
670
|
+
} else {
|
671
|
+
let rec_group_offset = idx.as_u32() - module_rec_group_start.as_u32();
|
672
|
+
let index =
|
673
|
+
VMSharedTypeIndex::from_u32(engine_rec_group_start + rec_group_offset);
|
674
|
+
assert!(!index.is_reserved_value());
|
675
|
+
index
|
676
|
+
}
|
677
|
+
});
|
678
|
+
self.insert_one_type_from_rec_group(gc_runtime, module_index, ty)
|
679
|
+
})
|
680
|
+
.collect();
|
681
|
+
|
682
|
+
let entry = RecGroupEntry(Arc::new(RecGroupEntryInner {
|
683
|
+
hash_consing_key,
|
684
|
+
shared_type_indices,
|
685
|
+
registrations: AtomicUsize::new(1),
|
686
|
+
unregistered: AtomicBool::new(false),
|
687
|
+
}));
|
688
|
+
log::trace!("create new entry {entry:?} (registrations -> 1)");
|
689
|
+
|
690
|
+
let is_new_entry = self.hash_consing_map.insert(entry.clone());
|
691
|
+
debug_assert!(is_new_entry);
|
692
|
+
|
693
|
+
// Now that we've constructed the entry, we can update the reverse
|
694
|
+
// type-to-rec-group map.
|
695
|
+
for ty in entry.0.shared_type_indices.iter().copied() {
|
696
|
+
debug_assert!(self.type_to_rec_group[ty].is_none());
|
697
|
+
self.type_to_rec_group[ty] = Some(entry.clone());
|
698
|
+
}
|
699
|
+
|
700
|
+
// Finally, make sure to register the trampoline type for each function
|
701
|
+
// type in the rec group.
|
702
|
+
for shared_type_index in entry.0.shared_type_indices.iter().copied() {
|
703
|
+
let slab_id = shared_type_index_to_slab_id(shared_type_index);
|
704
|
+
if let Some(f) = self.types[slab_id].as_func() {
|
705
|
+
match f.trampoline_type() {
|
706
|
+
Cow::Borrowed(_) => {
|
707
|
+
// The function type is its own trampoline type. Leave
|
708
|
+
// its entry in `type_to_trampoline` empty to signal
|
709
|
+
// this.
|
710
|
+
}
|
711
|
+
Cow::Owned(trampoline) => {
|
712
|
+
// This will recursively call into rec group
|
713
|
+
// registration, but at most once since trampoline
|
714
|
+
// function types are their own trampoline type.
|
715
|
+
let trampoline_entry = self.register_singleton_rec_group(
|
716
|
+
gc_runtime,
|
717
|
+
WasmSubType {
|
718
|
+
is_final: true,
|
719
|
+
supertype: None,
|
720
|
+
composite_type: wasmtime_environ::WasmCompositeType::Func(
|
721
|
+
trampoline,
|
722
|
+
),
|
723
|
+
},
|
724
|
+
);
|
725
|
+
let trampoline_index = trampoline_entry.0.shared_type_indices[0];
|
726
|
+
log::trace!(
|
727
|
+
"Registering trampoline {trampoline_index:?} for function type {shared_type_index:?}"
|
728
|
+
);
|
729
|
+
debug_assert_ne!(shared_type_index, trampoline_index);
|
730
|
+
self.type_to_trampoline[shared_type_index] = Some(trampoline_index).into();
|
731
|
+
}
|
732
|
+
}
|
733
|
+
}
|
734
|
+
}
|
735
|
+
|
736
|
+
entry
|
737
|
+
}
|
738
|
+
|
739
|
+
/// Is the given type canonicalized for runtime usage this registry?
|
740
|
+
fn assert_canonicalized_for_runtime_usage_in_this_registry(&self, ty: &WasmSubType) {
|
741
|
+
ty.trace::<_, ()>(&mut |index| match index {
|
742
|
+
EngineOrModuleTypeIndex::RecGroup(_) | EngineOrModuleTypeIndex::Module(_) => {
|
743
|
+
panic!("not canonicalized for runtime usage: {ty:?}")
|
744
|
+
}
|
745
|
+
EngineOrModuleTypeIndex::Engine(idx) => {
|
746
|
+
let id = shared_type_index_to_slab_id(idx);
|
747
|
+
assert!(
|
748
|
+
self.types.contains(id),
|
749
|
+
"canonicalized in a different engine? {ty:?}"
|
750
|
+
);
|
751
|
+
Ok(())
|
752
|
+
}
|
753
|
+
})
|
754
|
+
.unwrap();
|
755
|
+
}
|
756
|
+
|
757
|
+
/// Insert a new type as part of registering a new rec group.
|
758
|
+
///
|
759
|
+
/// The type must be canonicalized for runtime usage in this registry and
|
760
|
+
/// its rec group must be a new one that we are currently registering, not
|
761
|
+
/// an already-registered rec group.
|
762
|
+
fn insert_one_type_from_rec_group(
|
763
|
+
&mut self,
|
764
|
+
gc_runtime: &dyn GcRuntime,
|
765
|
+
module_index: ModuleInternedTypeIndex,
|
766
|
+
ty: WasmSubType,
|
767
|
+
) -> VMSharedTypeIndex {
|
768
|
+
// Despite being canonicalized for runtime usage, this type may still
|
769
|
+
// have forward references to other types in the rec group we haven't
|
770
|
+
// yet registered. Therefore, we can't use our usual
|
771
|
+
// `assert_canonicalized_for_runtime_usage_in_this_registry` helper here
|
772
|
+
// as that will see the forward references and think they must be
|
773
|
+
// references to types in other registries.
|
774
|
+
assert!(
|
775
|
+
ty.is_canonicalized_for_runtime_usage(),
|
776
|
+
"type is not canonicalized for runtime usage: {ty:?}"
|
777
|
+
);
|
778
|
+
|
779
|
+
let gc_layout = match &ty.composite_type {
|
780
|
+
wasmtime_environ::WasmCompositeType::Func(_) => None,
|
781
|
+
wasmtime_environ::WasmCompositeType::Array(a) => {
|
782
|
+
Some(gc_runtime.array_layout(a).into())
|
783
|
+
}
|
784
|
+
wasmtime_environ::WasmCompositeType::Struct(s) => {
|
785
|
+
Some(gc_runtime.struct_layout(s).into())
|
786
|
+
}
|
787
|
+
};
|
788
|
+
|
789
|
+
// Add the type to our slab.
|
790
|
+
let id = self.types.alloc(Arc::new(ty));
|
791
|
+
let engine_index = slab_id_to_shared_type_index(id);
|
792
|
+
log::trace!(
|
793
|
+
"registered type {module_index:?} as {engine_index:?} = {:?}",
|
794
|
+
&self.types[id]
|
795
|
+
);
|
796
|
+
|
797
|
+
// Create the supertypes list for this type.
|
798
|
+
if let Some(supertype) = self.types[id].supertype {
|
799
|
+
let supertype = supertype.unwrap_engine_type_index();
|
800
|
+
let supers_supertypes = self.supertypes(supertype);
|
801
|
+
let mut supertypes = Vec::with_capacity(supers_supertypes.len() + 1);
|
802
|
+
supertypes.extend(
|
803
|
+
supers_supertypes
|
804
|
+
.iter()
|
805
|
+
.copied()
|
806
|
+
.chain(iter::once(supertype)),
|
807
|
+
);
|
808
|
+
self.type_to_supertypes[engine_index] = Some(supertypes.into_boxed_slice());
|
809
|
+
}
|
810
|
+
|
811
|
+
// Only write the type-to-gc-layout entry if we have a GC layout, so
|
812
|
+
// that the map can avoid any heap allocation for backing storage in the
|
813
|
+
// case where Wasm GC is disabled.
|
814
|
+
if let Some(layout) = gc_layout {
|
815
|
+
self.type_to_gc_layout[engine_index] = Some(layout);
|
816
|
+
}
|
817
|
+
|
818
|
+
engine_index
|
819
|
+
}
|
820
|
+
|
821
|
+
/// Get the supertypes list for the given type.
|
822
|
+
///
|
823
|
+
/// The supertypes are listed in super-to-sub order. `ty` itself is not
|
824
|
+
/// included in the list.
|
825
|
+
fn supertypes(&self, ty: VMSharedTypeIndex) -> &[VMSharedTypeIndex] {
|
826
|
+
self.type_to_supertypes
|
827
|
+
.get(ty)
|
828
|
+
.and_then(|s| s.as_deref())
|
829
|
+
.unwrap_or(&[])
|
830
|
+
}
|
831
|
+
|
832
|
+
/// Register a rec group consisting of a single type.
|
833
|
+
///
|
834
|
+
/// The type must already be canonicalized for runtime usage in this
|
835
|
+
/// registry.
|
836
|
+
///
|
837
|
+
/// The returned entry will have already had its reference count incremented
|
838
|
+
/// on behalf of callers.
|
839
|
+
fn register_singleton_rec_group(
|
840
|
+
&mut self,
|
841
|
+
gc_runtime: &dyn GcRuntime,
|
842
|
+
ty: WasmSubType,
|
843
|
+
) -> RecGroupEntry {
|
844
|
+
self.assert_canonicalized_for_runtime_usage_in_this_registry(&ty);
|
845
|
+
|
846
|
+
// This type doesn't have any module-level type references, since it is
|
847
|
+
// already canonicalized for runtime usage in this registry, so an empty
|
848
|
+
// map suffices.
|
849
|
+
let map = PrimaryMap::default();
|
850
|
+
|
851
|
+
// This must have `range.len() == 1`, even though we know this type
|
852
|
+
// doesn't have any intra-group type references, to satisfy
|
853
|
+
// `register_rec_group`'s preconditions.
|
854
|
+
let range = ModuleInternedTypeIndex::from_bits(u32::MAX - 1)
|
855
|
+
..ModuleInternedTypeIndex::from_bits(u32::MAX);
|
856
|
+
|
857
|
+
self.register_rec_group(gc_runtime, &map, range, iter::once(ty))
|
858
|
+
}
|
859
|
+
|
860
|
+
/// Unregister all of a type collection's rec groups.
|
861
|
+
fn unregister_type_collection(&mut self, collection: &TypeCollection) {
|
862
|
+
for entry in &collection.rec_groups {
|
863
|
+
if entry.decref("TypeRegistryInner::unregister_type_collection") {
|
864
|
+
self.unregister_entry(entry.clone());
|
865
|
+
}
|
866
|
+
}
|
867
|
+
}
|
868
|
+
|
869
|
+
/// Remove a zero-refcount entry from the registry.
|
870
|
+
///
|
871
|
+
/// This does *not* decrement the entry's registration count, it should
|
872
|
+
/// instead be invoked only after a previous decrement operation observed
|
873
|
+
/// zero remaining registrations.
|
874
|
+
fn unregister_entry(&mut self, entry: RecGroupEntry) {
|
875
|
+
debug_assert!(self.drop_stack.is_empty());
|
876
|
+
|
877
|
+
// There are two races to guard against before we can unregister the
|
878
|
+
// entry, even though it was on the drop stack:
|
879
|
+
//
|
880
|
+
// 1. Although an entry has to reach zero registrations before it is
|
881
|
+
// enqueued in the drop stack, we need to double check whether the
|
882
|
+
// entry is *still* at zero registrations. This is because someone
|
883
|
+
// else can resurrect the entry in between when the
|
884
|
+
// zero-registrations count was first observed and when we actually
|
885
|
+
// acquire the lock to unregister it. In this example, we have
|
886
|
+
// threads A and B, an existing rec group entry E, and a rec group
|
887
|
+
// entry E' that is a duplicate of E:
|
888
|
+
//
|
889
|
+
// Thread A | Thread B
|
890
|
+
// --------------------------------+-----------------------------
|
891
|
+
// acquire(type registry lock) |
|
892
|
+
// |
|
893
|
+
// | decref(E) --> 0
|
894
|
+
// |
|
895
|
+
// | block_on(type registry lock)
|
896
|
+
// |
|
897
|
+
// register(E') == incref(E) --> 1 |
|
898
|
+
// |
|
899
|
+
// release(type registry lock) |
|
900
|
+
// |
|
901
|
+
// | acquire(type registry lock)
|
902
|
+
// |
|
903
|
+
// | unregister(E) !!!!!!
|
904
|
+
//
|
905
|
+
// If we aren't careful, we can unregister a type while it is still
|
906
|
+
// in use!
|
907
|
+
//
|
908
|
+
// The fix in this case is that we skip unregistering the entry if
|
909
|
+
// its reference count is non-zero, since that means it was
|
910
|
+
// concurrently resurrected and is now in use again.
|
911
|
+
//
|
912
|
+
// 2. In a slightly more convoluted version of (1), where an entry is
|
913
|
+
// resurrected but then dropped *again*, someone might attempt to
|
914
|
+
// unregister an entry a second time:
|
915
|
+
//
|
916
|
+
// Thread A | Thread B
|
917
|
+
// --------------------------------|-----------------------------
|
918
|
+
// acquire(type registry lock) |
|
919
|
+
// |
|
920
|
+
// | decref(E) --> 0
|
921
|
+
// |
|
922
|
+
// | block_on(type registry lock)
|
923
|
+
// |
|
924
|
+
// register(E') == incref(E) --> 1 |
|
925
|
+
// |
|
926
|
+
// release(type registry lock) |
|
927
|
+
// |
|
928
|
+
// decref(E) --> 0 |
|
929
|
+
// |
|
930
|
+
// acquire(type registry lock) |
|
931
|
+
// |
|
932
|
+
// unregister(E) |
|
933
|
+
// |
|
934
|
+
// release(type registry lock) |
|
935
|
+
// |
|
936
|
+
// | acquire(type registry lock)
|
937
|
+
// |
|
938
|
+
// | unregister(E) !!!!!!
|
939
|
+
//
|
940
|
+
// If we aren't careful, we can unregister a type twice, which leads
|
941
|
+
// to panics and registry corruption!
|
942
|
+
//
|
943
|
+
// To detect this scenario and avoid the double-unregistration bug,
|
944
|
+
// we maintain an `unregistered` flag on entries. We set this flag
|
945
|
+
// once an entry is unregistered and therefore, even if it is
|
946
|
+
// enqueued in the drop stack multiple times, we only actually
|
947
|
+
// unregister the entry the first time.
|
948
|
+
//
|
949
|
+
// A final note: we don't need to worry about any concurrent
|
950
|
+
// modifications during the middle of this function's execution, only
|
951
|
+
// between (a) when we first observed a zero-registrations count and
|
952
|
+
// decided to unregister the type, and (b) when we acquired the type
|
953
|
+
// registry's lock so that we could perform that unregistration. This is
|
954
|
+
// because this method has exclusive access to `&mut self` -- that is,
|
955
|
+
// we have a write lock on the whole type registry -- and therefore no
|
956
|
+
// one else can create new references to this zero-registration entry
|
957
|
+
// and bring it back to life (which would require finding it in
|
958
|
+
// `self.hash_consing_map`, which no one else has access to, because we
|
959
|
+
// now have an exclusive lock on `self`).
|
960
|
+
|
961
|
+
// Handle scenario (1) from above.
|
962
|
+
let registrations = entry.0.registrations.load(Acquire);
|
963
|
+
if registrations != 0 {
|
964
|
+
log::trace!(
|
965
|
+
"{entry:?} was concurrently resurrected and no longer has \
|
966
|
+
zero registrations (registrations -> {registrations})",
|
967
|
+
);
|
968
|
+
assert_eq!(entry.0.unregistered.load(Acquire), false);
|
969
|
+
return;
|
970
|
+
}
|
971
|
+
|
972
|
+
// Handle scenario (2) from above.
|
973
|
+
if entry.0.unregistered.load(Acquire) {
|
974
|
+
log::trace!(
|
975
|
+
"{entry:?} was concurrently resurrected, dropped again, \
|
976
|
+
and already unregistered"
|
977
|
+
);
|
978
|
+
return;
|
979
|
+
}
|
980
|
+
|
981
|
+
// Okay, we are really going to unregister this entry. Enqueue it on the
|
982
|
+
// drop stack.
|
983
|
+
self.drop_stack.push(entry);
|
984
|
+
|
985
|
+
// Keep unregistering entries until the drop stack is empty. This is
|
986
|
+
// logically a recursive process where if we unregister a type that was
|
987
|
+
// the only thing keeping another type alive, we then recursively
|
988
|
+
// unregister that other type as well. However, we use this explicit
|
989
|
+
// drop stack to avoid recursion and the potential stack overflows that
|
990
|
+
// recursion implies.
|
991
|
+
while let Some(entry) = self.drop_stack.pop() {
|
992
|
+
log::trace!("Start unregistering {entry:?}");
|
993
|
+
|
994
|
+
// All entries on the drop stack should *really* be ready for
|
995
|
+
// unregistration, since no one can resurrect entries once we've
|
996
|
+
// locked the registry.
|
997
|
+
assert_eq!(entry.0.registrations.load(Acquire), 0);
|
998
|
+
assert_eq!(entry.0.unregistered.load(Acquire), false);
|
999
|
+
|
1000
|
+
// We are taking responsibility for unregistering this entry, so
|
1001
|
+
// prevent anyone else from attempting to do it again.
|
1002
|
+
entry.0.unregistered.store(true, Release);
|
1003
|
+
|
1004
|
+
// Decrement any other types that this type was shallowly
|
1005
|
+
// (i.e. non-transitively) referencing and keeping alive. If this
|
1006
|
+
// was the last thing keeping them registered, its okay to
|
1007
|
+
// unregister them as well now.
|
1008
|
+
debug_assert!(entry.0.hash_consing_key.is_canonicalized_for_hash_consing());
|
1009
|
+
entry
|
1010
|
+
.0
|
1011
|
+
.hash_consing_key
|
1012
|
+
.trace_engine_indices::<_, ()>(&mut |other_index| {
|
1013
|
+
let other_entry = self.type_to_rec_group[other_index].as_ref().unwrap();
|
1014
|
+
if other_entry.decref(
|
1015
|
+
"referenced by dropped entry in \
|
1016
|
+
`TypeCollection::unregister_entry`",
|
1017
|
+
) {
|
1018
|
+
self.drop_stack.push(other_entry.clone());
|
1019
|
+
}
|
1020
|
+
Ok(())
|
1021
|
+
})
|
1022
|
+
.unwrap();
|
1023
|
+
|
1024
|
+
// Remove the entry from the hash-consing map. If we register a
|
1025
|
+
// duplicate definition of this rec group again in the future, it
|
1026
|
+
// will be as if it is the first time it has ever been registered,
|
1027
|
+
// and it will be inserted into the hash-consing map again at that
|
1028
|
+
// time.
|
1029
|
+
self.hash_consing_map.remove(&entry);
|
1030
|
+
|
1031
|
+
// Similarly, remove the rec group's types from the registry, as
|
1032
|
+
// well as their entries from the reverse type-to-rec-group
|
1033
|
+
// map. Additionally, stop holding a strong reference from each
|
1034
|
+
// function type in the rec group to that function type's trampoline
|
1035
|
+
// type.
|
1036
|
+
for ty in entry.0.shared_type_indices.iter().copied() {
|
1037
|
+
log::trace!("removing {ty:?} from registry");
|
1038
|
+
|
1039
|
+
let removed_entry = self.type_to_rec_group[ty].take();
|
1040
|
+
debug_assert_eq!(removed_entry.unwrap(), entry);
|
1041
|
+
|
1042
|
+
// Remove the associated trampoline type, if any.
|
1043
|
+
if let Some(trampoline_ty) =
|
1044
|
+
self.type_to_trampoline.get(ty).and_then(|x| x.expand())
|
1045
|
+
{
|
1046
|
+
self.type_to_trampoline[ty] = None.into();
|
1047
|
+
let trampoline_entry = self.type_to_rec_group[trampoline_ty].as_ref().unwrap();
|
1048
|
+
if trampoline_entry
|
1049
|
+
.decref("removing reference from a function type to its trampoline type")
|
1050
|
+
{
|
1051
|
+
self.drop_stack.push(trampoline_entry.clone());
|
1052
|
+
}
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
// Remove the type's supertypes list, if any. Take care to guard
|
1056
|
+
// this assignment so that we don't accidentally force the
|
1057
|
+
// secondary map to allocate even when we never actually use
|
1058
|
+
// Wasm GC.
|
1059
|
+
if self.type_to_supertypes.get(ty).is_some() {
|
1060
|
+
self.type_to_supertypes[ty] = None;
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
// Same as above, but for the type's GC layout.
|
1064
|
+
if self.type_to_gc_layout.get(ty).is_some() {
|
1065
|
+
self.type_to_gc_layout[ty] = None;
|
1066
|
+
}
|
1067
|
+
|
1068
|
+
let id = shared_type_index_to_slab_id(ty);
|
1069
|
+
self.types.dealloc(id);
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
log::trace!("End unregistering {entry:?}");
|
1073
|
+
}
|
1074
|
+
}
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
// `TypeRegistryInner` implements `Drop` in debug builds to assert that
|
1078
|
+
// all types have been unregistered for the registry.
|
1079
|
+
#[cfg(debug_assertions)]
|
1080
|
+
impl Drop for TypeRegistryInner {
|
1081
|
+
fn drop(&mut self) {
|
1082
|
+
log::trace!("Dropping type registry: {self:#?}");
|
1083
|
+
let TypeRegistryInner {
|
1084
|
+
hash_consing_map,
|
1085
|
+
types,
|
1086
|
+
type_to_rec_group,
|
1087
|
+
type_to_supertypes,
|
1088
|
+
type_to_trampoline,
|
1089
|
+
type_to_gc_layout,
|
1090
|
+
drop_stack,
|
1091
|
+
} = self;
|
1092
|
+
assert!(
|
1093
|
+
hash_consing_map.is_empty(),
|
1094
|
+
"type registry not empty: hash consing map is not empty: {hash_consing_map:#?}"
|
1095
|
+
);
|
1096
|
+
assert!(
|
1097
|
+
types.is_empty(),
|
1098
|
+
"type registry not empty: types slab is not empty: {types:#?}"
|
1099
|
+
);
|
1100
|
+
assert!(
|
1101
|
+
type_to_rec_group.is_empty() || type_to_rec_group.values().all(|x| x.is_none()),
|
1102
|
+
"type registry not empty: type-to-rec-group map is not empty: {type_to_rec_group:#?}"
|
1103
|
+
);
|
1104
|
+
assert!(
|
1105
|
+
type_to_supertypes.is_empty() || type_to_supertypes.values().all(|x| x.is_none()),
|
1106
|
+
"type registry not empty: type-to-supertypes map is not empty: {type_to_supertypes:#?}"
|
1107
|
+
);
|
1108
|
+
assert!(
|
1109
|
+
type_to_trampoline.is_empty() || type_to_trampoline.values().all(|x| x.is_none()),
|
1110
|
+
"type registry not empty: type-to-trampoline map is not empty: {type_to_trampoline:#?}"
|
1111
|
+
);
|
1112
|
+
assert!(
|
1113
|
+
type_to_gc_layout.is_empty() || type_to_gc_layout.values().all(|x| x.is_none()),
|
1114
|
+
"type registry not empty: type-to-gc-layout map is not empty: {type_to_gc_layout:#?}"
|
1115
|
+
);
|
1116
|
+
assert!(
|
1117
|
+
drop_stack.is_empty(),
|
1118
|
+
"type registry not empty: drop stack is not empty: {drop_stack:#?}"
|
1119
|
+
);
|
1120
|
+
}
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
/// Implements a shared type registry.
|
1124
|
+
///
|
1125
|
+
/// WebAssembly requires that the caller and callee types in an indirect
|
1126
|
+
/// call must match. To implement this efficiently, keep a registry of all
|
1127
|
+
/// types, shared by all instances, so that call sites can just do an
|
1128
|
+
/// index comparison.
|
1129
|
+
#[derive(Debug)]
|
1130
|
+
pub struct TypeRegistry(RwLock<TypeRegistryInner>);
|
1131
|
+
|
1132
|
+
impl TypeRegistry {
|
1133
|
+
/// Creates a new shared type registry.
|
1134
|
+
pub fn new() -> Self {
|
1135
|
+
Self(RwLock::new(TypeRegistryInner::default()))
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
/// Looks up a function type from a shared type index.
|
1139
|
+
///
|
1140
|
+
/// This does *NOT* prevent the type from being unregistered while you are
|
1141
|
+
/// still using the resulting value! Use the `RegisteredType::root`
|
1142
|
+
/// constructor if you need to ensure that property and you don't have some
|
1143
|
+
/// other mechanism already keeping the type registered.
|
1144
|
+
pub fn borrow(&self, index: VMSharedTypeIndex) -> Option<Arc<WasmSubType>> {
|
1145
|
+
let id = shared_type_index_to_slab_id(index);
|
1146
|
+
let inner = self.0.read();
|
1147
|
+
inner.types.get(id).cloned()
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
/// Get the GC layout for the given index's type.
|
1151
|
+
///
|
1152
|
+
/// Returns `None` for types that do not have GC layouts (i.e. function
|
1153
|
+
/// types).
|
1154
|
+
pub fn layout(&self, index: VMSharedTypeIndex) -> Option<GcLayout> {
|
1155
|
+
let inner = self.0.read();
|
1156
|
+
inner.type_to_gc_layout.get(index).and_then(|l| l.clone())
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
/// Get the trampoline type for the given function type index.
|
1160
|
+
///
|
1161
|
+
/// Panics for non-function type indices.
|
1162
|
+
pub fn trampoline_type(&self, index: VMSharedTypeIndex) -> VMSharedTypeIndex {
|
1163
|
+
let slab_id = shared_type_index_to_slab_id(index);
|
1164
|
+
let inner = self.0.read();
|
1165
|
+
|
1166
|
+
let ty = &inner.types[slab_id];
|
1167
|
+
debug_assert!(
|
1168
|
+
ty.is_func(),
|
1169
|
+
"cannot get the trampoline type of a non-function type: {index:?} = {ty:?}"
|
1170
|
+
);
|
1171
|
+
|
1172
|
+
let trampoline_ty = match inner.type_to_trampoline.get(index).and_then(|x| x.expand()) {
|
1173
|
+
Some(ty) => ty,
|
1174
|
+
None => {
|
1175
|
+
// The function type is its own trampoline type.
|
1176
|
+
index
|
1177
|
+
}
|
1178
|
+
};
|
1179
|
+
log::trace!("TypeRegistry::trampoline_type({index:?}) -> {trampoline_ty:?}");
|
1180
|
+
trampoline_ty
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
/// Is type `sub` a subtype of `sup`?
|
1184
|
+
pub fn is_subtype(&self, sub: VMSharedTypeIndex, sup: VMSharedTypeIndex) -> bool {
|
1185
|
+
if sub == sup {
|
1186
|
+
return true;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
// Do the O(1) subtype checking trick:
|
1190
|
+
//
|
1191
|
+
// In a type system with single inheritance, the subtyping relationships
|
1192
|
+
// between all types form a set of trees. The root of each tree is a
|
1193
|
+
// type that has no supertype; each node's immediate children are the
|
1194
|
+
// types that directly subtype that node.
|
1195
|
+
//
|
1196
|
+
// For example, consider these types:
|
1197
|
+
//
|
1198
|
+
// class Base {}
|
1199
|
+
// class A subtypes Base {}
|
1200
|
+
// class B subtypes Base {}
|
1201
|
+
// class C subtypes A {}
|
1202
|
+
// class D subtypes A {}
|
1203
|
+
// class E subtypes C {}
|
1204
|
+
//
|
1205
|
+
// These types produce the following tree:
|
1206
|
+
//
|
1207
|
+
// Base
|
1208
|
+
// / \
|
1209
|
+
// A B
|
1210
|
+
// / \
|
1211
|
+
// C D
|
1212
|
+
// /
|
1213
|
+
// E
|
1214
|
+
//
|
1215
|
+
// Note the following properties:
|
1216
|
+
//
|
1217
|
+
// 1. If `sub` is a subtype of `sup` (either directly or transitively)
|
1218
|
+
// then `sup` *must* be on the path from `sub` up to the root of
|
1219
|
+
// `sub`'s tree.
|
1220
|
+
//
|
1221
|
+
// 2. Additionally, `sup` *must* be the `i`th node down from the root in
|
1222
|
+
// that path, where `i` is the length of the path from `sup` to its
|
1223
|
+
// tree's root.
|
1224
|
+
//
|
1225
|
+
// Therefore, if we have the path to the root for each type (we do) then
|
1226
|
+
// we can simply check if `sup` is at index `supertypes(sup).len()`
|
1227
|
+
// within `supertypes(sub)`.
|
1228
|
+
let inner = self.0.read();
|
1229
|
+
let sub_supertypes = inner.supertypes(sub);
|
1230
|
+
let sup_supertypes = inner.supertypes(sup);
|
1231
|
+
sub_supertypes.get(sup_supertypes.len()) == Some(&sup)
|
1232
|
+
}
|
1233
|
+
}
|