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,1690 @@
|
|
1
|
+
//! An implementation of asynchronous process management for Tokio.
|
2
|
+
//!
|
3
|
+
//! This module provides a [`Command`] struct that imitates the interface of the
|
4
|
+
//! [`std::process::Command`] type in the standard library, but provides asynchronous versions of
|
5
|
+
//! functions that create processes. These functions (`spawn`, `status`, `output` and their
|
6
|
+
//! variants) return "future aware" types that interoperate with Tokio. The asynchronous process
|
7
|
+
//! support is provided through signal handling on Unix and system APIs on Windows.
|
8
|
+
//!
|
9
|
+
//! [`std::process::Command`]: std::process::Command
|
10
|
+
//!
|
11
|
+
//! # Examples
|
12
|
+
//!
|
13
|
+
//! Here's an example program which will spawn `echo hello world` and then wait
|
14
|
+
//! for it complete.
|
15
|
+
//!
|
16
|
+
//! ```no_run
|
17
|
+
//! use tokio::process::Command;
|
18
|
+
//!
|
19
|
+
//! #[tokio::main]
|
20
|
+
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
21
|
+
//! // The usage is similar as with the standard library's `Command` type
|
22
|
+
//! let mut child = Command::new("echo")
|
23
|
+
//! .arg("hello")
|
24
|
+
//! .arg("world")
|
25
|
+
//! .spawn()
|
26
|
+
//! .expect("failed to spawn");
|
27
|
+
//!
|
28
|
+
//! // Await until the command completes
|
29
|
+
//! let status = child.wait().await?;
|
30
|
+
//! println!("the command exited with: {}", status);
|
31
|
+
//! Ok(())
|
32
|
+
//! }
|
33
|
+
//! ```
|
34
|
+
//!
|
35
|
+
//! Next, let's take a look at an example where we not only spawn `echo hello
|
36
|
+
//! world` but we also capture its output.
|
37
|
+
//!
|
38
|
+
//! ```no_run
|
39
|
+
//! use tokio::process::Command;
|
40
|
+
//!
|
41
|
+
//! #[tokio::main]
|
42
|
+
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
43
|
+
//! // Like above, but use `output` which returns a future instead of
|
44
|
+
//! // immediately returning the `Child`.
|
45
|
+
//! let output = Command::new("echo").arg("hello").arg("world")
|
46
|
+
//! .output();
|
47
|
+
//!
|
48
|
+
//! let output = output.await?;
|
49
|
+
//!
|
50
|
+
//! assert!(output.status.success());
|
51
|
+
//! assert_eq!(output.stdout, b"hello world\n");
|
52
|
+
//! Ok(())
|
53
|
+
//! }
|
54
|
+
//! ```
|
55
|
+
//!
|
56
|
+
//! We can also read input line by line.
|
57
|
+
//!
|
58
|
+
//! ```no_run
|
59
|
+
//! use tokio::io::{BufReader, AsyncBufReadExt};
|
60
|
+
//! use tokio::process::Command;
|
61
|
+
//!
|
62
|
+
//! use std::process::Stdio;
|
63
|
+
//!
|
64
|
+
//! #[tokio::main]
|
65
|
+
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
66
|
+
//! let mut cmd = Command::new("cat");
|
67
|
+
//!
|
68
|
+
//! // Specify that we want the command's standard output piped back to us.
|
69
|
+
//! // By default, standard input/output/error will be inherited from the
|
70
|
+
//! // current process (for example, this means that standard input will
|
71
|
+
//! // come from the keyboard and standard output/error will go directly to
|
72
|
+
//! // the terminal if this process is invoked from the command line).
|
73
|
+
//! cmd.stdout(Stdio::piped());
|
74
|
+
//!
|
75
|
+
//! let mut child = cmd.spawn()
|
76
|
+
//! .expect("failed to spawn command");
|
77
|
+
//!
|
78
|
+
//! let stdout = child.stdout.take()
|
79
|
+
//! .expect("child did not have a handle to stdout");
|
80
|
+
//!
|
81
|
+
//! let mut reader = BufReader::new(stdout).lines();
|
82
|
+
//!
|
83
|
+
//! // Ensure the child process is spawned in the runtime so it can
|
84
|
+
//! // make progress on its own while we await for any output.
|
85
|
+
//! tokio::spawn(async move {
|
86
|
+
//! let status = child.wait().await
|
87
|
+
//! .expect("child process encountered an error");
|
88
|
+
//!
|
89
|
+
//! println!("child status was: {}", status);
|
90
|
+
//! });
|
91
|
+
//!
|
92
|
+
//! while let Some(line) = reader.next_line().await? {
|
93
|
+
//! println!("Line: {}", line);
|
94
|
+
//! }
|
95
|
+
//!
|
96
|
+
//! Ok(())
|
97
|
+
//! }
|
98
|
+
//! ```
|
99
|
+
//!
|
100
|
+
//! Here is another example using `sort` writing into the child process
|
101
|
+
//! standard input, capturing the output of the sorted text.
|
102
|
+
//!
|
103
|
+
//! ```no_run
|
104
|
+
//! use tokio::io::AsyncWriteExt;
|
105
|
+
//! use tokio::process::Command;
|
106
|
+
//!
|
107
|
+
//! use std::process::Stdio;
|
108
|
+
//!
|
109
|
+
//! #[tokio::main]
|
110
|
+
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
111
|
+
//! let mut cmd = Command::new("sort");
|
112
|
+
//!
|
113
|
+
//! // Specifying that we want pipe both the output and the input.
|
114
|
+
//! // Similarly to capturing the output, by configuring the pipe
|
115
|
+
//! // to stdin it can now be used as an asynchronous writer.
|
116
|
+
//! cmd.stdout(Stdio::piped());
|
117
|
+
//! cmd.stdin(Stdio::piped());
|
118
|
+
//!
|
119
|
+
//! let mut child = cmd.spawn().expect("failed to spawn command");
|
120
|
+
//!
|
121
|
+
//! // These are the animals we want to sort
|
122
|
+
//! let animals: &[&str] = &["dog", "bird", "frog", "cat", "fish"];
|
123
|
+
//!
|
124
|
+
//! let mut stdin = child
|
125
|
+
//! .stdin
|
126
|
+
//! .take()
|
127
|
+
//! .expect("child did not have a handle to stdin");
|
128
|
+
//!
|
129
|
+
//! // Write our animals to the child process
|
130
|
+
//! // Note that the behavior of `sort` is to buffer _all input_ before writing any output.
|
131
|
+
//! // In the general sense, it is recommended to write to the child in a separate task as
|
132
|
+
//! // awaiting its exit (or output) to avoid deadlocks (for example, the child tries to write
|
133
|
+
//! // some output but gets stuck waiting on the parent to read from it, meanwhile the parent
|
134
|
+
//! // is stuck waiting to write its input completely before reading the output).
|
135
|
+
//! stdin
|
136
|
+
//! .write(animals.join("\n").as_bytes())
|
137
|
+
//! .await
|
138
|
+
//! .expect("could not write to stdin");
|
139
|
+
//!
|
140
|
+
//! // We drop the handle here which signals EOF to the child process.
|
141
|
+
//! // This tells the child process that it there is no more data on the pipe.
|
142
|
+
//! drop(stdin);
|
143
|
+
//!
|
144
|
+
//! let op = child.wait_with_output().await?;
|
145
|
+
//!
|
146
|
+
//! // Results should come back in sorted order
|
147
|
+
//! assert_eq!(op.stdout, "bird\ncat\ndog\nfish\nfrog\n".as_bytes());
|
148
|
+
//!
|
149
|
+
//! Ok(())
|
150
|
+
//! }
|
151
|
+
//! ```
|
152
|
+
//!
|
153
|
+
//! With some coordination, we can also pipe the output of one command into
|
154
|
+
//! another.
|
155
|
+
//!
|
156
|
+
//! ```no_run
|
157
|
+
//! use tokio::join;
|
158
|
+
//! use tokio::process::Command;
|
159
|
+
//! use std::process::Stdio;
|
160
|
+
//!
|
161
|
+
//! #[tokio::main]
|
162
|
+
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
163
|
+
//! let mut echo = Command::new("echo")
|
164
|
+
//! .arg("hello world!")
|
165
|
+
//! .stdout(Stdio::piped())
|
166
|
+
//! .spawn()
|
167
|
+
//! .expect("failed to spawn echo");
|
168
|
+
//!
|
169
|
+
//! let tr_stdin: Stdio = echo
|
170
|
+
//! .stdout
|
171
|
+
//! .take()
|
172
|
+
//! .unwrap()
|
173
|
+
//! .try_into()
|
174
|
+
//! .expect("failed to convert to Stdio");
|
175
|
+
//!
|
176
|
+
//! let tr = Command::new("tr")
|
177
|
+
//! .arg("a-z")
|
178
|
+
//! .arg("A-Z")
|
179
|
+
//! .stdin(tr_stdin)
|
180
|
+
//! .stdout(Stdio::piped())
|
181
|
+
//! .spawn()
|
182
|
+
//! .expect("failed to spawn tr");
|
183
|
+
//!
|
184
|
+
//! let (echo_result, tr_output) = join!(echo.wait(), tr.wait_with_output());
|
185
|
+
//!
|
186
|
+
//! assert!(echo_result.unwrap().success());
|
187
|
+
//!
|
188
|
+
//! let tr_output = tr_output.expect("failed to await tr");
|
189
|
+
//! assert!(tr_output.status.success());
|
190
|
+
//!
|
191
|
+
//! assert_eq!(tr_output.stdout, b"HELLO WORLD!\n");
|
192
|
+
//!
|
193
|
+
//! Ok(())
|
194
|
+
//! }
|
195
|
+
//! ```
|
196
|
+
//!
|
197
|
+
//! # Caveats
|
198
|
+
//!
|
199
|
+
//! ## Dropping/Cancellation
|
200
|
+
//!
|
201
|
+
//! Similar to the behavior to the standard library, and unlike the futures
|
202
|
+
//! paradigm of dropping-implies-cancellation, a spawned process will, by
|
203
|
+
//! default, continue to execute even after the `Child` handle has been dropped.
|
204
|
+
//!
|
205
|
+
//! The [`Command::kill_on_drop`] method can be used to modify this behavior
|
206
|
+
//! and kill the child process if the `Child` wrapper is dropped before it
|
207
|
+
//! has exited.
|
208
|
+
//!
|
209
|
+
//! ## Unix Processes
|
210
|
+
//!
|
211
|
+
//! On Unix platforms processes must be "reaped" by their parent process after
|
212
|
+
//! they have exited in order to release all OS resources. A child process which
|
213
|
+
//! has exited, but has not yet been reaped by its parent is considered a "zombie"
|
214
|
+
//! process. Such processes continue to count against limits imposed by the system,
|
215
|
+
//! and having too many zombie processes present can prevent additional processes
|
216
|
+
//! from being spawned.
|
217
|
+
//!
|
218
|
+
//! The tokio runtime will, on a best-effort basis, attempt to reap and clean up
|
219
|
+
//! any process which it has spawned. No additional guarantees are made with regard to
|
220
|
+
//! how quickly or how often this procedure will take place.
|
221
|
+
//!
|
222
|
+
//! It is recommended to avoid dropping a [`Child`] process handle before it has been
|
223
|
+
//! fully `await`ed if stricter cleanup guarantees are required.
|
224
|
+
//!
|
225
|
+
//! [`Command`]: crate::process::Command
|
226
|
+
//! [`Command::kill_on_drop`]: crate::process::Command::kill_on_drop
|
227
|
+
//! [`Child`]: crate::process::Child
|
228
|
+
|
229
|
+
#[path = "unix/mod.rs"]
|
230
|
+
#[cfg(unix)]
|
231
|
+
mod imp;
|
232
|
+
|
233
|
+
#[cfg(unix)]
|
234
|
+
pub(crate) mod unix {
|
235
|
+
pub(crate) use super::imp::*;
|
236
|
+
}
|
237
|
+
|
238
|
+
#[path = "windows.rs"]
|
239
|
+
#[cfg(windows)]
|
240
|
+
mod imp;
|
241
|
+
|
242
|
+
mod kill;
|
243
|
+
|
244
|
+
use crate::io::{AsyncRead, AsyncWrite, ReadBuf};
|
245
|
+
use crate::process::kill::Kill;
|
246
|
+
|
247
|
+
use std::ffi::OsStr;
|
248
|
+
use std::future::Future;
|
249
|
+
use std::io;
|
250
|
+
use std::path::Path;
|
251
|
+
use std::pin::Pin;
|
252
|
+
use std::process::{Command as StdCommand, ExitStatus, Output, Stdio};
|
253
|
+
use std::task::{ready, Context, Poll};
|
254
|
+
|
255
|
+
#[cfg(unix)]
|
256
|
+
use std::os::unix::process::CommandExt;
|
257
|
+
#[cfg(windows)]
|
258
|
+
use std::os::windows::process::CommandExt;
|
259
|
+
|
260
|
+
cfg_windows! {
|
261
|
+
use crate::os::windows::io::{AsRawHandle, RawHandle};
|
262
|
+
}
|
263
|
+
|
264
|
+
/// This structure mimics the API of [`std::process::Command`] found in the standard library, but
|
265
|
+
/// replaces functions that create a process with an asynchronous variant. The main provided
|
266
|
+
/// asynchronous functions are [spawn](Command::spawn), [status](Command::status), and
|
267
|
+
/// [output](Command::output).
|
268
|
+
///
|
269
|
+
/// `Command` uses asynchronous versions of some `std` types (for example [`Child`]).
|
270
|
+
///
|
271
|
+
/// [`std::process::Command`]: std::process::Command
|
272
|
+
/// [`Child`]: struct@Child
|
273
|
+
#[derive(Debug)]
|
274
|
+
pub struct Command {
|
275
|
+
std: StdCommand,
|
276
|
+
kill_on_drop: bool,
|
277
|
+
}
|
278
|
+
|
279
|
+
pub(crate) struct SpawnedChild {
|
280
|
+
child: imp::Child,
|
281
|
+
stdin: Option<imp::ChildStdio>,
|
282
|
+
stdout: Option<imp::ChildStdio>,
|
283
|
+
stderr: Option<imp::ChildStdio>,
|
284
|
+
}
|
285
|
+
|
286
|
+
impl Command {
|
287
|
+
/// Constructs a new `Command` for launching the program at
|
288
|
+
/// path `program`, with the following default configuration:
|
289
|
+
///
|
290
|
+
/// * No arguments to the program
|
291
|
+
/// * Inherit the current process's environment
|
292
|
+
/// * Inherit the current process's working directory
|
293
|
+
/// * Inherit stdin/stdout/stderr for `spawn` or `status`, but create pipes for `output`
|
294
|
+
///
|
295
|
+
/// Builder methods are provided to change these defaults and
|
296
|
+
/// otherwise configure the process.
|
297
|
+
///
|
298
|
+
/// If `program` is not an absolute path, the `PATH` will be searched in
|
299
|
+
/// an OS-defined way.
|
300
|
+
///
|
301
|
+
/// The search path to be used may be controlled by setting the
|
302
|
+
/// `PATH` environment variable on the Command,
|
303
|
+
/// but this has some implementation limitations on Windows
|
304
|
+
/// (see issue [rust-lang/rust#37519]).
|
305
|
+
///
|
306
|
+
/// # Examples
|
307
|
+
///
|
308
|
+
/// Basic usage:
|
309
|
+
///
|
310
|
+
/// ```no_run
|
311
|
+
/// use tokio::process::Command;
|
312
|
+
/// let mut command = Command::new("sh");
|
313
|
+
/// # let _ = command.output(); // assert borrow checker
|
314
|
+
/// ```
|
315
|
+
///
|
316
|
+
/// [rust-lang/rust#37519]: https://github.com/rust-lang/rust/issues/37519
|
317
|
+
pub fn new<S: AsRef<OsStr>>(program: S) -> Command {
|
318
|
+
Self::from(StdCommand::new(program))
|
319
|
+
}
|
320
|
+
|
321
|
+
/// Cheaply convert to a `&std::process::Command` for places where the type from the standard
|
322
|
+
/// library is expected.
|
323
|
+
pub fn as_std(&self) -> &StdCommand {
|
324
|
+
&self.std
|
325
|
+
}
|
326
|
+
|
327
|
+
/// Cheaply convert to a `&mut std::process::Command` for places where the type from the
|
328
|
+
/// standard library is expected.
|
329
|
+
pub fn as_std_mut(&mut self) -> &mut StdCommand {
|
330
|
+
&mut self.std
|
331
|
+
}
|
332
|
+
|
333
|
+
/// Adds an argument to pass to the program.
|
334
|
+
///
|
335
|
+
/// Only one argument can be passed per use. So instead of:
|
336
|
+
///
|
337
|
+
/// ```no_run
|
338
|
+
/// let mut command = tokio::process::Command::new("sh");
|
339
|
+
/// command.arg("-C /path/to/repo");
|
340
|
+
///
|
341
|
+
/// # let _ = command.output(); // assert borrow checker
|
342
|
+
/// ```
|
343
|
+
///
|
344
|
+
/// usage would be:
|
345
|
+
///
|
346
|
+
/// ```no_run
|
347
|
+
/// let mut command = tokio::process::Command::new("sh");
|
348
|
+
/// command.arg("-C");
|
349
|
+
/// command.arg("/path/to/repo");
|
350
|
+
///
|
351
|
+
/// # let _ = command.output(); // assert borrow checker
|
352
|
+
/// ```
|
353
|
+
///
|
354
|
+
/// To pass multiple arguments see [`args`].
|
355
|
+
///
|
356
|
+
/// [`args`]: method@Self::args
|
357
|
+
///
|
358
|
+
/// # Examples
|
359
|
+
///
|
360
|
+
/// Basic usage:
|
361
|
+
///
|
362
|
+
/// ```no_run
|
363
|
+
/// # async fn test() { // allow using await
|
364
|
+
/// use tokio::process::Command;
|
365
|
+
///
|
366
|
+
/// let output = Command::new("ls")
|
367
|
+
/// .arg("-l")
|
368
|
+
/// .arg("-a")
|
369
|
+
/// .output().await.unwrap();
|
370
|
+
/// # }
|
371
|
+
///
|
372
|
+
/// ```
|
373
|
+
pub fn arg<S: AsRef<OsStr>>(&mut self, arg: S) -> &mut Command {
|
374
|
+
self.std.arg(arg);
|
375
|
+
self
|
376
|
+
}
|
377
|
+
|
378
|
+
/// Adds multiple arguments to pass to the program.
|
379
|
+
///
|
380
|
+
/// To pass a single argument see [`arg`].
|
381
|
+
///
|
382
|
+
/// [`arg`]: method@Self::arg
|
383
|
+
///
|
384
|
+
/// # Examples
|
385
|
+
///
|
386
|
+
/// Basic usage:
|
387
|
+
///
|
388
|
+
/// ```no_run
|
389
|
+
/// # async fn test() { // allow using await
|
390
|
+
/// use tokio::process::Command;
|
391
|
+
///
|
392
|
+
/// let output = Command::new("ls")
|
393
|
+
/// .args(&["-l", "-a"])
|
394
|
+
/// .output().await.unwrap();
|
395
|
+
/// # }
|
396
|
+
/// ```
|
397
|
+
pub fn args<I, S>(&mut self, args: I) -> &mut Command
|
398
|
+
where
|
399
|
+
I: IntoIterator<Item = S>,
|
400
|
+
S: AsRef<OsStr>,
|
401
|
+
{
|
402
|
+
self.std.args(args);
|
403
|
+
self
|
404
|
+
}
|
405
|
+
|
406
|
+
cfg_windows! {
|
407
|
+
/// Append literal text to the command line without any quoting or escaping.
|
408
|
+
///
|
409
|
+
/// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow
|
410
|
+
/// `CommandLineToArgvW` escaping rules.
|
411
|
+
pub fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut Command {
|
412
|
+
self.std.raw_arg(text_to_append_as_is);
|
413
|
+
self
|
414
|
+
}
|
415
|
+
}
|
416
|
+
|
417
|
+
/// Inserts or updates an environment variable mapping.
|
418
|
+
///
|
419
|
+
/// Note that environment variable names are case-insensitive (but case-preserving) on Windows,
|
420
|
+
/// and case-sensitive on all other platforms.
|
421
|
+
///
|
422
|
+
/// # Examples
|
423
|
+
///
|
424
|
+
/// Basic usage:
|
425
|
+
///
|
426
|
+
/// ```no_run
|
427
|
+
/// # async fn test() { // allow using await
|
428
|
+
/// use tokio::process::Command;
|
429
|
+
///
|
430
|
+
/// let output = Command::new("ls")
|
431
|
+
/// .env("PATH", "/bin")
|
432
|
+
/// .output().await.unwrap();
|
433
|
+
/// # }
|
434
|
+
/// ```
|
435
|
+
pub fn env<K, V>(&mut self, key: K, val: V) -> &mut Command
|
436
|
+
where
|
437
|
+
K: AsRef<OsStr>,
|
438
|
+
V: AsRef<OsStr>,
|
439
|
+
{
|
440
|
+
self.std.env(key, val);
|
441
|
+
self
|
442
|
+
}
|
443
|
+
|
444
|
+
/// Adds or updates multiple environment variable mappings.
|
445
|
+
///
|
446
|
+
/// # Examples
|
447
|
+
///
|
448
|
+
/// Basic usage:
|
449
|
+
///
|
450
|
+
/// ```no_run
|
451
|
+
/// # async fn test() { // allow using await
|
452
|
+
/// use tokio::process::Command;
|
453
|
+
/// use std::process::{Stdio};
|
454
|
+
/// use std::env;
|
455
|
+
/// use std::collections::HashMap;
|
456
|
+
///
|
457
|
+
/// let filtered_env : HashMap<String, String> =
|
458
|
+
/// env::vars().filter(|&(ref k, _)|
|
459
|
+
/// k == "TERM" || k == "TZ" || k == "LANG" || k == "PATH"
|
460
|
+
/// ).collect();
|
461
|
+
///
|
462
|
+
/// let output = Command::new("printenv")
|
463
|
+
/// .stdin(Stdio::null())
|
464
|
+
/// .stdout(Stdio::inherit())
|
465
|
+
/// .env_clear()
|
466
|
+
/// .envs(&filtered_env)
|
467
|
+
/// .output().await.unwrap();
|
468
|
+
/// # }
|
469
|
+
/// ```
|
470
|
+
pub fn envs<I, K, V>(&mut self, vars: I) -> &mut Command
|
471
|
+
where
|
472
|
+
I: IntoIterator<Item = (K, V)>,
|
473
|
+
K: AsRef<OsStr>,
|
474
|
+
V: AsRef<OsStr>,
|
475
|
+
{
|
476
|
+
self.std.envs(vars);
|
477
|
+
self
|
478
|
+
}
|
479
|
+
|
480
|
+
/// Removes an environment variable mapping.
|
481
|
+
///
|
482
|
+
/// # Examples
|
483
|
+
///
|
484
|
+
/// Basic usage:
|
485
|
+
///
|
486
|
+
/// ```no_run
|
487
|
+
/// # async fn test() { // allow using await
|
488
|
+
/// use tokio::process::Command;
|
489
|
+
///
|
490
|
+
/// let output = Command::new("ls")
|
491
|
+
/// .env_remove("PATH")
|
492
|
+
/// .output().await.unwrap();
|
493
|
+
/// # }
|
494
|
+
/// ```
|
495
|
+
pub fn env_remove<K: AsRef<OsStr>>(&mut self, key: K) -> &mut Command {
|
496
|
+
self.std.env_remove(key);
|
497
|
+
self
|
498
|
+
}
|
499
|
+
|
500
|
+
/// Clears the entire environment map for the child process.
|
501
|
+
///
|
502
|
+
/// # Examples
|
503
|
+
///
|
504
|
+
/// Basic usage:
|
505
|
+
///
|
506
|
+
/// ```no_run
|
507
|
+
/// # async fn test() { // allow using await
|
508
|
+
/// use tokio::process::Command;
|
509
|
+
///
|
510
|
+
/// let output = Command::new("ls")
|
511
|
+
/// .env_clear()
|
512
|
+
/// .output().await.unwrap();
|
513
|
+
/// # }
|
514
|
+
/// ```
|
515
|
+
pub fn env_clear(&mut self) -> &mut Command {
|
516
|
+
self.std.env_clear();
|
517
|
+
self
|
518
|
+
}
|
519
|
+
|
520
|
+
/// Sets the working directory for the child process.
|
521
|
+
///
|
522
|
+
/// # Platform-specific behavior
|
523
|
+
///
|
524
|
+
/// If the program path is relative (e.g., `"./script.sh"`), it's ambiguous
|
525
|
+
/// whether it should be interpreted relative to the parent's working
|
526
|
+
/// directory or relative to `current_dir`. The behavior in this case is
|
527
|
+
/// platform specific and unstable, and it's recommended to use
|
528
|
+
/// [`canonicalize`] to get an absolute program path instead.
|
529
|
+
///
|
530
|
+
/// [`canonicalize`]: crate::fs::canonicalize()
|
531
|
+
///
|
532
|
+
/// # Examples
|
533
|
+
///
|
534
|
+
/// Basic usage:
|
535
|
+
///
|
536
|
+
/// ```no_run
|
537
|
+
/// # async fn test() { // allow using await
|
538
|
+
/// use tokio::process::Command;
|
539
|
+
///
|
540
|
+
/// let output = Command::new("ls")
|
541
|
+
/// .current_dir("/bin")
|
542
|
+
/// .output().await.unwrap();
|
543
|
+
/// # }
|
544
|
+
/// ```
|
545
|
+
pub fn current_dir<P: AsRef<Path>>(&mut self, dir: P) -> &mut Command {
|
546
|
+
self.std.current_dir(dir);
|
547
|
+
self
|
548
|
+
}
|
549
|
+
|
550
|
+
/// Sets configuration for the child process's standard input (stdin) handle.
|
551
|
+
///
|
552
|
+
/// Defaults to [`inherit`].
|
553
|
+
///
|
554
|
+
/// [`inherit`]: std::process::Stdio::inherit
|
555
|
+
///
|
556
|
+
/// # Examples
|
557
|
+
///
|
558
|
+
/// Basic usage:
|
559
|
+
///
|
560
|
+
/// ```no_run
|
561
|
+
/// # async fn test() { // allow using await
|
562
|
+
/// use std::process::{Stdio};
|
563
|
+
/// use tokio::process::Command;
|
564
|
+
///
|
565
|
+
/// let output = Command::new("ls")
|
566
|
+
/// .stdin(Stdio::null())
|
567
|
+
/// .output().await.unwrap();
|
568
|
+
/// # }
|
569
|
+
/// ```
|
570
|
+
pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
|
571
|
+
self.std.stdin(cfg);
|
572
|
+
self
|
573
|
+
}
|
574
|
+
|
575
|
+
/// Sets configuration for the child process's standard output (stdout) handle.
|
576
|
+
///
|
577
|
+
/// Defaults to [`inherit`] when used with `spawn` or `status`, and
|
578
|
+
/// defaults to [`piped`] when used with `output`.
|
579
|
+
///
|
580
|
+
/// [`inherit`]: std::process::Stdio::inherit
|
581
|
+
/// [`piped`]: std::process::Stdio::piped
|
582
|
+
///
|
583
|
+
/// # Examples
|
584
|
+
///
|
585
|
+
/// Basic usage:
|
586
|
+
///
|
587
|
+
/// ```no_run
|
588
|
+
/// # async fn test() { // allow using await
|
589
|
+
/// use tokio::process::Command;
|
590
|
+
/// use std::process::Stdio;
|
591
|
+
///
|
592
|
+
/// let output = Command::new("ls")
|
593
|
+
/// .stdout(Stdio::null())
|
594
|
+
/// .output().await.unwrap();
|
595
|
+
/// # }
|
596
|
+
/// ```
|
597
|
+
pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
|
598
|
+
self.std.stdout(cfg);
|
599
|
+
self
|
600
|
+
}
|
601
|
+
|
602
|
+
/// Sets configuration for the child process's standard error (stderr) handle.
|
603
|
+
///
|
604
|
+
/// Defaults to [`inherit`] when used with `spawn` or `status`, and
|
605
|
+
/// defaults to [`piped`] when used with `output`.
|
606
|
+
///
|
607
|
+
/// [`inherit`]: std::process::Stdio::inherit
|
608
|
+
/// [`piped`]: std::process::Stdio::piped
|
609
|
+
///
|
610
|
+
/// # Examples
|
611
|
+
///
|
612
|
+
/// Basic usage:
|
613
|
+
///
|
614
|
+
/// ```no_run
|
615
|
+
/// # async fn test() { // allow using await
|
616
|
+
/// use tokio::process::Command;
|
617
|
+
/// use std::process::{Stdio};
|
618
|
+
///
|
619
|
+
/// let output = Command::new("ls")
|
620
|
+
/// .stderr(Stdio::null())
|
621
|
+
/// .output().await.unwrap();
|
622
|
+
/// # }
|
623
|
+
/// ```
|
624
|
+
pub fn stderr<T: Into<Stdio>>(&mut self, cfg: T) -> &mut Command {
|
625
|
+
self.std.stderr(cfg);
|
626
|
+
self
|
627
|
+
}
|
628
|
+
|
629
|
+
/// Controls whether a `kill` operation should be invoked on a spawned child
|
630
|
+
/// process when its corresponding `Child` handle is dropped.
|
631
|
+
///
|
632
|
+
/// By default, this value is assumed to be `false`, meaning the next spawned
|
633
|
+
/// process will not be killed on drop, similar to the behavior of the standard
|
634
|
+
/// library.
|
635
|
+
///
|
636
|
+
/// # Caveats
|
637
|
+
///
|
638
|
+
/// On Unix platforms processes must be "reaped" by their parent process after
|
639
|
+
/// they have exited in order to release all OS resources. A child process which
|
640
|
+
/// has exited, but has not yet been reaped by its parent is considered a "zombie"
|
641
|
+
/// process. Such processes continue to count against limits imposed by the system,
|
642
|
+
/// and having too many zombie processes present can prevent additional processes
|
643
|
+
/// from being spawned.
|
644
|
+
///
|
645
|
+
/// Although issuing a `kill` signal to the child process is a synchronous
|
646
|
+
/// operation, the resulting zombie process cannot be `.await`ed inside of the
|
647
|
+
/// destructor to avoid blocking other tasks. The tokio runtime will, on a
|
648
|
+
/// best-effort basis, attempt to reap and clean up such processes in the
|
649
|
+
/// background, but no additional guarantees are made with regard to
|
650
|
+
/// how quickly or how often this procedure will take place.
|
651
|
+
///
|
652
|
+
/// If stronger guarantees are required, it is recommended to avoid dropping
|
653
|
+
/// a [`Child`] handle where possible, and instead utilize `child.wait().await`
|
654
|
+
/// or `child.kill().await` where possible.
|
655
|
+
pub fn kill_on_drop(&mut self, kill_on_drop: bool) -> &mut Command {
|
656
|
+
self.kill_on_drop = kill_on_drop;
|
657
|
+
self
|
658
|
+
}
|
659
|
+
|
660
|
+
cfg_windows! {
|
661
|
+
/// Sets the [process creation flags][1] to be passed to `CreateProcess`.
|
662
|
+
///
|
663
|
+
/// These will always be ORed with `CREATE_UNICODE_ENVIRONMENT`.
|
664
|
+
///
|
665
|
+
/// [1]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms684863(v=vs.85).aspx
|
666
|
+
pub fn creation_flags(&mut self, flags: u32) -> &mut Command {
|
667
|
+
self.std.creation_flags(flags);
|
668
|
+
self
|
669
|
+
}
|
670
|
+
}
|
671
|
+
|
672
|
+
/// Sets the child process's user ID. This translates to a
|
673
|
+
/// `setuid` call in the child process. Failure in the `setuid`
|
674
|
+
/// call will cause the spawn to fail.
|
675
|
+
#[cfg(unix)]
|
676
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
677
|
+
pub fn uid(&mut self, id: u32) -> &mut Command {
|
678
|
+
#[cfg(target_os = "nto")]
|
679
|
+
let id = id as i32;
|
680
|
+
self.std.uid(id);
|
681
|
+
self
|
682
|
+
}
|
683
|
+
|
684
|
+
/// Similar to `uid` but sets the group ID of the child process. This has
|
685
|
+
/// the same semantics as the `uid` field.
|
686
|
+
#[cfg(unix)]
|
687
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
688
|
+
pub fn gid(&mut self, id: u32) -> &mut Command {
|
689
|
+
#[cfg(target_os = "nto")]
|
690
|
+
let id = id as i32;
|
691
|
+
self.std.gid(id);
|
692
|
+
self
|
693
|
+
}
|
694
|
+
|
695
|
+
/// Sets executable argument.
|
696
|
+
///
|
697
|
+
/// Set the first process argument, `argv[0]`, to something other than the
|
698
|
+
/// default executable path.
|
699
|
+
#[cfg(unix)]
|
700
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
701
|
+
pub fn arg0<S>(&mut self, arg: S) -> &mut Command
|
702
|
+
where
|
703
|
+
S: AsRef<OsStr>,
|
704
|
+
{
|
705
|
+
self.std.arg0(arg);
|
706
|
+
self
|
707
|
+
}
|
708
|
+
|
709
|
+
/// Schedules a closure to be run just before the `exec` function is
|
710
|
+
/// invoked.
|
711
|
+
///
|
712
|
+
/// The closure is allowed to return an I/O error whose OS error code will
|
713
|
+
/// be communicated back to the parent and returned as an error from when
|
714
|
+
/// the spawn was requested.
|
715
|
+
///
|
716
|
+
/// Multiple closures can be registered and they will be called in order of
|
717
|
+
/// their registration. If a closure returns `Err` then no further closures
|
718
|
+
/// will be called and the spawn operation will immediately return with a
|
719
|
+
/// failure.
|
720
|
+
///
|
721
|
+
/// # Safety
|
722
|
+
///
|
723
|
+
/// This closure will be run in the context of the child process after a
|
724
|
+
/// `fork`. This primarily means that any modifications made to memory on
|
725
|
+
/// behalf of this closure will **not** be visible to the parent process.
|
726
|
+
/// This is often a very constrained environment where normal operations
|
727
|
+
/// like `malloc` or acquiring a mutex are not guaranteed to work (due to
|
728
|
+
/// other threads perhaps still running when the `fork` was run).
|
729
|
+
///
|
730
|
+
/// This also means that all resources such as file descriptors and
|
731
|
+
/// memory-mapped regions got duplicated. It is your responsibility to make
|
732
|
+
/// sure that the closure does not violate library invariants by making
|
733
|
+
/// invalid use of these duplicates.
|
734
|
+
///
|
735
|
+
/// When this closure is run, aspects such as the stdio file descriptors and
|
736
|
+
/// working directory have successfully been changed, so output to these
|
737
|
+
/// locations may not appear where intended.
|
738
|
+
#[cfg(unix)]
|
739
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
740
|
+
pub unsafe fn pre_exec<F>(&mut self, f: F) -> &mut Command
|
741
|
+
where
|
742
|
+
F: FnMut() -> io::Result<()> + Send + Sync + 'static,
|
743
|
+
{
|
744
|
+
self.std.pre_exec(f);
|
745
|
+
self
|
746
|
+
}
|
747
|
+
|
748
|
+
/// Sets the process group ID (PGID) of the child process. Equivalent to a
|
749
|
+
/// `setpgid` call in the child process, but may be more efficient.
|
750
|
+
///
|
751
|
+
/// Process groups determine which processes receive signals.
|
752
|
+
///
|
753
|
+
/// # Examples
|
754
|
+
///
|
755
|
+
/// Pressing Ctrl-C in a terminal will send `SIGINT` to all processes
|
756
|
+
/// in the current foreground process group. By spawning the `sleep`
|
757
|
+
/// subprocess in a new process group, it will not receive `SIGINT`
|
758
|
+
/// from the terminal.
|
759
|
+
///
|
760
|
+
/// The parent process could install a [signal handler] and manage the
|
761
|
+
/// process on its own terms.
|
762
|
+
///
|
763
|
+
/// A process group ID of 0 will use the process ID as the PGID.
|
764
|
+
///
|
765
|
+
/// ```no_run
|
766
|
+
/// # async fn test() { // allow using await
|
767
|
+
/// use tokio::process::Command;
|
768
|
+
///
|
769
|
+
/// let output = Command::new("sleep")
|
770
|
+
/// .arg("10")
|
771
|
+
/// .process_group(0)
|
772
|
+
/// .output()
|
773
|
+
/// .await
|
774
|
+
/// .unwrap();
|
775
|
+
/// # }
|
776
|
+
/// ```
|
777
|
+
///
|
778
|
+
/// [signal handler]: crate::signal
|
779
|
+
#[cfg(unix)]
|
780
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
781
|
+
pub fn process_group(&mut self, pgroup: i32) -> &mut Command {
|
782
|
+
self.std.process_group(pgroup);
|
783
|
+
self
|
784
|
+
}
|
785
|
+
|
786
|
+
/// Executes the command as a child process, returning a handle to it.
|
787
|
+
///
|
788
|
+
/// By default, stdin, stdout and stderr are inherited from the parent.
|
789
|
+
///
|
790
|
+
/// This method will spawn the child process synchronously and return a
|
791
|
+
/// handle to a future-aware child process. The `Child` returned implements
|
792
|
+
/// `Future` itself to acquire the `ExitStatus` of the child, and otherwise
|
793
|
+
/// the `Child` has methods to acquire handles to the stdin, stdout, and
|
794
|
+
/// stderr streams.
|
795
|
+
///
|
796
|
+
/// All I/O this child does will be associated with the current default
|
797
|
+
/// event loop.
|
798
|
+
///
|
799
|
+
/// # Examples
|
800
|
+
///
|
801
|
+
/// Basic usage:
|
802
|
+
///
|
803
|
+
/// ```no_run
|
804
|
+
/// use tokio::process::Command;
|
805
|
+
///
|
806
|
+
/// async fn run_ls() -> std::process::ExitStatus {
|
807
|
+
/// Command::new("ls")
|
808
|
+
/// .spawn()
|
809
|
+
/// .expect("ls command failed to start")
|
810
|
+
/// .wait()
|
811
|
+
/// .await
|
812
|
+
/// .expect("ls command failed to run")
|
813
|
+
/// }
|
814
|
+
/// ```
|
815
|
+
///
|
816
|
+
/// # Caveats
|
817
|
+
///
|
818
|
+
/// ## Dropping/Cancellation
|
819
|
+
///
|
820
|
+
/// Similar to the behavior to the standard library, and unlike the futures
|
821
|
+
/// paradigm of dropping-implies-cancellation, a spawned process will, by
|
822
|
+
/// default, continue to execute even after the `Child` handle has been dropped.
|
823
|
+
///
|
824
|
+
/// The [`Command::kill_on_drop`] method can be used to modify this behavior
|
825
|
+
/// and kill the child process if the `Child` wrapper is dropped before it
|
826
|
+
/// has exited.
|
827
|
+
///
|
828
|
+
/// ## Unix Processes
|
829
|
+
///
|
830
|
+
/// On Unix platforms processes must be "reaped" by their parent process after
|
831
|
+
/// they have exited in order to release all OS resources. A child process which
|
832
|
+
/// has exited, but has not yet been reaped by its parent is considered a "zombie"
|
833
|
+
/// process. Such processes continue to count against limits imposed by the system,
|
834
|
+
/// and having too many zombie processes present can prevent additional processes
|
835
|
+
/// from being spawned.
|
836
|
+
///
|
837
|
+
/// The tokio runtime will, on a best-effort basis, attempt to reap and clean up
|
838
|
+
/// any process which it has spawned. No additional guarantees are made with regard to
|
839
|
+
/// how quickly or how often this procedure will take place.
|
840
|
+
///
|
841
|
+
/// It is recommended to avoid dropping a [`Child`] process handle before it has been
|
842
|
+
/// fully `await`ed if stricter cleanup guarantees are required.
|
843
|
+
///
|
844
|
+
/// [`Command`]: crate::process::Command
|
845
|
+
/// [`Command::kill_on_drop`]: crate::process::Command::kill_on_drop
|
846
|
+
/// [`Child`]: crate::process::Child
|
847
|
+
///
|
848
|
+
/// # Errors
|
849
|
+
///
|
850
|
+
/// On Unix platforms this method will fail with `std::io::ErrorKind::WouldBlock`
|
851
|
+
/// if the system process limit is reached (which includes other applications
|
852
|
+
/// running on the system).
|
853
|
+
pub fn spawn(&mut self) -> io::Result<Child> {
|
854
|
+
imp::spawn_child(&mut self.std).map(|spawned_child| Child {
|
855
|
+
child: FusedChild::Child(ChildDropGuard {
|
856
|
+
inner: spawned_child.child,
|
857
|
+
kill_on_drop: self.kill_on_drop,
|
858
|
+
}),
|
859
|
+
stdin: spawned_child.stdin.map(|inner| ChildStdin { inner }),
|
860
|
+
stdout: spawned_child.stdout.map(|inner| ChildStdout { inner }),
|
861
|
+
stderr: spawned_child.stderr.map(|inner| ChildStderr { inner }),
|
862
|
+
})
|
863
|
+
}
|
864
|
+
|
865
|
+
/// Executes the command as a child process, waiting for it to finish and
|
866
|
+
/// collecting its exit status.
|
867
|
+
///
|
868
|
+
/// By default, stdin, stdout and stderr are inherited from the parent.
|
869
|
+
/// If any input/output handles are set to a pipe then they will be immediately
|
870
|
+
/// closed after the child is spawned.
|
871
|
+
///
|
872
|
+
/// All I/O this child does will be associated with the current default
|
873
|
+
/// event loop.
|
874
|
+
///
|
875
|
+
/// The destructor of the future returned by this function will kill
|
876
|
+
/// the child if [`kill_on_drop`] is set to true.
|
877
|
+
///
|
878
|
+
/// [`kill_on_drop`]: fn@Self::kill_on_drop
|
879
|
+
///
|
880
|
+
/// # Errors
|
881
|
+
///
|
882
|
+
/// This future will return an error if the child process cannot be spawned
|
883
|
+
/// or if there is an error while awaiting its status.
|
884
|
+
///
|
885
|
+
/// On Unix platforms this method will fail with `std::io::ErrorKind::WouldBlock`
|
886
|
+
/// if the system process limit is reached (which includes other applications
|
887
|
+
/// running on the system).
|
888
|
+
///
|
889
|
+
/// # Examples
|
890
|
+
///
|
891
|
+
/// Basic usage:
|
892
|
+
///
|
893
|
+
/// ```no_run
|
894
|
+
/// use tokio::process::Command;
|
895
|
+
///
|
896
|
+
/// async fn run_ls() -> std::process::ExitStatus {
|
897
|
+
/// Command::new("ls")
|
898
|
+
/// .status()
|
899
|
+
/// .await
|
900
|
+
/// .expect("ls command failed to run")
|
901
|
+
/// }
|
902
|
+
/// ```
|
903
|
+
pub fn status(&mut self) -> impl Future<Output = io::Result<ExitStatus>> {
|
904
|
+
let child = self.spawn();
|
905
|
+
|
906
|
+
async {
|
907
|
+
let mut child = child?;
|
908
|
+
|
909
|
+
// Ensure we close any stdio handles so we can't deadlock
|
910
|
+
// waiting on the child which may be waiting to read/write
|
911
|
+
// to a pipe we're holding.
|
912
|
+
child.stdin.take();
|
913
|
+
child.stdout.take();
|
914
|
+
child.stderr.take();
|
915
|
+
|
916
|
+
child.wait().await
|
917
|
+
}
|
918
|
+
}
|
919
|
+
|
920
|
+
/// Executes the command as a child process, waiting for it to finish and
|
921
|
+
/// collecting all of its output.
|
922
|
+
///
|
923
|
+
/// > **Note**: this method, unlike the standard library, will
|
924
|
+
/// > unconditionally configure the stdout/stderr handles to be pipes, even
|
925
|
+
/// > if they have been previously configured. If this is not desired then
|
926
|
+
/// > the `spawn` method should be used in combination with the
|
927
|
+
/// > `wait_with_output` method on child.
|
928
|
+
///
|
929
|
+
/// This method will return a future representing the collection of the
|
930
|
+
/// child process's stdout/stderr. It will resolve to
|
931
|
+
/// the `Output` type in the standard library, containing `stdout` and
|
932
|
+
/// `stderr` as `Vec<u8>` along with an `ExitStatus` representing how the
|
933
|
+
/// process exited.
|
934
|
+
///
|
935
|
+
/// All I/O this child does will be associated with the current default
|
936
|
+
/// event loop.
|
937
|
+
///
|
938
|
+
/// The destructor of the future returned by this function will kill
|
939
|
+
/// the child if [`kill_on_drop`] is set to true.
|
940
|
+
///
|
941
|
+
/// [`kill_on_drop`]: fn@Self::kill_on_drop
|
942
|
+
///
|
943
|
+
/// # Errors
|
944
|
+
///
|
945
|
+
/// This future will return an error if the child process cannot be spawned
|
946
|
+
/// or if there is an error while awaiting its status.
|
947
|
+
///
|
948
|
+
/// On Unix platforms this method will fail with `std::io::ErrorKind::WouldBlock`
|
949
|
+
/// if the system process limit is reached (which includes other applications
|
950
|
+
/// running on the system).
|
951
|
+
/// # Examples
|
952
|
+
///
|
953
|
+
/// Basic usage:
|
954
|
+
///
|
955
|
+
/// ```no_run
|
956
|
+
/// use tokio::process::Command;
|
957
|
+
///
|
958
|
+
/// async fn run_ls() {
|
959
|
+
/// let output: std::process::Output = Command::new("ls")
|
960
|
+
/// .output()
|
961
|
+
/// .await
|
962
|
+
/// .expect("ls command failed to run");
|
963
|
+
/// println!("stderr of ls: {:?}", output.stderr);
|
964
|
+
/// }
|
965
|
+
/// ```
|
966
|
+
pub fn output(&mut self) -> impl Future<Output = io::Result<Output>> {
|
967
|
+
self.std.stdout(Stdio::piped());
|
968
|
+
self.std.stderr(Stdio::piped());
|
969
|
+
|
970
|
+
let child = self.spawn();
|
971
|
+
|
972
|
+
async { child?.wait_with_output().await }
|
973
|
+
}
|
974
|
+
}
|
975
|
+
|
976
|
+
impl From<StdCommand> for Command {
|
977
|
+
fn from(std: StdCommand) -> Command {
|
978
|
+
Command {
|
979
|
+
std,
|
980
|
+
kill_on_drop: false,
|
981
|
+
}
|
982
|
+
}
|
983
|
+
}
|
984
|
+
|
985
|
+
/// A drop guard which can ensure the child process is killed on drop if specified.
|
986
|
+
#[derive(Debug)]
|
987
|
+
struct ChildDropGuard<T: Kill> {
|
988
|
+
inner: T,
|
989
|
+
kill_on_drop: bool,
|
990
|
+
}
|
991
|
+
|
992
|
+
impl<T: Kill> Kill for ChildDropGuard<T> {
|
993
|
+
fn kill(&mut self) -> io::Result<()> {
|
994
|
+
let ret = self.inner.kill();
|
995
|
+
|
996
|
+
if ret.is_ok() {
|
997
|
+
self.kill_on_drop = false;
|
998
|
+
}
|
999
|
+
|
1000
|
+
ret
|
1001
|
+
}
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
impl<T: Kill> Drop for ChildDropGuard<T> {
|
1005
|
+
fn drop(&mut self) {
|
1006
|
+
if self.kill_on_drop {
|
1007
|
+
drop(self.kill());
|
1008
|
+
}
|
1009
|
+
}
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
impl<T, E, F> Future for ChildDropGuard<F>
|
1013
|
+
where
|
1014
|
+
F: Future<Output = Result<T, E>> + Kill + Unpin,
|
1015
|
+
{
|
1016
|
+
type Output = Result<T, E>;
|
1017
|
+
|
1018
|
+
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
1019
|
+
ready!(crate::trace::trace_leaf(cx));
|
1020
|
+
// Keep track of task budget
|
1021
|
+
let coop = ready!(crate::runtime::coop::poll_proceed(cx));
|
1022
|
+
|
1023
|
+
let ret = Pin::new(&mut self.inner).poll(cx);
|
1024
|
+
|
1025
|
+
if let Poll::Ready(Ok(_)) = ret {
|
1026
|
+
// Avoid the overhead of trying to kill a reaped process
|
1027
|
+
self.kill_on_drop = false;
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
if ret.is_ready() {
|
1031
|
+
coop.made_progress();
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
ret
|
1035
|
+
}
|
1036
|
+
}
|
1037
|
+
|
1038
|
+
/// Keeps track of the exit status of a child process without worrying about
|
1039
|
+
/// polling the underlying futures even after they have completed.
|
1040
|
+
#[derive(Debug)]
|
1041
|
+
enum FusedChild {
|
1042
|
+
Child(ChildDropGuard<imp::Child>),
|
1043
|
+
Done(ExitStatus),
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
/// Representation of a child process spawned onto an event loop.
|
1047
|
+
///
|
1048
|
+
/// # Caveats
|
1049
|
+
/// Similar to the behavior to the standard library, and unlike the futures
|
1050
|
+
/// paradigm of dropping-implies-cancellation, a spawned process will, by
|
1051
|
+
/// default, continue to execute even after the `Child` handle has been dropped.
|
1052
|
+
///
|
1053
|
+
/// The `Command::kill_on_drop` method can be used to modify this behavior
|
1054
|
+
/// and kill the child process if the `Child` wrapper is dropped before it
|
1055
|
+
/// has exited.
|
1056
|
+
#[derive(Debug)]
|
1057
|
+
pub struct Child {
|
1058
|
+
child: FusedChild,
|
1059
|
+
|
1060
|
+
/// The handle for writing to the child's standard input (stdin), if it has
|
1061
|
+
/// been captured. To avoid partially moving the `child` and thus blocking
|
1062
|
+
/// yourself from calling functions on `child` while using `stdin`, you might
|
1063
|
+
/// find it helpful to do:
|
1064
|
+
///
|
1065
|
+
/// ```no_run
|
1066
|
+
/// # let mut child = tokio::process::Command::new("echo").spawn().unwrap();
|
1067
|
+
/// let stdin = child.stdin.take().unwrap();
|
1068
|
+
/// ```
|
1069
|
+
pub stdin: Option<ChildStdin>,
|
1070
|
+
|
1071
|
+
/// The handle for reading from the child's standard output (stdout), if it
|
1072
|
+
/// has been captured. You might find it helpful to do
|
1073
|
+
///
|
1074
|
+
/// ```no_run
|
1075
|
+
/// # let mut child = tokio::process::Command::new("echo").spawn().unwrap();
|
1076
|
+
/// let stdout = child.stdout.take().unwrap();
|
1077
|
+
/// ```
|
1078
|
+
///
|
1079
|
+
/// to avoid partially moving the `child` and thus blocking yourself from calling
|
1080
|
+
/// functions on `child` while using `stdout`.
|
1081
|
+
pub stdout: Option<ChildStdout>,
|
1082
|
+
|
1083
|
+
/// The handle for reading from the child's standard error (stderr), if it
|
1084
|
+
/// has been captured. You might find it helpful to do
|
1085
|
+
///
|
1086
|
+
/// ```no_run
|
1087
|
+
/// # let mut child = tokio::process::Command::new("echo").spawn().unwrap();
|
1088
|
+
/// let stderr = child.stderr.take().unwrap();
|
1089
|
+
/// ```
|
1090
|
+
///
|
1091
|
+
/// to avoid partially moving the `child` and thus blocking yourself from calling
|
1092
|
+
/// functions on `child` while using `stderr`.
|
1093
|
+
pub stderr: Option<ChildStderr>,
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
impl Child {
|
1097
|
+
/// Returns the OS-assigned process identifier associated with this child
|
1098
|
+
/// while it is still running.
|
1099
|
+
///
|
1100
|
+
/// Once the child has been polled to completion this will return `None`.
|
1101
|
+
/// This is done to avoid confusion on platforms like Unix where the OS
|
1102
|
+
/// identifier could be reused once the process has completed.
|
1103
|
+
pub fn id(&self) -> Option<u32> {
|
1104
|
+
match &self.child {
|
1105
|
+
FusedChild::Child(child) => Some(child.inner.id()),
|
1106
|
+
FusedChild::Done(_) => None,
|
1107
|
+
}
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
cfg_windows! {
|
1111
|
+
/// Extracts the raw handle of the process associated with this child while
|
1112
|
+
/// it is still running. Returns `None` if the child has exited.
|
1113
|
+
pub fn raw_handle(&self) -> Option<RawHandle> {
|
1114
|
+
match &self.child {
|
1115
|
+
FusedChild::Child(c) => Some(c.inner.as_raw_handle()),
|
1116
|
+
FusedChild::Done(_) => None,
|
1117
|
+
}
|
1118
|
+
}
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
/// Attempts to force the child to exit, but does not wait for the request
|
1122
|
+
/// to take effect.
|
1123
|
+
///
|
1124
|
+
/// On Unix platforms, this is the equivalent to sending a `SIGKILL`. Note
|
1125
|
+
/// that on Unix platforms it is possible for a zombie process to remain
|
1126
|
+
/// after a kill is sent; to avoid this, the caller should ensure that either
|
1127
|
+
/// `child.wait().await` or `child.try_wait()` is invoked successfully.
|
1128
|
+
pub fn start_kill(&mut self) -> io::Result<()> {
|
1129
|
+
match &mut self.child {
|
1130
|
+
FusedChild::Child(child) => child.kill(),
|
1131
|
+
FusedChild::Done(_) => Err(io::Error::new(
|
1132
|
+
io::ErrorKind::InvalidInput,
|
1133
|
+
"invalid argument: can't kill an exited process",
|
1134
|
+
)),
|
1135
|
+
}
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
/// Forces the child to exit.
|
1139
|
+
///
|
1140
|
+
/// This is equivalent to sending a `SIGKILL` on unix platforms.
|
1141
|
+
///
|
1142
|
+
/// If the child has to be killed remotely, it is possible to do it using
|
1143
|
+
/// a combination of the select! macro and a `oneshot` channel. In the following
|
1144
|
+
/// example, the child will run until completion unless a message is sent on
|
1145
|
+
/// the `oneshot` channel. If that happens, the child is killed immediately
|
1146
|
+
/// using the `.kill()` method.
|
1147
|
+
///
|
1148
|
+
/// ```no_run
|
1149
|
+
/// use tokio::process::Command;
|
1150
|
+
/// use tokio::sync::oneshot::channel;
|
1151
|
+
///
|
1152
|
+
/// #[tokio::main]
|
1153
|
+
/// async fn main() {
|
1154
|
+
/// let (send, recv) = channel::<()>();
|
1155
|
+
/// let mut child = Command::new("sleep").arg("1").spawn().unwrap();
|
1156
|
+
/// tokio::spawn(async move { send.send(()) });
|
1157
|
+
/// tokio::select! {
|
1158
|
+
/// _ = child.wait() => {}
|
1159
|
+
/// _ = recv => child.kill().await.expect("kill failed"),
|
1160
|
+
/// }
|
1161
|
+
/// }
|
1162
|
+
/// ```
|
1163
|
+
pub async fn kill(&mut self) -> io::Result<()> {
|
1164
|
+
self.start_kill()?;
|
1165
|
+
self.wait().await?;
|
1166
|
+
Ok(())
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
/// Waits for the child to exit completely, returning the status that it
|
1170
|
+
/// exited with. This function will continue to have the same return value
|
1171
|
+
/// after it has been called at least once.
|
1172
|
+
///
|
1173
|
+
/// The stdin handle to the child process, if any, will be closed
|
1174
|
+
/// before waiting. This helps avoid deadlock: it ensures that the
|
1175
|
+
/// child does not block waiting for input from the parent, while
|
1176
|
+
/// the parent waits for the child to exit.
|
1177
|
+
///
|
1178
|
+
/// If the caller wishes to explicitly control when the child's stdin
|
1179
|
+
/// handle is closed, they may `.take()` it before calling `.wait()`:
|
1180
|
+
///
|
1181
|
+
/// # Cancel safety
|
1182
|
+
///
|
1183
|
+
/// This function is cancel safe.
|
1184
|
+
///
|
1185
|
+
/// ```
|
1186
|
+
/// # #[cfg(not(unix))]fn main(){}
|
1187
|
+
/// # #[cfg(unix)]
|
1188
|
+
/// use tokio::io::AsyncWriteExt;
|
1189
|
+
/// # #[cfg(unix)]
|
1190
|
+
/// use tokio::process::Command;
|
1191
|
+
/// # #[cfg(unix)]
|
1192
|
+
/// use std::process::Stdio;
|
1193
|
+
///
|
1194
|
+
/// # #[cfg(unix)]
|
1195
|
+
/// #[tokio::main]
|
1196
|
+
/// async fn main() {
|
1197
|
+
/// let mut child = Command::new("cat")
|
1198
|
+
/// .stdin(Stdio::piped())
|
1199
|
+
/// .spawn()
|
1200
|
+
/// .unwrap();
|
1201
|
+
///
|
1202
|
+
/// let mut stdin = child.stdin.take().unwrap();
|
1203
|
+
/// tokio::spawn(async move {
|
1204
|
+
/// // do something with stdin here...
|
1205
|
+
/// stdin.write_all(b"hello world\n").await.unwrap();
|
1206
|
+
///
|
1207
|
+
/// // then drop when finished
|
1208
|
+
/// drop(stdin);
|
1209
|
+
/// });
|
1210
|
+
///
|
1211
|
+
/// // wait for the process to complete
|
1212
|
+
/// let _ = child.wait().await;
|
1213
|
+
/// }
|
1214
|
+
/// ```
|
1215
|
+
pub async fn wait(&mut self) -> io::Result<ExitStatus> {
|
1216
|
+
// Ensure stdin is closed so the child isn't stuck waiting on
|
1217
|
+
// input while the parent is waiting for it to exit.
|
1218
|
+
drop(self.stdin.take());
|
1219
|
+
|
1220
|
+
match &mut self.child {
|
1221
|
+
FusedChild::Done(exit) => Ok(*exit),
|
1222
|
+
FusedChild::Child(child) => {
|
1223
|
+
let ret = child.await;
|
1224
|
+
|
1225
|
+
if let Ok(exit) = ret {
|
1226
|
+
self.child = FusedChild::Done(exit);
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
ret
|
1230
|
+
}
|
1231
|
+
}
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
/// Attempts to collect the exit status of the child if it has already
|
1235
|
+
/// exited.
|
1236
|
+
///
|
1237
|
+
/// This function will not block the calling thread and will only
|
1238
|
+
/// check to see if the child process has exited or not. If the child has
|
1239
|
+
/// exited then on Unix the process ID is reaped. This function is
|
1240
|
+
/// guaranteed to repeatedly return a successful exit status so long as the
|
1241
|
+
/// child has already exited.
|
1242
|
+
///
|
1243
|
+
/// If the child has exited, then `Ok(Some(status))` is returned. If the
|
1244
|
+
/// exit status is not available at this time then `Ok(None)` is returned.
|
1245
|
+
/// If an error occurs, then that error is returned.
|
1246
|
+
///
|
1247
|
+
/// Note that unlike `wait`, this function will not attempt to drop stdin,
|
1248
|
+
/// nor will it wake the current task if the child exits.
|
1249
|
+
pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> {
|
1250
|
+
match &mut self.child {
|
1251
|
+
FusedChild::Done(exit) => Ok(Some(*exit)),
|
1252
|
+
FusedChild::Child(guard) => {
|
1253
|
+
let ret = guard.inner.try_wait();
|
1254
|
+
|
1255
|
+
if let Ok(Some(exit)) = ret {
|
1256
|
+
// Avoid the overhead of trying to kill a reaped process
|
1257
|
+
guard.kill_on_drop = false;
|
1258
|
+
self.child = FusedChild::Done(exit);
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
ret
|
1262
|
+
}
|
1263
|
+
}
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
/// Returns a future that will resolve to an `Output`, containing the exit
|
1267
|
+
/// status, stdout, and stderr of the child process.
|
1268
|
+
///
|
1269
|
+
/// The returned future will simultaneously waits for the child to exit and
|
1270
|
+
/// collect all remaining output on the stdout/stderr handles, returning an
|
1271
|
+
/// `Output` instance.
|
1272
|
+
///
|
1273
|
+
/// The stdin handle to the child process, if any, will be closed before
|
1274
|
+
/// waiting. This helps avoid deadlock: it ensures that the child does not
|
1275
|
+
/// block waiting for input from the parent, while the parent waits for the
|
1276
|
+
/// child to exit.
|
1277
|
+
///
|
1278
|
+
/// By default, stdin, stdout and stderr are inherited from the parent. In
|
1279
|
+
/// order to capture the output into this `Output` it is necessary to create
|
1280
|
+
/// new pipes between parent and child. Use `stdout(Stdio::piped())` or
|
1281
|
+
/// `stderr(Stdio::piped())`, respectively, when creating a `Command`.
|
1282
|
+
pub async fn wait_with_output(mut self) -> io::Result<Output> {
|
1283
|
+
use crate::future::try_join3;
|
1284
|
+
|
1285
|
+
async fn read_to_end<A: AsyncRead + Unpin>(io: &mut Option<A>) -> io::Result<Vec<u8>> {
|
1286
|
+
let mut vec = Vec::new();
|
1287
|
+
if let Some(io) = io.as_mut() {
|
1288
|
+
crate::io::util::read_to_end(io, &mut vec).await?;
|
1289
|
+
}
|
1290
|
+
Ok(vec)
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
let mut stdout_pipe = self.stdout.take();
|
1294
|
+
let mut stderr_pipe = self.stderr.take();
|
1295
|
+
|
1296
|
+
let stdout_fut = read_to_end(&mut stdout_pipe);
|
1297
|
+
let stderr_fut = read_to_end(&mut stderr_pipe);
|
1298
|
+
|
1299
|
+
let (status, stdout, stderr) = try_join3(self.wait(), stdout_fut, stderr_fut).await?;
|
1300
|
+
|
1301
|
+
// Drop happens after `try_join` due to <https://github.com/tokio-rs/tokio/issues/4309>
|
1302
|
+
drop(stdout_pipe);
|
1303
|
+
drop(stderr_pipe);
|
1304
|
+
|
1305
|
+
Ok(Output {
|
1306
|
+
status,
|
1307
|
+
stdout,
|
1308
|
+
stderr,
|
1309
|
+
})
|
1310
|
+
}
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
/// The standard input stream for spawned children.
|
1314
|
+
///
|
1315
|
+
/// This type implements the `AsyncWrite` trait to pass data to the stdin handle of
|
1316
|
+
/// handle of a child process asynchronously.
|
1317
|
+
#[derive(Debug)]
|
1318
|
+
pub struct ChildStdin {
|
1319
|
+
inner: imp::ChildStdio,
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
/// The standard output stream for spawned children.
|
1323
|
+
///
|
1324
|
+
/// This type implements the `AsyncRead` trait to read data from the stdout
|
1325
|
+
/// handle of a child process asynchronously.
|
1326
|
+
#[derive(Debug)]
|
1327
|
+
pub struct ChildStdout {
|
1328
|
+
inner: imp::ChildStdio,
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
/// The standard error stream for spawned children.
|
1332
|
+
///
|
1333
|
+
/// This type implements the `AsyncRead` trait to read data from the stderr
|
1334
|
+
/// handle of a child process asynchronously.
|
1335
|
+
#[derive(Debug)]
|
1336
|
+
pub struct ChildStderr {
|
1337
|
+
inner: imp::ChildStdio,
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
impl ChildStdin {
|
1341
|
+
/// Creates an asynchronous `ChildStdin` from a synchronous one.
|
1342
|
+
///
|
1343
|
+
/// # Errors
|
1344
|
+
///
|
1345
|
+
/// This method may fail if an error is encountered when setting the pipe to
|
1346
|
+
/// non-blocking mode, or when registering the pipe with the runtime's IO
|
1347
|
+
/// driver.
|
1348
|
+
pub fn from_std(inner: std::process::ChildStdin) -> io::Result<Self> {
|
1349
|
+
Ok(Self {
|
1350
|
+
inner: imp::stdio(inner)?,
|
1351
|
+
})
|
1352
|
+
}
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
impl ChildStdout {
|
1356
|
+
/// Creates an asynchronous `ChildStdout` from a synchronous one.
|
1357
|
+
///
|
1358
|
+
/// # Errors
|
1359
|
+
///
|
1360
|
+
/// This method may fail if an error is encountered when setting the pipe to
|
1361
|
+
/// non-blocking mode, or when registering the pipe with the runtime's IO
|
1362
|
+
/// driver.
|
1363
|
+
pub fn from_std(inner: std::process::ChildStdout) -> io::Result<Self> {
|
1364
|
+
Ok(Self {
|
1365
|
+
inner: imp::stdio(inner)?,
|
1366
|
+
})
|
1367
|
+
}
|
1368
|
+
}
|
1369
|
+
|
1370
|
+
impl ChildStderr {
|
1371
|
+
/// Creates an asynchronous `ChildStderr` from a synchronous one.
|
1372
|
+
///
|
1373
|
+
/// # Errors
|
1374
|
+
///
|
1375
|
+
/// This method may fail if an error is encountered when setting the pipe to
|
1376
|
+
/// non-blocking mode, or when registering the pipe with the runtime's IO
|
1377
|
+
/// driver.
|
1378
|
+
pub fn from_std(inner: std::process::ChildStderr) -> io::Result<Self> {
|
1379
|
+
Ok(Self {
|
1380
|
+
inner: imp::stdio(inner)?,
|
1381
|
+
})
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
impl AsyncWrite for ChildStdin {
|
1386
|
+
fn poll_write(
|
1387
|
+
mut self: Pin<&mut Self>,
|
1388
|
+
cx: &mut Context<'_>,
|
1389
|
+
buf: &[u8],
|
1390
|
+
) -> Poll<io::Result<usize>> {
|
1391
|
+
Pin::new(&mut self.inner).poll_write(cx, buf)
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
1395
|
+
Pin::new(&mut self.inner).poll_flush(cx)
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
1399
|
+
Pin::new(&mut self.inner).poll_shutdown(cx)
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
fn poll_write_vectored(
|
1403
|
+
mut self: Pin<&mut Self>,
|
1404
|
+
cx: &mut Context<'_>,
|
1405
|
+
bufs: &[io::IoSlice<'_>],
|
1406
|
+
) -> Poll<Result<usize, io::Error>> {
|
1407
|
+
Pin::new(&mut self.inner).poll_write_vectored(cx, bufs)
|
1408
|
+
}
|
1409
|
+
|
1410
|
+
fn is_write_vectored(&self) -> bool {
|
1411
|
+
self.inner.is_write_vectored()
|
1412
|
+
}
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
impl AsyncRead for ChildStdout {
|
1416
|
+
fn poll_read(
|
1417
|
+
mut self: Pin<&mut Self>,
|
1418
|
+
cx: &mut Context<'_>,
|
1419
|
+
buf: &mut ReadBuf<'_>,
|
1420
|
+
) -> Poll<io::Result<()>> {
|
1421
|
+
Pin::new(&mut self.inner).poll_read(cx, buf)
|
1422
|
+
}
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
impl AsyncRead for ChildStderr {
|
1426
|
+
fn poll_read(
|
1427
|
+
mut self: Pin<&mut Self>,
|
1428
|
+
cx: &mut Context<'_>,
|
1429
|
+
buf: &mut ReadBuf<'_>,
|
1430
|
+
) -> Poll<io::Result<()>> {
|
1431
|
+
Pin::new(&mut self.inner).poll_read(cx, buf)
|
1432
|
+
}
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
impl TryInto<Stdio> for ChildStdin {
|
1436
|
+
type Error = io::Error;
|
1437
|
+
|
1438
|
+
fn try_into(self) -> Result<Stdio, Self::Error> {
|
1439
|
+
imp::convert_to_stdio(self.inner)
|
1440
|
+
}
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
impl TryInto<Stdio> for ChildStdout {
|
1444
|
+
type Error = io::Error;
|
1445
|
+
|
1446
|
+
fn try_into(self) -> Result<Stdio, Self::Error> {
|
1447
|
+
imp::convert_to_stdio(self.inner)
|
1448
|
+
}
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
impl TryInto<Stdio> for ChildStderr {
|
1452
|
+
type Error = io::Error;
|
1453
|
+
|
1454
|
+
fn try_into(self) -> Result<Stdio, Self::Error> {
|
1455
|
+
imp::convert_to_stdio(self.inner)
|
1456
|
+
}
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
#[cfg(unix)]
|
1460
|
+
#[cfg_attr(docsrs, doc(cfg(unix)))]
|
1461
|
+
mod sys {
|
1462
|
+
use std::{
|
1463
|
+
io,
|
1464
|
+
os::unix::io::{AsFd, AsRawFd, BorrowedFd, OwnedFd, RawFd},
|
1465
|
+
};
|
1466
|
+
|
1467
|
+
use super::{ChildStderr, ChildStdin, ChildStdout};
|
1468
|
+
|
1469
|
+
macro_rules! impl_traits {
|
1470
|
+
($type:ty) => {
|
1471
|
+
impl $type {
|
1472
|
+
/// Convert into [`OwnedFd`].
|
1473
|
+
pub fn into_owned_fd(self) -> io::Result<OwnedFd> {
|
1474
|
+
self.inner.into_owned_fd()
|
1475
|
+
}
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
impl AsRawFd for $type {
|
1479
|
+
fn as_raw_fd(&self) -> RawFd {
|
1480
|
+
self.inner.as_raw_fd()
|
1481
|
+
}
|
1482
|
+
}
|
1483
|
+
|
1484
|
+
impl AsFd for $type {
|
1485
|
+
fn as_fd(&self) -> BorrowedFd<'_> {
|
1486
|
+
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
|
1487
|
+
}
|
1488
|
+
}
|
1489
|
+
};
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
impl_traits!(ChildStdin);
|
1493
|
+
impl_traits!(ChildStdout);
|
1494
|
+
impl_traits!(ChildStderr);
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
#[cfg(any(windows, docsrs))]
|
1498
|
+
#[cfg_attr(docsrs, doc(cfg(windows)))]
|
1499
|
+
mod windows {
|
1500
|
+
use super::*;
|
1501
|
+
use crate::os::windows::io::{AsHandle, AsRawHandle, BorrowedHandle, OwnedHandle, RawHandle};
|
1502
|
+
|
1503
|
+
#[cfg(not(docsrs))]
|
1504
|
+
macro_rules! impl_traits {
|
1505
|
+
($type:ty) => {
|
1506
|
+
impl $type {
|
1507
|
+
/// Convert into [`OwnedHandle`].
|
1508
|
+
pub fn into_owned_handle(self) -> io::Result<OwnedHandle> {
|
1509
|
+
self.inner.into_owned_handle()
|
1510
|
+
}
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
impl AsRawHandle for $type {
|
1514
|
+
fn as_raw_handle(&self) -> RawHandle {
|
1515
|
+
self.inner.as_raw_handle()
|
1516
|
+
}
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
impl AsHandle for $type {
|
1520
|
+
fn as_handle(&self) -> BorrowedHandle<'_> {
|
1521
|
+
unsafe { BorrowedHandle::borrow_raw(self.as_raw_handle()) }
|
1522
|
+
}
|
1523
|
+
}
|
1524
|
+
};
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
#[cfg(docsrs)]
|
1528
|
+
macro_rules! impl_traits {
|
1529
|
+
($type:ty) => {
|
1530
|
+
impl $type {
|
1531
|
+
/// Convert into [`OwnedHandle`].
|
1532
|
+
pub fn into_owned_handle(self) -> io::Result<OwnedHandle> {
|
1533
|
+
todo!("For doc generation only")
|
1534
|
+
}
|
1535
|
+
}
|
1536
|
+
|
1537
|
+
impl AsRawHandle for $type {
|
1538
|
+
fn as_raw_handle(&self) -> RawHandle {
|
1539
|
+
todo!("For doc generation only")
|
1540
|
+
}
|
1541
|
+
}
|
1542
|
+
|
1543
|
+
impl AsHandle for $type {
|
1544
|
+
fn as_handle(&self) -> BorrowedHandle<'_> {
|
1545
|
+
todo!("For doc generation only")
|
1546
|
+
}
|
1547
|
+
}
|
1548
|
+
};
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
impl_traits!(ChildStdin);
|
1552
|
+
impl_traits!(ChildStdout);
|
1553
|
+
impl_traits!(ChildStderr);
|
1554
|
+
}
|
1555
|
+
|
1556
|
+
#[cfg(all(test, not(loom)))]
|
1557
|
+
mod test {
|
1558
|
+
use super::kill::Kill;
|
1559
|
+
use super::ChildDropGuard;
|
1560
|
+
|
1561
|
+
use futures::future::FutureExt;
|
1562
|
+
use std::future::Future;
|
1563
|
+
use std::io;
|
1564
|
+
use std::pin::Pin;
|
1565
|
+
use std::task::{Context, Poll};
|
1566
|
+
|
1567
|
+
struct Mock {
|
1568
|
+
num_kills: usize,
|
1569
|
+
num_polls: usize,
|
1570
|
+
poll_result: Poll<Result<(), ()>>,
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
impl Mock {
|
1574
|
+
fn new() -> Self {
|
1575
|
+
Self::with_result(Poll::Pending)
|
1576
|
+
}
|
1577
|
+
|
1578
|
+
fn with_result(result: Poll<Result<(), ()>>) -> Self {
|
1579
|
+
Self {
|
1580
|
+
num_kills: 0,
|
1581
|
+
num_polls: 0,
|
1582
|
+
poll_result: result,
|
1583
|
+
}
|
1584
|
+
}
|
1585
|
+
}
|
1586
|
+
|
1587
|
+
impl Kill for Mock {
|
1588
|
+
fn kill(&mut self) -> io::Result<()> {
|
1589
|
+
self.num_kills += 1;
|
1590
|
+
Ok(())
|
1591
|
+
}
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
impl Future for Mock {
|
1595
|
+
type Output = Result<(), ()>;
|
1596
|
+
|
1597
|
+
fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> {
|
1598
|
+
let inner = Pin::get_mut(self);
|
1599
|
+
inner.num_polls += 1;
|
1600
|
+
inner.poll_result
|
1601
|
+
}
|
1602
|
+
}
|
1603
|
+
|
1604
|
+
#[test]
|
1605
|
+
fn kills_on_drop_if_specified() {
|
1606
|
+
let mut mock = Mock::new();
|
1607
|
+
|
1608
|
+
{
|
1609
|
+
let guard = ChildDropGuard {
|
1610
|
+
inner: &mut mock,
|
1611
|
+
kill_on_drop: true,
|
1612
|
+
};
|
1613
|
+
drop(guard);
|
1614
|
+
}
|
1615
|
+
|
1616
|
+
assert_eq!(1, mock.num_kills);
|
1617
|
+
assert_eq!(0, mock.num_polls);
|
1618
|
+
}
|
1619
|
+
|
1620
|
+
#[test]
|
1621
|
+
fn no_kill_on_drop_by_default() {
|
1622
|
+
let mut mock = Mock::new();
|
1623
|
+
|
1624
|
+
{
|
1625
|
+
let guard = ChildDropGuard {
|
1626
|
+
inner: &mut mock,
|
1627
|
+
kill_on_drop: false,
|
1628
|
+
};
|
1629
|
+
drop(guard);
|
1630
|
+
}
|
1631
|
+
|
1632
|
+
assert_eq!(0, mock.num_kills);
|
1633
|
+
assert_eq!(0, mock.num_polls);
|
1634
|
+
}
|
1635
|
+
|
1636
|
+
#[test]
|
1637
|
+
fn no_kill_if_already_killed() {
|
1638
|
+
let mut mock = Mock::new();
|
1639
|
+
|
1640
|
+
{
|
1641
|
+
let mut guard = ChildDropGuard {
|
1642
|
+
inner: &mut mock,
|
1643
|
+
kill_on_drop: true,
|
1644
|
+
};
|
1645
|
+
let _ = guard.kill();
|
1646
|
+
drop(guard);
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
assert_eq!(1, mock.num_kills);
|
1650
|
+
assert_eq!(0, mock.num_polls);
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
#[test]
|
1654
|
+
fn no_kill_if_reaped() {
|
1655
|
+
let mut mock_pending = Mock::with_result(Poll::Pending);
|
1656
|
+
let mut mock_reaped = Mock::with_result(Poll::Ready(Ok(())));
|
1657
|
+
let mut mock_err = Mock::with_result(Poll::Ready(Err(())));
|
1658
|
+
|
1659
|
+
let waker = futures::task::noop_waker();
|
1660
|
+
let mut context = Context::from_waker(&waker);
|
1661
|
+
{
|
1662
|
+
let mut guard = ChildDropGuard {
|
1663
|
+
inner: &mut mock_pending,
|
1664
|
+
kill_on_drop: true,
|
1665
|
+
};
|
1666
|
+
let _ = guard.poll_unpin(&mut context);
|
1667
|
+
|
1668
|
+
let mut guard = ChildDropGuard {
|
1669
|
+
inner: &mut mock_reaped,
|
1670
|
+
kill_on_drop: true,
|
1671
|
+
};
|
1672
|
+
let _ = guard.poll_unpin(&mut context);
|
1673
|
+
|
1674
|
+
let mut guard = ChildDropGuard {
|
1675
|
+
inner: &mut mock_err,
|
1676
|
+
kill_on_drop: true,
|
1677
|
+
};
|
1678
|
+
let _ = guard.poll_unpin(&mut context);
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
assert_eq!(1, mock_pending.num_kills);
|
1682
|
+
assert_eq!(1, mock_pending.num_polls);
|
1683
|
+
|
1684
|
+
assert_eq!(0, mock_reaped.num_kills);
|
1685
|
+
assert_eq!(1, mock_reaped.num_polls);
|
1686
|
+
|
1687
|
+
assert_eq!(1, mock_err.num_kills);
|
1688
|
+
assert_eq!(1, mock_err.num_polls);
|
1689
|
+
}
|
1690
|
+
}
|