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,1424 @@
|
|
1
|
+
cfg_not_wasi! {
|
2
|
+
use crate::future::poll_fn;
|
3
|
+
use crate::net::{to_socket_addrs, ToSocketAddrs};
|
4
|
+
use std::time::Duration;
|
5
|
+
}
|
6
|
+
|
7
|
+
use crate::io::{AsyncRead, AsyncWrite, Interest, PollEvented, ReadBuf, Ready};
|
8
|
+
use crate::net::tcp::split::{split, ReadHalf, WriteHalf};
|
9
|
+
use crate::net::tcp::split_owned::{split_owned, OwnedReadHalf, OwnedWriteHalf};
|
10
|
+
|
11
|
+
use std::fmt;
|
12
|
+
use std::io;
|
13
|
+
use std::net::{Shutdown, SocketAddr};
|
14
|
+
use std::pin::Pin;
|
15
|
+
use std::task::{ready, Context, Poll};
|
16
|
+
|
17
|
+
cfg_io_util! {
|
18
|
+
use bytes::BufMut;
|
19
|
+
}
|
20
|
+
|
21
|
+
cfg_net! {
|
22
|
+
/// A TCP stream between a local and a remote socket.
|
23
|
+
///
|
24
|
+
/// A TCP stream can either be created by connecting to an endpoint, via the
|
25
|
+
/// [`connect`] method, or by [accepting] a connection from a [listener]. A
|
26
|
+
/// TCP stream can also be created via the [`TcpSocket`] type.
|
27
|
+
///
|
28
|
+
/// Reading and writing to a `TcpStream` is usually done using the
|
29
|
+
/// convenience methods found on the [`AsyncReadExt`] and [`AsyncWriteExt`]
|
30
|
+
/// traits.
|
31
|
+
///
|
32
|
+
/// [`connect`]: method@TcpStream::connect
|
33
|
+
/// [accepting]: method@crate::net::TcpListener::accept
|
34
|
+
/// [listener]: struct@crate::net::TcpListener
|
35
|
+
/// [`TcpSocket`]: struct@crate::net::TcpSocket
|
36
|
+
/// [`AsyncReadExt`]: trait@crate::io::AsyncReadExt
|
37
|
+
/// [`AsyncWriteExt`]: trait@crate::io::AsyncWriteExt
|
38
|
+
///
|
39
|
+
/// # Examples
|
40
|
+
///
|
41
|
+
/// ```no_run
|
42
|
+
/// use tokio::net::TcpStream;
|
43
|
+
/// use tokio::io::AsyncWriteExt;
|
44
|
+
/// use std::error::Error;
|
45
|
+
///
|
46
|
+
/// #[tokio::main]
|
47
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
48
|
+
/// // Connect to a peer
|
49
|
+
/// let mut stream = TcpStream::connect("127.0.0.1:8080").await?;
|
50
|
+
///
|
51
|
+
/// // Write some data.
|
52
|
+
/// stream.write_all(b"hello world!").await?;
|
53
|
+
///
|
54
|
+
/// Ok(())
|
55
|
+
/// }
|
56
|
+
/// ```
|
57
|
+
///
|
58
|
+
/// The [`write_all`] method is defined on the [`AsyncWriteExt`] trait.
|
59
|
+
///
|
60
|
+
/// [`write_all`]: fn@crate::io::AsyncWriteExt::write_all
|
61
|
+
/// [`AsyncWriteExt`]: trait@crate::io::AsyncWriteExt
|
62
|
+
///
|
63
|
+
/// To shut down the stream in the write direction, you can call the
|
64
|
+
/// [`shutdown()`] method. This will cause the other peer to receive a read of
|
65
|
+
/// length 0, indicating that no more data will be sent. This only closes
|
66
|
+
/// the stream in one direction.
|
67
|
+
///
|
68
|
+
/// [`shutdown()`]: fn@crate::io::AsyncWriteExt::shutdown
|
69
|
+
pub struct TcpStream {
|
70
|
+
io: PollEvented<mio::net::TcpStream>,
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
impl TcpStream {
|
75
|
+
cfg_not_wasi! {
|
76
|
+
/// Opens a TCP connection to a remote host.
|
77
|
+
///
|
78
|
+
/// `addr` is an address of the remote host. Anything which implements the
|
79
|
+
/// [`ToSocketAddrs`] trait can be supplied as the address. If `addr`
|
80
|
+
/// yields multiple addresses, connect will be attempted with each of the
|
81
|
+
/// addresses until a connection is successful. If none of the addresses
|
82
|
+
/// result in a successful connection, the error returned from the last
|
83
|
+
/// connection attempt (the last address) is returned.
|
84
|
+
///
|
85
|
+
/// To configure the socket before connecting, you can use the [`TcpSocket`]
|
86
|
+
/// type.
|
87
|
+
///
|
88
|
+
/// [`ToSocketAddrs`]: trait@crate::net::ToSocketAddrs
|
89
|
+
/// [`TcpSocket`]: struct@crate::net::TcpSocket
|
90
|
+
///
|
91
|
+
/// # Examples
|
92
|
+
///
|
93
|
+
/// ```no_run
|
94
|
+
/// use tokio::net::TcpStream;
|
95
|
+
/// use tokio::io::AsyncWriteExt;
|
96
|
+
/// use std::error::Error;
|
97
|
+
///
|
98
|
+
/// #[tokio::main]
|
99
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
100
|
+
/// // Connect to a peer
|
101
|
+
/// let mut stream = TcpStream::connect("127.0.0.1:8080").await?;
|
102
|
+
///
|
103
|
+
/// // Write some data.
|
104
|
+
/// stream.write_all(b"hello world!").await?;
|
105
|
+
///
|
106
|
+
/// Ok(())
|
107
|
+
/// }
|
108
|
+
/// ```
|
109
|
+
///
|
110
|
+
/// The [`write_all`] method is defined on the [`AsyncWriteExt`] trait.
|
111
|
+
///
|
112
|
+
/// [`write_all`]: fn@crate::io::AsyncWriteExt::write_all
|
113
|
+
/// [`AsyncWriteExt`]: trait@crate::io::AsyncWriteExt
|
114
|
+
pub async fn connect<A: ToSocketAddrs>(addr: A) -> io::Result<TcpStream> {
|
115
|
+
let addrs = to_socket_addrs(addr).await?;
|
116
|
+
|
117
|
+
let mut last_err = None;
|
118
|
+
|
119
|
+
for addr in addrs {
|
120
|
+
match TcpStream::connect_addr(addr).await {
|
121
|
+
Ok(stream) => return Ok(stream),
|
122
|
+
Err(e) => last_err = Some(e),
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
Err(last_err.unwrap_or_else(|| {
|
127
|
+
io::Error::new(
|
128
|
+
io::ErrorKind::InvalidInput,
|
129
|
+
"could not resolve to any address",
|
130
|
+
)
|
131
|
+
}))
|
132
|
+
}
|
133
|
+
|
134
|
+
/// Establishes a connection to the specified `addr`.
|
135
|
+
async fn connect_addr(addr: SocketAddr) -> io::Result<TcpStream> {
|
136
|
+
let sys = mio::net::TcpStream::connect(addr)?;
|
137
|
+
TcpStream::connect_mio(sys).await
|
138
|
+
}
|
139
|
+
|
140
|
+
pub(crate) async fn connect_mio(sys: mio::net::TcpStream) -> io::Result<TcpStream> {
|
141
|
+
let stream = TcpStream::new(sys)?;
|
142
|
+
|
143
|
+
// Once we've connected, wait for the stream to be writable as
|
144
|
+
// that's when the actual connection has been initiated. Once we're
|
145
|
+
// writable we check for `take_socket_error` to see if the connect
|
146
|
+
// actually hit an error or not.
|
147
|
+
//
|
148
|
+
// If all that succeeded then we ship everything on up.
|
149
|
+
poll_fn(|cx| stream.io.registration().poll_write_ready(cx)).await?;
|
150
|
+
|
151
|
+
if let Some(e) = stream.io.take_error()? {
|
152
|
+
return Err(e);
|
153
|
+
}
|
154
|
+
|
155
|
+
Ok(stream)
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
pub(crate) fn new(connected: mio::net::TcpStream) -> io::Result<TcpStream> {
|
160
|
+
let io = PollEvented::new(connected)?;
|
161
|
+
Ok(TcpStream { io })
|
162
|
+
}
|
163
|
+
|
164
|
+
/// Creates new `TcpStream` from a `std::net::TcpStream`.
|
165
|
+
///
|
166
|
+
/// This function is intended to be used to wrap a TCP stream from the
|
167
|
+
/// standard library in the Tokio equivalent.
|
168
|
+
///
|
169
|
+
/// # Notes
|
170
|
+
///
|
171
|
+
/// The caller is responsible for ensuring that the stream is in
|
172
|
+
/// non-blocking mode. Otherwise all I/O operations on the stream
|
173
|
+
/// will block the thread, which will cause unexpected behavior.
|
174
|
+
/// Non-blocking mode can be set using [`set_nonblocking`].
|
175
|
+
///
|
176
|
+
/// [`set_nonblocking`]: std::net::TcpStream::set_nonblocking
|
177
|
+
///
|
178
|
+
/// # Examples
|
179
|
+
///
|
180
|
+
/// ```rust,no_run
|
181
|
+
/// use std::error::Error;
|
182
|
+
/// use tokio::net::TcpStream;
|
183
|
+
///
|
184
|
+
/// #[tokio::main]
|
185
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
186
|
+
/// let std_stream = std::net::TcpStream::connect("127.0.0.1:34254")?;
|
187
|
+
/// std_stream.set_nonblocking(true)?;
|
188
|
+
/// let stream = TcpStream::from_std(std_stream)?;
|
189
|
+
/// Ok(())
|
190
|
+
/// }
|
191
|
+
/// ```
|
192
|
+
///
|
193
|
+
/// # Panics
|
194
|
+
///
|
195
|
+
/// This function panics if it is not called from within a runtime with
|
196
|
+
/// IO enabled.
|
197
|
+
///
|
198
|
+
/// The runtime is usually set implicitly when this function is called
|
199
|
+
/// from a future driven by a tokio runtime, otherwise runtime can be set
|
200
|
+
/// explicitly with [`Runtime::enter`](crate::runtime::Runtime::enter) function.
|
201
|
+
#[track_caller]
|
202
|
+
pub fn from_std(stream: std::net::TcpStream) -> io::Result<TcpStream> {
|
203
|
+
let io = mio::net::TcpStream::from_std(stream);
|
204
|
+
let io = PollEvented::new(io)?;
|
205
|
+
Ok(TcpStream { io })
|
206
|
+
}
|
207
|
+
|
208
|
+
/// Turns a [`tokio::net::TcpStream`] into a [`std::net::TcpStream`].
|
209
|
+
///
|
210
|
+
/// The returned [`std::net::TcpStream`] will have nonblocking mode set as `true`.
|
211
|
+
/// Use [`set_nonblocking`] to change the blocking mode if needed.
|
212
|
+
///
|
213
|
+
/// # Examples
|
214
|
+
///
|
215
|
+
/// ```
|
216
|
+
/// use std::error::Error;
|
217
|
+
/// use std::io::Read;
|
218
|
+
/// use tokio::net::TcpListener;
|
219
|
+
/// # use tokio::net::TcpStream;
|
220
|
+
/// # use tokio::io::AsyncWriteExt;
|
221
|
+
///
|
222
|
+
/// #[tokio::main]
|
223
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
224
|
+
/// let mut data = [0u8; 12];
|
225
|
+
/// # if false {
|
226
|
+
/// let listener = TcpListener::bind("127.0.0.1:34254").await?;
|
227
|
+
/// # }
|
228
|
+
/// # let listener = TcpListener::bind("127.0.0.1:0").await?;
|
229
|
+
/// # let addr = listener.local_addr().unwrap();
|
230
|
+
/// # let handle = tokio::spawn(async move {
|
231
|
+
/// # let mut stream: TcpStream = TcpStream::connect(addr).await.unwrap();
|
232
|
+
/// # stream.write_all(b"Hello world!").await.unwrap();
|
233
|
+
/// # });
|
234
|
+
/// let (tokio_tcp_stream, _) = listener.accept().await?;
|
235
|
+
/// let mut std_tcp_stream = tokio_tcp_stream.into_std()?;
|
236
|
+
/// # handle.await.expect("The task being joined has panicked");
|
237
|
+
/// std_tcp_stream.set_nonblocking(false)?;
|
238
|
+
/// std_tcp_stream.read_exact(&mut data)?;
|
239
|
+
/// # assert_eq!(b"Hello world!", &data);
|
240
|
+
/// Ok(())
|
241
|
+
/// }
|
242
|
+
/// ```
|
243
|
+
/// [`tokio::net::TcpStream`]: TcpStream
|
244
|
+
/// [`std::net::TcpStream`]: std::net::TcpStream
|
245
|
+
/// [`set_nonblocking`]: fn@std::net::TcpStream::set_nonblocking
|
246
|
+
pub fn into_std(self) -> io::Result<std::net::TcpStream> {
|
247
|
+
#[cfg(unix)]
|
248
|
+
{
|
249
|
+
use std::os::unix::io::{FromRawFd, IntoRawFd};
|
250
|
+
self.io
|
251
|
+
.into_inner()
|
252
|
+
.map(IntoRawFd::into_raw_fd)
|
253
|
+
.map(|raw_fd| unsafe { std::net::TcpStream::from_raw_fd(raw_fd) })
|
254
|
+
}
|
255
|
+
|
256
|
+
#[cfg(windows)]
|
257
|
+
{
|
258
|
+
use std::os::windows::io::{FromRawSocket, IntoRawSocket};
|
259
|
+
self.io
|
260
|
+
.into_inner()
|
261
|
+
.map(|io| io.into_raw_socket())
|
262
|
+
.map(|raw_socket| unsafe { std::net::TcpStream::from_raw_socket(raw_socket) })
|
263
|
+
}
|
264
|
+
|
265
|
+
#[cfg(target_os = "wasi")]
|
266
|
+
{
|
267
|
+
use std::os::wasi::io::{FromRawFd, IntoRawFd};
|
268
|
+
self.io
|
269
|
+
.into_inner()
|
270
|
+
.map(|io| io.into_raw_fd())
|
271
|
+
.map(|raw_fd| unsafe { std::net::TcpStream::from_raw_fd(raw_fd) })
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
/// Returns the local address that this stream is bound to.
|
276
|
+
///
|
277
|
+
/// # Examples
|
278
|
+
///
|
279
|
+
/// ```no_run
|
280
|
+
/// use tokio::net::TcpStream;
|
281
|
+
///
|
282
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
283
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
284
|
+
///
|
285
|
+
/// println!("{:?}", stream.local_addr()?);
|
286
|
+
/// # Ok(())
|
287
|
+
/// # }
|
288
|
+
/// ```
|
289
|
+
pub fn local_addr(&self) -> io::Result<SocketAddr> {
|
290
|
+
self.io.local_addr()
|
291
|
+
}
|
292
|
+
|
293
|
+
/// Returns the value of the `SO_ERROR` option.
|
294
|
+
pub fn take_error(&self) -> io::Result<Option<io::Error>> {
|
295
|
+
self.io.take_error()
|
296
|
+
}
|
297
|
+
|
298
|
+
/// Returns the remote address that this stream is connected to.
|
299
|
+
///
|
300
|
+
/// # Examples
|
301
|
+
///
|
302
|
+
/// ```no_run
|
303
|
+
/// use tokio::net::TcpStream;
|
304
|
+
///
|
305
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
306
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
307
|
+
///
|
308
|
+
/// println!("{:?}", stream.peer_addr()?);
|
309
|
+
/// # Ok(())
|
310
|
+
/// # }
|
311
|
+
/// ```
|
312
|
+
pub fn peer_addr(&self) -> io::Result<SocketAddr> {
|
313
|
+
self.io.peer_addr()
|
314
|
+
}
|
315
|
+
|
316
|
+
/// Attempts to receive data on the socket, without removing that data from
|
317
|
+
/// the queue, registering the current task for wakeup if data is not yet
|
318
|
+
/// available.
|
319
|
+
///
|
320
|
+
/// Note that on multiple calls to `poll_peek`, `poll_read` or
|
321
|
+
/// `poll_read_ready`, only the `Waker` from the `Context` passed to the
|
322
|
+
/// most recent call is scheduled to receive a wakeup. (However,
|
323
|
+
/// `poll_write` retains a second, independent waker.)
|
324
|
+
///
|
325
|
+
/// # Return value
|
326
|
+
///
|
327
|
+
/// The function returns:
|
328
|
+
///
|
329
|
+
/// * `Poll::Pending` if data is not yet available.
|
330
|
+
/// * `Poll::Ready(Ok(n))` if data is available. `n` is the number of bytes peeked.
|
331
|
+
/// * `Poll::Ready(Err(e))` if an error is encountered.
|
332
|
+
///
|
333
|
+
/// # Errors
|
334
|
+
///
|
335
|
+
/// This function may encounter any standard I/O error except `WouldBlock`.
|
336
|
+
///
|
337
|
+
/// # Examples
|
338
|
+
///
|
339
|
+
/// ```no_run
|
340
|
+
/// use tokio::io::{self, ReadBuf};
|
341
|
+
/// use tokio::net::TcpStream;
|
342
|
+
///
|
343
|
+
/// use futures::future::poll_fn;
|
344
|
+
///
|
345
|
+
/// #[tokio::main]
|
346
|
+
/// async fn main() -> io::Result<()> {
|
347
|
+
/// let stream = TcpStream::connect("127.0.0.1:8000").await?;
|
348
|
+
/// let mut buf = [0; 10];
|
349
|
+
/// let mut buf = ReadBuf::new(&mut buf);
|
350
|
+
///
|
351
|
+
/// poll_fn(|cx| {
|
352
|
+
/// stream.poll_peek(cx, &mut buf)
|
353
|
+
/// }).await?;
|
354
|
+
///
|
355
|
+
/// Ok(())
|
356
|
+
/// }
|
357
|
+
/// ```
|
358
|
+
pub fn poll_peek(
|
359
|
+
&self,
|
360
|
+
cx: &mut Context<'_>,
|
361
|
+
buf: &mut ReadBuf<'_>,
|
362
|
+
) -> Poll<io::Result<usize>> {
|
363
|
+
loop {
|
364
|
+
let ev = ready!(self.io.registration().poll_read_ready(cx))?;
|
365
|
+
|
366
|
+
let b = unsafe {
|
367
|
+
&mut *(buf.unfilled_mut() as *mut [std::mem::MaybeUninit<u8>] as *mut [u8])
|
368
|
+
};
|
369
|
+
|
370
|
+
match self.io.peek(b) {
|
371
|
+
Ok(ret) => {
|
372
|
+
unsafe { buf.assume_init(ret) };
|
373
|
+
buf.advance(ret);
|
374
|
+
return Poll::Ready(Ok(ret));
|
375
|
+
}
|
376
|
+
Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
377
|
+
self.io.registration().clear_readiness(ev);
|
378
|
+
}
|
379
|
+
Err(e) => return Poll::Ready(Err(e)),
|
380
|
+
}
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
/// Waits for any of the requested ready states.
|
385
|
+
///
|
386
|
+
/// This function is usually paired with `try_read()` or `try_write()`. It
|
387
|
+
/// can be used to concurrently read / write to the same socket on a single
|
388
|
+
/// task without splitting the socket.
|
389
|
+
///
|
390
|
+
/// The function may complete without the socket being ready. This is a
|
391
|
+
/// false-positive and attempting an operation will return with
|
392
|
+
/// `io::ErrorKind::WouldBlock`. The function can also return with an empty
|
393
|
+
/// [`Ready`] set, so you should always check the returned value and possibly
|
394
|
+
/// wait again if the requested states are not set.
|
395
|
+
///
|
396
|
+
/// # Cancel safety
|
397
|
+
///
|
398
|
+
/// This method is cancel safe. Once a readiness event occurs, the method
|
399
|
+
/// will continue to return immediately until the readiness event is
|
400
|
+
/// consumed by an attempt to read or write that fails with `WouldBlock` or
|
401
|
+
/// `Poll::Pending`.
|
402
|
+
///
|
403
|
+
/// # Examples
|
404
|
+
///
|
405
|
+
/// Concurrently read and write to the stream on the same task without
|
406
|
+
/// splitting.
|
407
|
+
///
|
408
|
+
/// ```no_run
|
409
|
+
/// use tokio::io::Interest;
|
410
|
+
/// use tokio::net::TcpStream;
|
411
|
+
/// use std::error::Error;
|
412
|
+
/// use std::io;
|
413
|
+
///
|
414
|
+
/// #[tokio::main]
|
415
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
416
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
417
|
+
///
|
418
|
+
/// loop {
|
419
|
+
/// let ready = stream.ready(Interest::READABLE | Interest::WRITABLE).await?;
|
420
|
+
///
|
421
|
+
/// if ready.is_readable() {
|
422
|
+
/// let mut data = vec![0; 1024];
|
423
|
+
/// // Try to read data, this may still fail with `WouldBlock`
|
424
|
+
/// // if the readiness event is a false positive.
|
425
|
+
/// match stream.try_read(&mut data) {
|
426
|
+
/// Ok(n) => {
|
427
|
+
/// println!("read {} bytes", n);
|
428
|
+
/// }
|
429
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
430
|
+
/// continue;
|
431
|
+
/// }
|
432
|
+
/// Err(e) => {
|
433
|
+
/// return Err(e.into());
|
434
|
+
/// }
|
435
|
+
/// }
|
436
|
+
///
|
437
|
+
/// }
|
438
|
+
///
|
439
|
+
/// if ready.is_writable() {
|
440
|
+
/// // Try to write data, this may still fail with `WouldBlock`
|
441
|
+
/// // if the readiness event is a false positive.
|
442
|
+
/// match stream.try_write(b"hello world") {
|
443
|
+
/// Ok(n) => {
|
444
|
+
/// println!("write {} bytes", n);
|
445
|
+
/// }
|
446
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
447
|
+
/// continue
|
448
|
+
/// }
|
449
|
+
/// Err(e) => {
|
450
|
+
/// return Err(e.into());
|
451
|
+
/// }
|
452
|
+
/// }
|
453
|
+
/// }
|
454
|
+
/// }
|
455
|
+
/// }
|
456
|
+
/// ```
|
457
|
+
pub async fn ready(&self, interest: Interest) -> io::Result<Ready> {
|
458
|
+
let event = self.io.registration().readiness(interest).await?;
|
459
|
+
Ok(event.ready)
|
460
|
+
}
|
461
|
+
|
462
|
+
/// Waits for the socket to become readable.
|
463
|
+
///
|
464
|
+
/// This function is equivalent to `ready(Interest::READABLE)` and is usually
|
465
|
+
/// paired with `try_read()`.
|
466
|
+
///
|
467
|
+
/// # Cancel safety
|
468
|
+
///
|
469
|
+
/// This method is cancel safe. Once a readiness event occurs, the method
|
470
|
+
/// will continue to return immediately until the readiness event is
|
471
|
+
/// consumed by an attempt to read that fails with `WouldBlock` or
|
472
|
+
/// `Poll::Pending`.
|
473
|
+
///
|
474
|
+
/// # Examples
|
475
|
+
///
|
476
|
+
/// ```no_run
|
477
|
+
/// use tokio::net::TcpStream;
|
478
|
+
/// use std::error::Error;
|
479
|
+
/// use std::io;
|
480
|
+
///
|
481
|
+
/// #[tokio::main]
|
482
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
483
|
+
/// // Connect to a peer
|
484
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
485
|
+
///
|
486
|
+
/// let mut msg = vec![0; 1024];
|
487
|
+
///
|
488
|
+
/// loop {
|
489
|
+
/// // Wait for the socket to be readable
|
490
|
+
/// stream.readable().await?;
|
491
|
+
///
|
492
|
+
/// // Try to read data, this may still fail with `WouldBlock`
|
493
|
+
/// // if the readiness event is a false positive.
|
494
|
+
/// match stream.try_read(&mut msg) {
|
495
|
+
/// Ok(n) => {
|
496
|
+
/// msg.truncate(n);
|
497
|
+
/// break;
|
498
|
+
/// }
|
499
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
500
|
+
/// continue;
|
501
|
+
/// }
|
502
|
+
/// Err(e) => {
|
503
|
+
/// return Err(e.into());
|
504
|
+
/// }
|
505
|
+
/// }
|
506
|
+
/// }
|
507
|
+
///
|
508
|
+
/// println!("GOT = {:?}", msg);
|
509
|
+
/// Ok(())
|
510
|
+
/// }
|
511
|
+
/// ```
|
512
|
+
pub async fn readable(&self) -> io::Result<()> {
|
513
|
+
self.ready(Interest::READABLE).await?;
|
514
|
+
Ok(())
|
515
|
+
}
|
516
|
+
|
517
|
+
/// Polls for read readiness.
|
518
|
+
///
|
519
|
+
/// If the tcp stream is not currently ready for reading, this method will
|
520
|
+
/// store a clone of the `Waker` from the provided `Context`. When the tcp
|
521
|
+
/// stream becomes ready for reading, `Waker::wake` will be called on the
|
522
|
+
/// waker.
|
523
|
+
///
|
524
|
+
/// Note that on multiple calls to `poll_read_ready`, `poll_read` or
|
525
|
+
/// `poll_peek`, only the `Waker` from the `Context` passed to the most
|
526
|
+
/// recent call is scheduled to receive a wakeup. (However,
|
527
|
+
/// `poll_write_ready` retains a second, independent waker.)
|
528
|
+
///
|
529
|
+
/// This function is intended for cases where creating and pinning a future
|
530
|
+
/// via [`readable`] is not feasible. Where possible, using [`readable`] is
|
531
|
+
/// preferred, as this supports polling from multiple tasks at once.
|
532
|
+
///
|
533
|
+
/// # Return value
|
534
|
+
///
|
535
|
+
/// The function returns:
|
536
|
+
///
|
537
|
+
/// * `Poll::Pending` if the tcp stream is not ready for reading.
|
538
|
+
/// * `Poll::Ready(Ok(()))` if the tcp stream is ready for reading.
|
539
|
+
/// * `Poll::Ready(Err(e))` if an error is encountered.
|
540
|
+
///
|
541
|
+
/// # Errors
|
542
|
+
///
|
543
|
+
/// This function may encounter any standard I/O error except `WouldBlock`.
|
544
|
+
///
|
545
|
+
/// [`readable`]: method@Self::readable
|
546
|
+
pub fn poll_read_ready(&self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
547
|
+
self.io.registration().poll_read_ready(cx).map_ok(|_| ())
|
548
|
+
}
|
549
|
+
|
550
|
+
/// Tries to read data from the stream into the provided buffer, returning how
|
551
|
+
/// many bytes were read.
|
552
|
+
///
|
553
|
+
/// Receives any pending data from the socket but does not wait for new data
|
554
|
+
/// to arrive. On success, returns the number of bytes read. Because
|
555
|
+
/// `try_read()` is non-blocking, the buffer does not have to be stored by
|
556
|
+
/// the async task and can exist entirely on the stack.
|
557
|
+
///
|
558
|
+
/// Usually, [`readable()`] or [`ready()`] is used with this function.
|
559
|
+
///
|
560
|
+
/// [`readable()`]: TcpStream::readable()
|
561
|
+
/// [`ready()`]: TcpStream::ready()
|
562
|
+
///
|
563
|
+
/// # Return
|
564
|
+
///
|
565
|
+
/// If data is successfully read, `Ok(n)` is returned, where `n` is the
|
566
|
+
/// number of bytes read. If `n` is `0`, then it can indicate one of two scenarios:
|
567
|
+
///
|
568
|
+
/// 1. The stream's read half is closed and will no longer yield data.
|
569
|
+
/// 2. The specified buffer was 0 bytes in length.
|
570
|
+
///
|
571
|
+
/// If the stream is not ready to read data,
|
572
|
+
/// `Err(io::ErrorKind::WouldBlock)` is returned.
|
573
|
+
///
|
574
|
+
/// # Examples
|
575
|
+
///
|
576
|
+
/// ```no_run
|
577
|
+
/// use tokio::net::TcpStream;
|
578
|
+
/// use std::error::Error;
|
579
|
+
/// use std::io;
|
580
|
+
///
|
581
|
+
/// #[tokio::main]
|
582
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
583
|
+
/// // Connect to a peer
|
584
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
585
|
+
///
|
586
|
+
/// loop {
|
587
|
+
/// // Wait for the socket to be readable
|
588
|
+
/// stream.readable().await?;
|
589
|
+
///
|
590
|
+
/// // Creating the buffer **after** the `await` prevents it from
|
591
|
+
/// // being stored in the async task.
|
592
|
+
/// let mut buf = [0; 4096];
|
593
|
+
///
|
594
|
+
/// // Try to read data, this may still fail with `WouldBlock`
|
595
|
+
/// // if the readiness event is a false positive.
|
596
|
+
/// match stream.try_read(&mut buf) {
|
597
|
+
/// Ok(0) => break,
|
598
|
+
/// Ok(n) => {
|
599
|
+
/// println!("read {} bytes", n);
|
600
|
+
/// }
|
601
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
602
|
+
/// continue;
|
603
|
+
/// }
|
604
|
+
/// Err(e) => {
|
605
|
+
/// return Err(e.into());
|
606
|
+
/// }
|
607
|
+
/// }
|
608
|
+
/// }
|
609
|
+
///
|
610
|
+
/// Ok(())
|
611
|
+
/// }
|
612
|
+
/// ```
|
613
|
+
pub fn try_read(&self, buf: &mut [u8]) -> io::Result<usize> {
|
614
|
+
use std::io::Read;
|
615
|
+
|
616
|
+
self.io
|
617
|
+
.registration()
|
618
|
+
.try_io(Interest::READABLE, || (&*self.io).read(buf))
|
619
|
+
}
|
620
|
+
|
621
|
+
/// Tries to read data from the stream into the provided buffers, returning
|
622
|
+
/// how many bytes were read.
|
623
|
+
///
|
624
|
+
/// Data is copied to fill each buffer in order, with the final buffer
|
625
|
+
/// written to possibly being only partially filled. This method behaves
|
626
|
+
/// equivalently to a single call to [`try_read()`] with concatenated
|
627
|
+
/// buffers.
|
628
|
+
///
|
629
|
+
/// Receives any pending data from the socket but does not wait for new data
|
630
|
+
/// to arrive. On success, returns the number of bytes read. Because
|
631
|
+
/// `try_read_vectored()` is non-blocking, the buffer does not have to be
|
632
|
+
/// stored by the async task and can exist entirely on the stack.
|
633
|
+
///
|
634
|
+
/// Usually, [`readable()`] or [`ready()`] is used with this function.
|
635
|
+
///
|
636
|
+
/// [`try_read()`]: TcpStream::try_read()
|
637
|
+
/// [`readable()`]: TcpStream::readable()
|
638
|
+
/// [`ready()`]: TcpStream::ready()
|
639
|
+
///
|
640
|
+
/// # Return
|
641
|
+
///
|
642
|
+
/// If data is successfully read, `Ok(n)` is returned, where `n` is the
|
643
|
+
/// number of bytes read. `Ok(0)` indicates the stream's read half is closed
|
644
|
+
/// and will no longer yield data. If the stream is not ready to read data
|
645
|
+
/// `Err(io::ErrorKind::WouldBlock)` is returned.
|
646
|
+
///
|
647
|
+
/// # Examples
|
648
|
+
///
|
649
|
+
/// ```no_run
|
650
|
+
/// use tokio::net::TcpStream;
|
651
|
+
/// use std::error::Error;
|
652
|
+
/// use std::io::{self, IoSliceMut};
|
653
|
+
///
|
654
|
+
/// #[tokio::main]
|
655
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
656
|
+
/// // Connect to a peer
|
657
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
658
|
+
///
|
659
|
+
/// loop {
|
660
|
+
/// // Wait for the socket to be readable
|
661
|
+
/// stream.readable().await?;
|
662
|
+
///
|
663
|
+
/// // Creating the buffer **after** the `await` prevents it from
|
664
|
+
/// // being stored in the async task.
|
665
|
+
/// let mut buf_a = [0; 512];
|
666
|
+
/// let mut buf_b = [0; 1024];
|
667
|
+
/// let mut bufs = [
|
668
|
+
/// IoSliceMut::new(&mut buf_a),
|
669
|
+
/// IoSliceMut::new(&mut buf_b),
|
670
|
+
/// ];
|
671
|
+
///
|
672
|
+
/// // Try to read data, this may still fail with `WouldBlock`
|
673
|
+
/// // if the readiness event is a false positive.
|
674
|
+
/// match stream.try_read_vectored(&mut bufs) {
|
675
|
+
/// Ok(0) => break,
|
676
|
+
/// Ok(n) => {
|
677
|
+
/// println!("read {} bytes", n);
|
678
|
+
/// }
|
679
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
680
|
+
/// continue;
|
681
|
+
/// }
|
682
|
+
/// Err(e) => {
|
683
|
+
/// return Err(e.into());
|
684
|
+
/// }
|
685
|
+
/// }
|
686
|
+
/// }
|
687
|
+
///
|
688
|
+
/// Ok(())
|
689
|
+
/// }
|
690
|
+
/// ```
|
691
|
+
pub fn try_read_vectored(&self, bufs: &mut [io::IoSliceMut<'_>]) -> io::Result<usize> {
|
692
|
+
use std::io::Read;
|
693
|
+
|
694
|
+
self.io
|
695
|
+
.registration()
|
696
|
+
.try_io(Interest::READABLE, || (&*self.io).read_vectored(bufs))
|
697
|
+
}
|
698
|
+
|
699
|
+
cfg_io_util! {
|
700
|
+
/// Tries to read data from the stream into the provided buffer, advancing the
|
701
|
+
/// buffer's internal cursor, returning how many bytes were read.
|
702
|
+
///
|
703
|
+
/// Receives any pending data from the socket but does not wait for new data
|
704
|
+
/// to arrive. On success, returns the number of bytes read. Because
|
705
|
+
/// `try_read_buf()` is non-blocking, the buffer does not have to be stored by
|
706
|
+
/// the async task and can exist entirely on the stack.
|
707
|
+
///
|
708
|
+
/// Usually, [`readable()`] or [`ready()`] is used with this function.
|
709
|
+
///
|
710
|
+
/// [`readable()`]: TcpStream::readable()
|
711
|
+
/// [`ready()`]: TcpStream::ready()
|
712
|
+
///
|
713
|
+
/// # Return
|
714
|
+
///
|
715
|
+
/// If data is successfully read, `Ok(n)` is returned, where `n` is the
|
716
|
+
/// number of bytes read. `Ok(0)` indicates the stream's read half is closed
|
717
|
+
/// and will no longer yield data. If the stream is not ready to read data
|
718
|
+
/// `Err(io::ErrorKind::WouldBlock)` is returned.
|
719
|
+
///
|
720
|
+
/// # Examples
|
721
|
+
///
|
722
|
+
/// ```no_run
|
723
|
+
/// use tokio::net::TcpStream;
|
724
|
+
/// use std::error::Error;
|
725
|
+
/// use std::io;
|
726
|
+
///
|
727
|
+
/// #[tokio::main]
|
728
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
729
|
+
/// // Connect to a peer
|
730
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
731
|
+
///
|
732
|
+
/// loop {
|
733
|
+
/// // Wait for the socket to be readable
|
734
|
+
/// stream.readable().await?;
|
735
|
+
///
|
736
|
+
/// let mut buf = Vec::with_capacity(4096);
|
737
|
+
///
|
738
|
+
/// // Try to read data, this may still fail with `WouldBlock`
|
739
|
+
/// // if the readiness event is a false positive.
|
740
|
+
/// match stream.try_read_buf(&mut buf) {
|
741
|
+
/// Ok(0) => break,
|
742
|
+
/// Ok(n) => {
|
743
|
+
/// println!("read {} bytes", n);
|
744
|
+
/// }
|
745
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
746
|
+
/// continue;
|
747
|
+
/// }
|
748
|
+
/// Err(e) => {
|
749
|
+
/// return Err(e.into());
|
750
|
+
/// }
|
751
|
+
/// }
|
752
|
+
/// }
|
753
|
+
///
|
754
|
+
/// Ok(())
|
755
|
+
/// }
|
756
|
+
/// ```
|
757
|
+
pub fn try_read_buf<B: BufMut>(&self, buf: &mut B) -> io::Result<usize> {
|
758
|
+
self.io.registration().try_io(Interest::READABLE, || {
|
759
|
+
use std::io::Read;
|
760
|
+
|
761
|
+
let dst = buf.chunk_mut();
|
762
|
+
let dst =
|
763
|
+
unsafe { &mut *(dst as *mut _ as *mut [std::mem::MaybeUninit<u8>] as *mut [u8]) };
|
764
|
+
|
765
|
+
// Safety: We trust `TcpStream::read` to have filled up `n` bytes in the
|
766
|
+
// buffer.
|
767
|
+
let n = (&*self.io).read(dst)?;
|
768
|
+
|
769
|
+
unsafe {
|
770
|
+
buf.advance_mut(n);
|
771
|
+
}
|
772
|
+
|
773
|
+
Ok(n)
|
774
|
+
})
|
775
|
+
}
|
776
|
+
}
|
777
|
+
|
778
|
+
/// Waits for the socket to become writable.
|
779
|
+
///
|
780
|
+
/// This function is equivalent to `ready(Interest::WRITABLE)` and is usually
|
781
|
+
/// paired with `try_write()`.
|
782
|
+
///
|
783
|
+
/// # Cancel safety
|
784
|
+
///
|
785
|
+
/// This method is cancel safe. Once a readiness event occurs, the method
|
786
|
+
/// will continue to return immediately until the readiness event is
|
787
|
+
/// consumed by an attempt to write that fails with `WouldBlock` or
|
788
|
+
/// `Poll::Pending`.
|
789
|
+
///
|
790
|
+
/// # Examples
|
791
|
+
///
|
792
|
+
/// ```no_run
|
793
|
+
/// use tokio::net::TcpStream;
|
794
|
+
/// use std::error::Error;
|
795
|
+
/// use std::io;
|
796
|
+
///
|
797
|
+
/// #[tokio::main]
|
798
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
799
|
+
/// // Connect to a peer
|
800
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
801
|
+
///
|
802
|
+
/// loop {
|
803
|
+
/// // Wait for the socket to be writable
|
804
|
+
/// stream.writable().await?;
|
805
|
+
///
|
806
|
+
/// // Try to write data, this may still fail with `WouldBlock`
|
807
|
+
/// // if the readiness event is a false positive.
|
808
|
+
/// match stream.try_write(b"hello world") {
|
809
|
+
/// Ok(n) => {
|
810
|
+
/// break;
|
811
|
+
/// }
|
812
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
813
|
+
/// continue;
|
814
|
+
/// }
|
815
|
+
/// Err(e) => {
|
816
|
+
/// return Err(e.into());
|
817
|
+
/// }
|
818
|
+
/// }
|
819
|
+
/// }
|
820
|
+
///
|
821
|
+
/// Ok(())
|
822
|
+
/// }
|
823
|
+
/// ```
|
824
|
+
pub async fn writable(&self) -> io::Result<()> {
|
825
|
+
self.ready(Interest::WRITABLE).await?;
|
826
|
+
Ok(())
|
827
|
+
}
|
828
|
+
|
829
|
+
/// Polls for write readiness.
|
830
|
+
///
|
831
|
+
/// If the tcp stream is not currently ready for writing, this method will
|
832
|
+
/// store a clone of the `Waker` from the provided `Context`. When the tcp
|
833
|
+
/// stream becomes ready for writing, `Waker::wake` will be called on the
|
834
|
+
/// waker.
|
835
|
+
///
|
836
|
+
/// Note that on multiple calls to `poll_write_ready` or `poll_write`, only
|
837
|
+
/// the `Waker` from the `Context` passed to the most recent call is
|
838
|
+
/// scheduled to receive a wakeup. (However, `poll_read_ready` retains a
|
839
|
+
/// second, independent waker.)
|
840
|
+
///
|
841
|
+
/// This function is intended for cases where creating and pinning a future
|
842
|
+
/// via [`writable`] is not feasible. Where possible, using [`writable`] is
|
843
|
+
/// preferred, as this supports polling from multiple tasks at once.
|
844
|
+
///
|
845
|
+
/// # Return value
|
846
|
+
///
|
847
|
+
/// The function returns:
|
848
|
+
///
|
849
|
+
/// * `Poll::Pending` if the tcp stream is not ready for writing.
|
850
|
+
/// * `Poll::Ready(Ok(()))` if the tcp stream is ready for writing.
|
851
|
+
/// * `Poll::Ready(Err(e))` if an error is encountered.
|
852
|
+
///
|
853
|
+
/// # Errors
|
854
|
+
///
|
855
|
+
/// This function may encounter any standard I/O error except `WouldBlock`.
|
856
|
+
///
|
857
|
+
/// [`writable`]: method@Self::writable
|
858
|
+
pub fn poll_write_ready(&self, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
|
859
|
+
self.io.registration().poll_write_ready(cx).map_ok(|_| ())
|
860
|
+
}
|
861
|
+
|
862
|
+
/// Try to write a buffer to the stream, returning how many bytes were
|
863
|
+
/// written.
|
864
|
+
///
|
865
|
+
/// The function will attempt to write the entire contents of `buf`, but
|
866
|
+
/// only part of the buffer may be written.
|
867
|
+
///
|
868
|
+
/// This function is usually paired with `writable()`.
|
869
|
+
///
|
870
|
+
/// # Return
|
871
|
+
///
|
872
|
+
/// If data is successfully written, `Ok(n)` is returned, where `n` is the
|
873
|
+
/// number of bytes written. If the stream is not ready to write data,
|
874
|
+
/// `Err(io::ErrorKind::WouldBlock)` is returned.
|
875
|
+
///
|
876
|
+
/// # Examples
|
877
|
+
///
|
878
|
+
/// ```no_run
|
879
|
+
/// use tokio::net::TcpStream;
|
880
|
+
/// use std::error::Error;
|
881
|
+
/// use std::io;
|
882
|
+
///
|
883
|
+
/// #[tokio::main]
|
884
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
885
|
+
/// // Connect to a peer
|
886
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
887
|
+
///
|
888
|
+
/// loop {
|
889
|
+
/// // Wait for the socket to be writable
|
890
|
+
/// stream.writable().await?;
|
891
|
+
///
|
892
|
+
/// // Try to write data, this may still fail with `WouldBlock`
|
893
|
+
/// // if the readiness event is a false positive.
|
894
|
+
/// match stream.try_write(b"hello world") {
|
895
|
+
/// Ok(n) => {
|
896
|
+
/// break;
|
897
|
+
/// }
|
898
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
899
|
+
/// continue;
|
900
|
+
/// }
|
901
|
+
/// Err(e) => {
|
902
|
+
/// return Err(e.into());
|
903
|
+
/// }
|
904
|
+
/// }
|
905
|
+
/// }
|
906
|
+
///
|
907
|
+
/// Ok(())
|
908
|
+
/// }
|
909
|
+
/// ```
|
910
|
+
pub fn try_write(&self, buf: &[u8]) -> io::Result<usize> {
|
911
|
+
use std::io::Write;
|
912
|
+
|
913
|
+
self.io
|
914
|
+
.registration()
|
915
|
+
.try_io(Interest::WRITABLE, || (&*self.io).write(buf))
|
916
|
+
}
|
917
|
+
|
918
|
+
/// Tries to write several buffers to the stream, returning how many bytes
|
919
|
+
/// were written.
|
920
|
+
///
|
921
|
+
/// Data is written from each buffer in order, with the final buffer read
|
922
|
+
/// from possible being only partially consumed. This method behaves
|
923
|
+
/// equivalently to a single call to [`try_write()`] with concatenated
|
924
|
+
/// buffers.
|
925
|
+
///
|
926
|
+
/// This function is usually paired with `writable()`.
|
927
|
+
///
|
928
|
+
/// [`try_write()`]: TcpStream::try_write()
|
929
|
+
///
|
930
|
+
/// # Return
|
931
|
+
///
|
932
|
+
/// If data is successfully written, `Ok(n)` is returned, where `n` is the
|
933
|
+
/// number of bytes written. If the stream is not ready to write data,
|
934
|
+
/// `Err(io::ErrorKind::WouldBlock)` is returned.
|
935
|
+
///
|
936
|
+
/// # Examples
|
937
|
+
///
|
938
|
+
/// ```no_run
|
939
|
+
/// use tokio::net::TcpStream;
|
940
|
+
/// use std::error::Error;
|
941
|
+
/// use std::io;
|
942
|
+
///
|
943
|
+
/// #[tokio::main]
|
944
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
945
|
+
/// // Connect to a peer
|
946
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
947
|
+
///
|
948
|
+
/// let bufs = [io::IoSlice::new(b"hello "), io::IoSlice::new(b"world")];
|
949
|
+
///
|
950
|
+
/// loop {
|
951
|
+
/// // Wait for the socket to be writable
|
952
|
+
/// stream.writable().await?;
|
953
|
+
///
|
954
|
+
/// // Try to write data, this may still fail with `WouldBlock`
|
955
|
+
/// // if the readiness event is a false positive.
|
956
|
+
/// match stream.try_write_vectored(&bufs) {
|
957
|
+
/// Ok(n) => {
|
958
|
+
/// break;
|
959
|
+
/// }
|
960
|
+
/// Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
961
|
+
/// continue;
|
962
|
+
/// }
|
963
|
+
/// Err(e) => {
|
964
|
+
/// return Err(e.into());
|
965
|
+
/// }
|
966
|
+
/// }
|
967
|
+
/// }
|
968
|
+
///
|
969
|
+
/// Ok(())
|
970
|
+
/// }
|
971
|
+
/// ```
|
972
|
+
pub fn try_write_vectored(&self, bufs: &[io::IoSlice<'_>]) -> io::Result<usize> {
|
973
|
+
use std::io::Write;
|
974
|
+
|
975
|
+
self.io
|
976
|
+
.registration()
|
977
|
+
.try_io(Interest::WRITABLE, || (&*self.io).write_vectored(bufs))
|
978
|
+
}
|
979
|
+
|
980
|
+
/// Tries to read or write from the socket using a user-provided IO operation.
|
981
|
+
///
|
982
|
+
/// If the socket is ready, the provided closure is called. The closure
|
983
|
+
/// should attempt to perform IO operation on the socket by manually
|
984
|
+
/// calling the appropriate syscall. If the operation fails because the
|
985
|
+
/// socket is not actually ready, then the closure should return a
|
986
|
+
/// `WouldBlock` error and the readiness flag is cleared. The return value
|
987
|
+
/// of the closure is then returned by `try_io`.
|
988
|
+
///
|
989
|
+
/// If the socket is not ready, then the closure is not called
|
990
|
+
/// and a `WouldBlock` error is returned.
|
991
|
+
///
|
992
|
+
/// The closure should only return a `WouldBlock` error if it has performed
|
993
|
+
/// an IO operation on the socket that failed due to the socket not being
|
994
|
+
/// ready. Returning a `WouldBlock` error in any other situation will
|
995
|
+
/// incorrectly clear the readiness flag, which can cause the socket to
|
996
|
+
/// behave incorrectly.
|
997
|
+
///
|
998
|
+
/// The closure should not perform the IO operation using any of the methods
|
999
|
+
/// defined on the Tokio `TcpStream` type, as this will mess with the
|
1000
|
+
/// readiness flag and can cause the socket to behave incorrectly.
|
1001
|
+
///
|
1002
|
+
/// This method is not intended to be used with combined interests.
|
1003
|
+
/// The closure should perform only one type of IO operation, so it should not
|
1004
|
+
/// require more than one ready state. This method may panic or sleep forever
|
1005
|
+
/// if it is called with a combined interest.
|
1006
|
+
///
|
1007
|
+
/// Usually, [`readable()`], [`writable()`] or [`ready()`] is used with this function.
|
1008
|
+
///
|
1009
|
+
/// [`readable()`]: TcpStream::readable()
|
1010
|
+
/// [`writable()`]: TcpStream::writable()
|
1011
|
+
/// [`ready()`]: TcpStream::ready()
|
1012
|
+
pub fn try_io<R>(
|
1013
|
+
&self,
|
1014
|
+
interest: Interest,
|
1015
|
+
f: impl FnOnce() -> io::Result<R>,
|
1016
|
+
) -> io::Result<R> {
|
1017
|
+
self.io
|
1018
|
+
.registration()
|
1019
|
+
.try_io(interest, || self.io.try_io(f))
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
/// Reads or writes from the socket using a user-provided IO operation.
|
1023
|
+
///
|
1024
|
+
/// The readiness of the socket is awaited and when the socket is ready,
|
1025
|
+
/// the provided closure is called. The closure should attempt to perform
|
1026
|
+
/// IO operation on the socket by manually calling the appropriate syscall.
|
1027
|
+
/// If the operation fails because the socket is not actually ready,
|
1028
|
+
/// then the closure should return a `WouldBlock` error. In such case the
|
1029
|
+
/// readiness flag is cleared and the socket readiness is awaited again.
|
1030
|
+
/// This loop is repeated until the closure returns an `Ok` or an error
|
1031
|
+
/// other than `WouldBlock`.
|
1032
|
+
///
|
1033
|
+
/// The closure should only return a `WouldBlock` error if it has performed
|
1034
|
+
/// an IO operation on the socket that failed due to the socket not being
|
1035
|
+
/// ready. Returning a `WouldBlock` error in any other situation will
|
1036
|
+
/// incorrectly clear the readiness flag, which can cause the socket to
|
1037
|
+
/// behave incorrectly.
|
1038
|
+
///
|
1039
|
+
/// The closure should not perform the IO operation using any of the methods
|
1040
|
+
/// defined on the Tokio `TcpStream` type, as this will mess with the
|
1041
|
+
/// readiness flag and can cause the socket to behave incorrectly.
|
1042
|
+
///
|
1043
|
+
/// This method is not intended to be used with combined interests.
|
1044
|
+
/// The closure should perform only one type of IO operation, so it should not
|
1045
|
+
/// require more than one ready state. This method may panic or sleep forever
|
1046
|
+
/// if it is called with a combined interest.
|
1047
|
+
pub async fn async_io<R>(
|
1048
|
+
&self,
|
1049
|
+
interest: Interest,
|
1050
|
+
mut f: impl FnMut() -> io::Result<R>,
|
1051
|
+
) -> io::Result<R> {
|
1052
|
+
self.io
|
1053
|
+
.registration()
|
1054
|
+
.async_io(interest, || self.io.try_io(&mut f))
|
1055
|
+
.await
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
/// Receives data on the socket from the remote address to which it is
|
1059
|
+
/// connected, without removing that data from the queue. On success,
|
1060
|
+
/// returns the number of bytes peeked.
|
1061
|
+
///
|
1062
|
+
/// Successive calls return the same data. This is accomplished by passing
|
1063
|
+
/// `MSG_PEEK` as a flag to the underlying `recv` system call.
|
1064
|
+
///
|
1065
|
+
/// # Examples
|
1066
|
+
///
|
1067
|
+
/// ```no_run
|
1068
|
+
/// use tokio::net::TcpStream;
|
1069
|
+
/// use tokio::io::AsyncReadExt;
|
1070
|
+
/// use std::error::Error;
|
1071
|
+
///
|
1072
|
+
/// #[tokio::main]
|
1073
|
+
/// async fn main() -> Result<(), Box<dyn Error>> {
|
1074
|
+
/// // Connect to a peer
|
1075
|
+
/// let mut stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1076
|
+
///
|
1077
|
+
/// let mut b1 = [0; 10];
|
1078
|
+
/// let mut b2 = [0; 10];
|
1079
|
+
///
|
1080
|
+
/// // Peek at the data
|
1081
|
+
/// let n = stream.peek(&mut b1).await?;
|
1082
|
+
///
|
1083
|
+
/// // Read the data
|
1084
|
+
/// assert_eq!(n, stream.read(&mut b2[..n]).await?);
|
1085
|
+
/// assert_eq!(&b1[..n], &b2[..n]);
|
1086
|
+
///
|
1087
|
+
/// Ok(())
|
1088
|
+
/// }
|
1089
|
+
/// ```
|
1090
|
+
///
|
1091
|
+
/// The [`read`] method is defined on the [`AsyncReadExt`] trait.
|
1092
|
+
///
|
1093
|
+
/// [`read`]: fn@crate::io::AsyncReadExt::read
|
1094
|
+
/// [`AsyncReadExt`]: trait@crate::io::AsyncReadExt
|
1095
|
+
pub async fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
|
1096
|
+
self.io
|
1097
|
+
.registration()
|
1098
|
+
.async_io(Interest::READABLE, || self.io.peek(buf))
|
1099
|
+
.await
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
/// Shuts down the read, write, or both halves of this connection.
|
1103
|
+
///
|
1104
|
+
/// This function will cause all pending and future I/O on the specified
|
1105
|
+
/// portions to return immediately with an appropriate value (see the
|
1106
|
+
/// documentation of `Shutdown`).
|
1107
|
+
pub(super) fn shutdown_std(&self, how: Shutdown) -> io::Result<()> {
|
1108
|
+
self.io.shutdown(how)
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
/// Gets the value of the `TCP_NODELAY` option on this socket.
|
1112
|
+
///
|
1113
|
+
/// For more information about this option, see [`set_nodelay`].
|
1114
|
+
///
|
1115
|
+
/// [`set_nodelay`]: TcpStream::set_nodelay
|
1116
|
+
///
|
1117
|
+
/// # Examples
|
1118
|
+
///
|
1119
|
+
/// ```no_run
|
1120
|
+
/// use tokio::net::TcpStream;
|
1121
|
+
///
|
1122
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1123
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1124
|
+
///
|
1125
|
+
/// println!("{:?}", stream.nodelay()?);
|
1126
|
+
/// # Ok(())
|
1127
|
+
/// # }
|
1128
|
+
/// ```
|
1129
|
+
pub fn nodelay(&self) -> io::Result<bool> {
|
1130
|
+
self.io.nodelay()
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
/// Sets the value of the `TCP_NODELAY` option on this socket.
|
1134
|
+
///
|
1135
|
+
/// If set, this option disables the Nagle algorithm. This means that
|
1136
|
+
/// segments are always sent as soon as possible, even if there is only a
|
1137
|
+
/// small amount of data. When not set, data is buffered until there is a
|
1138
|
+
/// sufficient amount to send out, thereby avoiding the frequent sending of
|
1139
|
+
/// small packets.
|
1140
|
+
///
|
1141
|
+
/// # Examples
|
1142
|
+
///
|
1143
|
+
/// ```no_run
|
1144
|
+
/// use tokio::net::TcpStream;
|
1145
|
+
///
|
1146
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1147
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1148
|
+
///
|
1149
|
+
/// stream.set_nodelay(true)?;
|
1150
|
+
/// # Ok(())
|
1151
|
+
/// # }
|
1152
|
+
/// ```
|
1153
|
+
pub fn set_nodelay(&self, nodelay: bool) -> io::Result<()> {
|
1154
|
+
self.io.set_nodelay(nodelay)
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
cfg_not_wasi! {
|
1158
|
+
/// Reads the linger duration for this socket by getting the `SO_LINGER`
|
1159
|
+
/// option.
|
1160
|
+
///
|
1161
|
+
/// For more information about this option, see [`set_linger`].
|
1162
|
+
///
|
1163
|
+
/// [`set_linger`]: TcpStream::set_linger
|
1164
|
+
///
|
1165
|
+
/// # Examples
|
1166
|
+
///
|
1167
|
+
/// ```no_run
|
1168
|
+
/// use tokio::net::TcpStream;
|
1169
|
+
///
|
1170
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1171
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1172
|
+
///
|
1173
|
+
/// println!("{:?}", stream.linger()?);
|
1174
|
+
/// # Ok(())
|
1175
|
+
/// # }
|
1176
|
+
/// ```
|
1177
|
+
pub fn linger(&self) -> io::Result<Option<Duration>> {
|
1178
|
+
socket2::SockRef::from(self).linger()
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
/// Sets the linger duration of this socket by setting the `SO_LINGER` option.
|
1182
|
+
///
|
1183
|
+
/// This option controls the action taken when a stream has unsent messages and the stream is
|
1184
|
+
/// closed. If `SO_LINGER` is set, the system shall block the process until it can transmit the
|
1185
|
+
/// data or until the time expires.
|
1186
|
+
///
|
1187
|
+
/// If `SO_LINGER` is not specified, and the stream is closed, the system handles the call in a
|
1188
|
+
/// way that allows the process to continue as quickly as possible.
|
1189
|
+
///
|
1190
|
+
/// # Examples
|
1191
|
+
///
|
1192
|
+
/// ```no_run
|
1193
|
+
/// use tokio::net::TcpStream;
|
1194
|
+
///
|
1195
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1196
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1197
|
+
///
|
1198
|
+
/// stream.set_linger(None)?;
|
1199
|
+
/// # Ok(())
|
1200
|
+
/// # }
|
1201
|
+
/// ```
|
1202
|
+
pub fn set_linger(&self, dur: Option<Duration>) -> io::Result<()> {
|
1203
|
+
socket2::SockRef::from(self).set_linger(dur)
|
1204
|
+
}
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
/// Gets the value of the `IP_TTL` option for this socket.
|
1208
|
+
///
|
1209
|
+
/// For more information about this option, see [`set_ttl`].
|
1210
|
+
///
|
1211
|
+
/// [`set_ttl`]: TcpStream::set_ttl
|
1212
|
+
///
|
1213
|
+
/// # Examples
|
1214
|
+
///
|
1215
|
+
/// ```no_run
|
1216
|
+
/// use tokio::net::TcpStream;
|
1217
|
+
///
|
1218
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1219
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1220
|
+
///
|
1221
|
+
/// println!("{:?}", stream.ttl()?);
|
1222
|
+
/// # Ok(())
|
1223
|
+
/// # }
|
1224
|
+
/// ```
|
1225
|
+
pub fn ttl(&self) -> io::Result<u32> {
|
1226
|
+
self.io.ttl()
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
/// Sets the value for the `IP_TTL` option on this socket.
|
1230
|
+
///
|
1231
|
+
/// This value sets the time-to-live field that is used in every packet sent
|
1232
|
+
/// from this socket.
|
1233
|
+
///
|
1234
|
+
/// # Examples
|
1235
|
+
///
|
1236
|
+
/// ```no_run
|
1237
|
+
/// use tokio::net::TcpStream;
|
1238
|
+
///
|
1239
|
+
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
|
1240
|
+
/// let stream = TcpStream::connect("127.0.0.1:8080").await?;
|
1241
|
+
///
|
1242
|
+
/// stream.set_ttl(123)?;
|
1243
|
+
/// # Ok(())
|
1244
|
+
/// # }
|
1245
|
+
/// ```
|
1246
|
+
pub fn set_ttl(&self, ttl: u32) -> io::Result<()> {
|
1247
|
+
self.io.set_ttl(ttl)
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
// These lifetime markers also appear in the generated documentation, and make
|
1251
|
+
// it more clear that this is a *borrowed* split.
|
1252
|
+
#[allow(clippy::needless_lifetimes)]
|
1253
|
+
/// Splits a `TcpStream` into a read half and a write half, which can be used
|
1254
|
+
/// to read and write the stream concurrently.
|
1255
|
+
///
|
1256
|
+
/// This method is more efficient than [`into_split`], but the halves cannot be
|
1257
|
+
/// moved into independently spawned tasks.
|
1258
|
+
///
|
1259
|
+
/// [`into_split`]: TcpStream::into_split()
|
1260
|
+
pub fn split<'a>(&'a mut self) -> (ReadHalf<'a>, WriteHalf<'a>) {
|
1261
|
+
split(self)
|
1262
|
+
}
|
1263
|
+
|
1264
|
+
/// Splits a `TcpStream` into a read half and a write half, which can be used
|
1265
|
+
/// to read and write the stream concurrently.
|
1266
|
+
///
|
1267
|
+
/// Unlike [`split`], the owned halves can be moved to separate tasks, however
|
1268
|
+
/// this comes at the cost of a heap allocation.
|
1269
|
+
///
|
1270
|
+
/// **Note:** Dropping the write half will shut down the write half of the TCP
|
1271
|
+
/// stream. This is equivalent to calling [`shutdown()`] on the `TcpStream`.
|
1272
|
+
///
|
1273
|
+
/// [`split`]: TcpStream::split()
|
1274
|
+
/// [`shutdown()`]: fn@crate::io::AsyncWriteExt::shutdown
|
1275
|
+
pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) {
|
1276
|
+
split_owned(self)
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
// == Poll IO functions that takes `&self` ==
|
1280
|
+
//
|
1281
|
+
// To read or write without mutable access to the `UnixStream`, combine the
|
1282
|
+
// `poll_read_ready` or `poll_write_ready` methods with the `try_read` or
|
1283
|
+
// `try_write` methods.
|
1284
|
+
|
1285
|
+
pub(crate) fn poll_read_priv(
|
1286
|
+
&self,
|
1287
|
+
cx: &mut Context<'_>,
|
1288
|
+
buf: &mut ReadBuf<'_>,
|
1289
|
+
) -> Poll<io::Result<()>> {
|
1290
|
+
// Safety: `TcpStream::read` correctly handles reads into uninitialized memory
|
1291
|
+
unsafe { self.io.poll_read(cx, buf) }
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
pub(super) fn poll_write_priv(
|
1295
|
+
&self,
|
1296
|
+
cx: &mut Context<'_>,
|
1297
|
+
buf: &[u8],
|
1298
|
+
) -> Poll<io::Result<usize>> {
|
1299
|
+
self.io.poll_write(cx, buf)
|
1300
|
+
}
|
1301
|
+
|
1302
|
+
pub(super) fn poll_write_vectored_priv(
|
1303
|
+
&self,
|
1304
|
+
cx: &mut Context<'_>,
|
1305
|
+
bufs: &[io::IoSlice<'_>],
|
1306
|
+
) -> Poll<io::Result<usize>> {
|
1307
|
+
self.io.poll_write_vectored(cx, bufs)
|
1308
|
+
}
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
impl TryFrom<std::net::TcpStream> for TcpStream {
|
1312
|
+
type Error = io::Error;
|
1313
|
+
|
1314
|
+
/// Consumes stream, returning the tokio I/O object.
|
1315
|
+
///
|
1316
|
+
/// This is equivalent to
|
1317
|
+
/// [`TcpStream::from_std(stream)`](TcpStream::from_std).
|
1318
|
+
fn try_from(stream: std::net::TcpStream) -> Result<Self, Self::Error> {
|
1319
|
+
Self::from_std(stream)
|
1320
|
+
}
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
// ===== impl Read / Write =====
|
1324
|
+
|
1325
|
+
impl AsyncRead for TcpStream {
|
1326
|
+
fn poll_read(
|
1327
|
+
self: Pin<&mut Self>,
|
1328
|
+
cx: &mut Context<'_>,
|
1329
|
+
buf: &mut ReadBuf<'_>,
|
1330
|
+
) -> Poll<io::Result<()>> {
|
1331
|
+
self.poll_read_priv(cx, buf)
|
1332
|
+
}
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
impl AsyncWrite for TcpStream {
|
1336
|
+
fn poll_write(
|
1337
|
+
self: Pin<&mut Self>,
|
1338
|
+
cx: &mut Context<'_>,
|
1339
|
+
buf: &[u8],
|
1340
|
+
) -> Poll<io::Result<usize>> {
|
1341
|
+
self.poll_write_priv(cx, buf)
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
fn poll_write_vectored(
|
1345
|
+
self: Pin<&mut Self>,
|
1346
|
+
cx: &mut Context<'_>,
|
1347
|
+
bufs: &[io::IoSlice<'_>],
|
1348
|
+
) -> Poll<io::Result<usize>> {
|
1349
|
+
self.poll_write_vectored_priv(cx, bufs)
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
fn is_write_vectored(&self) -> bool {
|
1353
|
+
true
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
#[inline]
|
1357
|
+
fn poll_flush(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> {
|
1358
|
+
// tcp flush is a no-op
|
1359
|
+
Poll::Ready(Ok(()))
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> {
|
1363
|
+
self.shutdown_std(std::net::Shutdown::Write)?;
|
1364
|
+
Poll::Ready(Ok(()))
|
1365
|
+
}
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
impl fmt::Debug for TcpStream {
|
1369
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
1370
|
+
self.io.fmt(f)
|
1371
|
+
}
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
#[cfg(unix)]
|
1375
|
+
mod sys {
|
1376
|
+
use super::TcpStream;
|
1377
|
+
use std::os::unix::prelude::*;
|
1378
|
+
|
1379
|
+
impl AsRawFd for TcpStream {
|
1380
|
+
fn as_raw_fd(&self) -> RawFd {
|
1381
|
+
self.io.as_raw_fd()
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
impl AsFd for TcpStream {
|
1386
|
+
fn as_fd(&self) -> BorrowedFd<'_> {
|
1387
|
+
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
|
1388
|
+
}
|
1389
|
+
}
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
cfg_windows! {
|
1393
|
+
use crate::os::windows::io::{AsRawSocket, RawSocket, AsSocket, BorrowedSocket};
|
1394
|
+
|
1395
|
+
impl AsRawSocket for TcpStream {
|
1396
|
+
fn as_raw_socket(&self) -> RawSocket {
|
1397
|
+
self.io.as_raw_socket()
|
1398
|
+
}
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
impl AsSocket for TcpStream {
|
1402
|
+
fn as_socket(&self) -> BorrowedSocket<'_> {
|
1403
|
+
unsafe { BorrowedSocket::borrow_raw(self.as_raw_socket()) }
|
1404
|
+
}
|
1405
|
+
}
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
#[cfg(all(tokio_unstable, target_os = "wasi"))]
|
1409
|
+
mod sys {
|
1410
|
+
use super::TcpStream;
|
1411
|
+
use std::os::wasi::prelude::*;
|
1412
|
+
|
1413
|
+
impl AsRawFd for TcpStream {
|
1414
|
+
fn as_raw_fd(&self) -> RawFd {
|
1415
|
+
self.io.as_raw_fd()
|
1416
|
+
}
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
impl AsFd for TcpStream {
|
1420
|
+
fn as_fd(&self) -> BorrowedFd<'_> {
|
1421
|
+
unsafe { BorrowedFd::borrow_raw(self.as_raw_fd()) }
|
1422
|
+
}
|
1423
|
+
}
|
1424
|
+
}
|