wasmtime 28.0.0 → 29.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +155 -120
- data/ext/Cargo.toml +5 -5
- data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
- data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
- data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
- data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
- data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
- data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
- data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
- data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
- data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
- data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
- data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
- data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
- data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
- data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
- data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
- data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
- data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
- data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
- data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
- data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
- data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
- data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
- data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
- data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
- data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
- data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
- data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
- data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
- data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
- data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
- data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
- data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
- data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
- data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
- data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
- data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
- data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
- data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
- data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
- data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
- data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
- data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
- data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
- data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
- data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
- data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
- data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
- data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
- data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
- data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
- data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
- data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
- data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
- data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
- data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
- data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
- data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
- data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
- data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
- data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
- data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
- data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
- data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
- data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
- data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
- data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
- data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
- data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
- data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
- data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
- data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
- data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
- data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
- data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
- data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
- data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
- data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
- data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
- data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
- data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
- data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
- data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
- data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
- data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
- data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
- data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
- data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
- data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
- data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
- data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
- data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
- data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2408 -2300
- data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
- data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
- data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
- data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
- data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
- data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
- data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
- data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
- data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
- data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
- data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
- data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
- data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
- data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
- data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
- data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
- data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
- data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
- data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
- data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
- data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
- data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
- data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
- data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
- data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
- data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
- data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
- data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
- data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
- data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
- data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
- data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
- data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
- data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
- data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
- data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
- data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
- data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
- data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
- data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
- data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
- data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
- data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
- data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
- data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
- data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
- data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
- data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
- data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
- data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
- data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
- data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
- data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
- data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
- data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
- data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
- data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
- data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
- data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
- data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
- data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
- data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
- data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
- data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
- data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
- data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
- data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
- data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
- data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
- data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
- data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
- data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
- data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
- data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
- data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
- data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
- data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
- data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
- data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
- data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
- data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
- data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
- data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
- data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
- data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
- data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
- data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
- data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
- data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
- data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
- data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
- data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
- data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
- data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
- data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
- data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
- data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
- data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
- data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
- data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
- data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
- data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
- data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
- data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
- data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
- data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
- data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
- data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
- data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
- data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
- data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
- data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
- data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
- data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
- data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
- data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
- data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
- data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
- data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
- data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
- data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
- data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
- data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
- data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
- data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
- data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
- data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
- data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
- data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
- data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
- data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
- data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
- data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
- data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
- data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
- data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
- data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
- data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
- data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
- data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
- data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
- /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
- /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
- /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
- /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
- /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
- /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
- /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
- /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
- /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
- /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
- /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -0,0 +1,3827 @@
|
|
1
|
+
//! Stream capability for combinators to parse
|
2
|
+
//!
|
3
|
+
//! Stream types include:
|
4
|
+
//! - `&[u8]` and [`Bytes`] for binary data
|
5
|
+
//! - `&str` (aliased as [`Str`]) and [`BStr`] for UTF-8 data
|
6
|
+
//! - [`LocatingSlice`] can track the location within the original buffer to report
|
7
|
+
//! [spans][crate::Parser::with_span]
|
8
|
+
//! - [`Stateful`] to thread global state through your parsers
|
9
|
+
//! - [`Partial`] can mark an input as partial buffer that is being streamed into
|
10
|
+
//! - [Custom stream types][crate::_topic::stream]
|
11
|
+
|
12
|
+
use core::hash::BuildHasher;
|
13
|
+
use core::num::NonZeroUsize;
|
14
|
+
|
15
|
+
use crate::ascii::Caseless as AsciiCaseless;
|
16
|
+
#[cfg(feature = "unstable-recover")]
|
17
|
+
#[cfg(feature = "std")]
|
18
|
+
use crate::error::FromRecoverableError;
|
19
|
+
use crate::error::Needed;
|
20
|
+
use crate::lib::std::iter::{Cloned, Enumerate};
|
21
|
+
use crate::lib::std::slice::Iter;
|
22
|
+
use crate::lib::std::str::from_utf8;
|
23
|
+
use crate::lib::std::str::CharIndices;
|
24
|
+
use crate::lib::std::str::FromStr;
|
25
|
+
|
26
|
+
#[allow(unused_imports)]
|
27
|
+
#[cfg(any(feature = "unstable-doc", feature = "unstable-recover"))]
|
28
|
+
use crate::error::ErrMode;
|
29
|
+
|
30
|
+
#[cfg(feature = "alloc")]
|
31
|
+
use crate::lib::std::collections::BTreeMap;
|
32
|
+
#[cfg(feature = "alloc")]
|
33
|
+
use crate::lib::std::collections::BTreeSet;
|
34
|
+
#[cfg(feature = "std")]
|
35
|
+
use crate::lib::std::collections::HashMap;
|
36
|
+
#[cfg(feature = "std")]
|
37
|
+
use crate::lib::std::collections::HashSet;
|
38
|
+
#[cfg(feature = "alloc")]
|
39
|
+
use crate::lib::std::string::String;
|
40
|
+
#[cfg(feature = "alloc")]
|
41
|
+
use crate::lib::std::vec::Vec;
|
42
|
+
|
43
|
+
mod impls;
|
44
|
+
#[cfg(test)]
|
45
|
+
mod tests;
|
46
|
+
|
47
|
+
/// UTF-8 Stream
|
48
|
+
pub type Str<'i> = &'i str;
|
49
|
+
|
50
|
+
/// Improved `Debug` experience for `&[u8]` byte streams
|
51
|
+
#[allow(clippy::derived_hash_with_manual_eq)]
|
52
|
+
#[derive(Hash)]
|
53
|
+
#[repr(transparent)]
|
54
|
+
pub struct Bytes([u8]);
|
55
|
+
|
56
|
+
impl Bytes {
|
57
|
+
/// Make a stream out of a byte slice-like.
|
58
|
+
#[inline]
|
59
|
+
pub fn new<B: ?Sized + AsRef<[u8]>>(bytes: &B) -> &Self {
|
60
|
+
Self::from_bytes(bytes.as_ref())
|
61
|
+
}
|
62
|
+
|
63
|
+
#[inline]
|
64
|
+
fn from_bytes(slice: &[u8]) -> &Self {
|
65
|
+
unsafe { crate::lib::std::mem::transmute(slice) }
|
66
|
+
}
|
67
|
+
|
68
|
+
#[inline]
|
69
|
+
fn as_bytes(&self) -> &[u8] {
|
70
|
+
&self.0
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
/// Improved `Debug` experience for `&[u8]` UTF-8-ish streams
|
75
|
+
#[allow(clippy::derived_hash_with_manual_eq)]
|
76
|
+
#[derive(Hash)]
|
77
|
+
#[repr(transparent)]
|
78
|
+
pub struct BStr([u8]);
|
79
|
+
|
80
|
+
impl BStr {
|
81
|
+
/// Make a stream out of a byte slice-like.
|
82
|
+
#[inline]
|
83
|
+
pub fn new<B: ?Sized + AsRef<[u8]>>(bytes: &B) -> &Self {
|
84
|
+
Self::from_bytes(bytes.as_ref())
|
85
|
+
}
|
86
|
+
|
87
|
+
#[inline]
|
88
|
+
fn from_bytes(slice: &[u8]) -> &Self {
|
89
|
+
unsafe { crate::lib::std::mem::transmute(slice) }
|
90
|
+
}
|
91
|
+
|
92
|
+
#[inline]
|
93
|
+
fn as_bytes(&self) -> &[u8] {
|
94
|
+
&self.0
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
/// Deprecated, replaced with [`LocatingSlice`]
|
99
|
+
#[deprecated(since = "0.6.23", note = "Replaced with `LocatingSlice`")]
|
100
|
+
pub type Located<I> = LocatingSlice<I>;
|
101
|
+
|
102
|
+
/// Allow collecting the span of a parsed token within a slice
|
103
|
+
///
|
104
|
+
/// Spans are tracked as a [`Range<usize>`] of byte offsets.
|
105
|
+
///
|
106
|
+
/// Converting byte offsets to line or column numbers is left up to the user, as computing column
|
107
|
+
/// numbers requires domain knowledge (are columns byte-based, codepoint-based, or grapheme-based?)
|
108
|
+
/// and O(n) iteration over the input to determine codepoint and line boundaries.
|
109
|
+
///
|
110
|
+
/// [The `line-span` crate](https://docs.rs/line-span/latest/line_span/) can help with converting
|
111
|
+
/// byte offsets to line numbers.
|
112
|
+
///
|
113
|
+
/// See [`Parser::span`][crate::Parser::span] and [`Parser::with_span`][crate::Parser::with_span] for more details
|
114
|
+
#[derive(Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord)]
|
115
|
+
#[doc(alias = "LocatingSliceSpan")]
|
116
|
+
#[doc(alias = "Located")]
|
117
|
+
pub struct LocatingSlice<I> {
|
118
|
+
initial: I,
|
119
|
+
input: I,
|
120
|
+
}
|
121
|
+
|
122
|
+
impl<I> LocatingSlice<I>
|
123
|
+
where
|
124
|
+
I: Clone + Offset,
|
125
|
+
{
|
126
|
+
/// Wrap another Stream with span tracking
|
127
|
+
pub fn new(input: I) -> Self {
|
128
|
+
let initial = input.clone();
|
129
|
+
Self { initial, input }
|
130
|
+
}
|
131
|
+
|
132
|
+
#[inline]
|
133
|
+
fn location(&self) -> usize {
|
134
|
+
self.input.offset_from(&self.initial)
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
impl<I> LocatingSlice<I>
|
139
|
+
where
|
140
|
+
I: Clone + Stream + Offset,
|
141
|
+
{
|
142
|
+
/// Reset the stream to the start
|
143
|
+
///
|
144
|
+
/// This is useful for formats that encode a graph with addresses relative to the start of the
|
145
|
+
/// input.
|
146
|
+
#[doc(alias = "fseek")]
|
147
|
+
#[inline]
|
148
|
+
pub fn reset_to_start(&mut self) {
|
149
|
+
let start = self.initial.checkpoint();
|
150
|
+
self.input.reset(&start);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
impl<I> AsRef<I> for LocatingSlice<I> {
|
155
|
+
#[inline(always)]
|
156
|
+
fn as_ref(&self) -> &I {
|
157
|
+
&self.input
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
impl<I> crate::lib::std::ops::Deref for LocatingSlice<I> {
|
162
|
+
type Target = I;
|
163
|
+
|
164
|
+
#[inline(always)]
|
165
|
+
fn deref(&self) -> &Self::Target {
|
166
|
+
&self.input
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
impl<I: crate::lib::std::fmt::Display> crate::lib::std::fmt::Display for LocatingSlice<I> {
|
171
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
172
|
+
self.input.fmt(f)
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
impl<I: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug for LocatingSlice<I> {
|
177
|
+
#[inline]
|
178
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
179
|
+
self.input.fmt(f)
|
180
|
+
}
|
181
|
+
}
|
182
|
+
|
183
|
+
/// Allow recovering from parse errors, capturing them as the parser continues
|
184
|
+
///
|
185
|
+
/// Generally, this will be used indirectly via
|
186
|
+
/// [`RecoverableParser::recoverable_parse`][crate::RecoverableParser::recoverable_parse].
|
187
|
+
#[cfg(feature = "unstable-recover")]
|
188
|
+
#[derive(Clone)]
|
189
|
+
#[cfg(feature = "std")]
|
190
|
+
pub struct Recoverable<I, E>
|
191
|
+
where
|
192
|
+
I: Stream,
|
193
|
+
{
|
194
|
+
input: I,
|
195
|
+
errors: Vec<E>,
|
196
|
+
is_recoverable: bool,
|
197
|
+
}
|
198
|
+
|
199
|
+
#[cfg(feature = "unstable-recover")]
|
200
|
+
#[cfg(feature = "std")]
|
201
|
+
impl<I, E> Default for Recoverable<I, E>
|
202
|
+
where
|
203
|
+
I: Default + Stream,
|
204
|
+
{
|
205
|
+
#[inline]
|
206
|
+
fn default() -> Self {
|
207
|
+
Self::new(I::default())
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
211
|
+
#[cfg(feature = "unstable-recover")]
|
212
|
+
#[cfg(feature = "std")]
|
213
|
+
impl<I, E> Recoverable<I, E>
|
214
|
+
where
|
215
|
+
I: Stream,
|
216
|
+
{
|
217
|
+
/// Track recoverable errors with the stream
|
218
|
+
#[inline]
|
219
|
+
pub fn new(input: I) -> Self {
|
220
|
+
Self {
|
221
|
+
input,
|
222
|
+
errors: Default::default(),
|
223
|
+
is_recoverable: true,
|
224
|
+
}
|
225
|
+
}
|
226
|
+
|
227
|
+
/// Act as a normal stream
|
228
|
+
#[inline]
|
229
|
+
pub fn unrecoverable(input: I) -> Self {
|
230
|
+
Self {
|
231
|
+
input,
|
232
|
+
errors: Default::default(),
|
233
|
+
is_recoverable: false,
|
234
|
+
}
|
235
|
+
}
|
236
|
+
|
237
|
+
/// Access the current input and errors
|
238
|
+
#[inline]
|
239
|
+
pub fn into_parts(self) -> (I, Vec<E>) {
|
240
|
+
(self.input, self.errors)
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
#[cfg(feature = "unstable-recover")]
|
245
|
+
#[cfg(feature = "std")]
|
246
|
+
impl<I, E> AsRef<I> for Recoverable<I, E>
|
247
|
+
where
|
248
|
+
I: Stream,
|
249
|
+
{
|
250
|
+
#[inline(always)]
|
251
|
+
fn as_ref(&self) -> &I {
|
252
|
+
&self.input
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
#[cfg(feature = "unstable-recover")]
|
257
|
+
#[cfg(feature = "std")]
|
258
|
+
impl<I, E> crate::lib::std::ops::Deref for Recoverable<I, E>
|
259
|
+
where
|
260
|
+
I: Stream,
|
261
|
+
{
|
262
|
+
type Target = I;
|
263
|
+
|
264
|
+
#[inline(always)]
|
265
|
+
fn deref(&self) -> &Self::Target {
|
266
|
+
&self.input
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
#[cfg(feature = "unstable-recover")]
|
271
|
+
#[cfg(feature = "std")]
|
272
|
+
impl<I: crate::lib::std::fmt::Display, E> crate::lib::std::fmt::Display for Recoverable<I, E>
|
273
|
+
where
|
274
|
+
I: Stream,
|
275
|
+
{
|
276
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
277
|
+
crate::lib::std::fmt::Display::fmt(&self.input, f)
|
278
|
+
}
|
279
|
+
}
|
280
|
+
|
281
|
+
#[cfg(feature = "unstable-recover")]
|
282
|
+
#[cfg(feature = "std")]
|
283
|
+
impl<I: Stream + crate::lib::std::fmt::Debug, E: crate::lib::std::fmt::Debug>
|
284
|
+
crate::lib::std::fmt::Debug for Recoverable<I, E>
|
285
|
+
{
|
286
|
+
#[inline]
|
287
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
288
|
+
if f.alternate() {
|
289
|
+
self.input.fmt(f)
|
290
|
+
} else {
|
291
|
+
f.debug_struct("Recoverable")
|
292
|
+
.field("input", &self.input)
|
293
|
+
.field("errors", &self.errors)
|
294
|
+
.field("is_recoverable", &self.is_recoverable)
|
295
|
+
.finish()
|
296
|
+
}
|
297
|
+
}
|
298
|
+
}
|
299
|
+
|
300
|
+
/// Thread global state through your parsers
|
301
|
+
///
|
302
|
+
/// Use cases
|
303
|
+
/// - Recursion checks
|
304
|
+
/// - Error recovery
|
305
|
+
/// - Debugging
|
306
|
+
///
|
307
|
+
/// # Example
|
308
|
+
///
|
309
|
+
/// ```
|
310
|
+
/// # use std::cell::Cell;
|
311
|
+
/// # use winnow::prelude::*;
|
312
|
+
/// # use winnow::stream::Stateful;
|
313
|
+
/// # use winnow::ascii::alpha1;
|
314
|
+
/// # type Error = ();
|
315
|
+
///
|
316
|
+
/// #[derive(Debug)]
|
317
|
+
/// struct State<'s>(&'s mut u32);
|
318
|
+
///
|
319
|
+
/// impl<'s> State<'s> {
|
320
|
+
/// fn count(&mut self) {
|
321
|
+
/// *self.0 += 1;
|
322
|
+
/// }
|
323
|
+
/// }
|
324
|
+
///
|
325
|
+
/// type Stream<'is> = Stateful<&'is str, State<'is>>;
|
326
|
+
///
|
327
|
+
/// fn word<'s>(i: &mut Stream<'s>) -> PResult<&'s str> {
|
328
|
+
/// i.state.count();
|
329
|
+
/// alpha1.parse_next(i)
|
330
|
+
/// }
|
331
|
+
///
|
332
|
+
/// let data = "Hello";
|
333
|
+
/// let mut state = 0;
|
334
|
+
/// let input = Stream { input: data, state: State(&mut state) };
|
335
|
+
/// let output = word.parse(input).unwrap();
|
336
|
+
/// assert_eq!(state, 1);
|
337
|
+
/// ```
|
338
|
+
#[derive(Clone, Copy, Default, Eq, PartialEq)]
|
339
|
+
#[doc(alias = "LocatingSliceSpan")]
|
340
|
+
pub struct Stateful<I, S> {
|
341
|
+
/// Inner input being wrapped in state
|
342
|
+
pub input: I,
|
343
|
+
/// User-provided state
|
344
|
+
pub state: S,
|
345
|
+
}
|
346
|
+
|
347
|
+
impl<I, S> AsRef<I> for Stateful<I, S> {
|
348
|
+
#[inline(always)]
|
349
|
+
fn as_ref(&self) -> &I {
|
350
|
+
&self.input
|
351
|
+
}
|
352
|
+
}
|
353
|
+
|
354
|
+
impl<I, S> crate::lib::std::ops::Deref for Stateful<I, S> {
|
355
|
+
type Target = I;
|
356
|
+
|
357
|
+
#[inline(always)]
|
358
|
+
fn deref(&self) -> &Self::Target {
|
359
|
+
self.as_ref()
|
360
|
+
}
|
361
|
+
}
|
362
|
+
|
363
|
+
impl<I: crate::lib::std::fmt::Display, S> crate::lib::std::fmt::Display for Stateful<I, S> {
|
364
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
365
|
+
self.input.fmt(f)
|
366
|
+
}
|
367
|
+
}
|
368
|
+
|
369
|
+
impl<I: crate::lib::std::fmt::Debug, S: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug
|
370
|
+
for Stateful<I, S>
|
371
|
+
{
|
372
|
+
#[inline]
|
373
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
374
|
+
if f.alternate() {
|
375
|
+
self.input.fmt(f)
|
376
|
+
} else {
|
377
|
+
f.debug_struct("Stateful")
|
378
|
+
.field("input", &self.input)
|
379
|
+
.field("state", &self.state)
|
380
|
+
.finish()
|
381
|
+
}
|
382
|
+
}
|
383
|
+
}
|
384
|
+
|
385
|
+
/// Mark the input as a partial buffer for streaming input.
|
386
|
+
///
|
387
|
+
/// Complete input means that we already have all of the data. This will be the common case with
|
388
|
+
/// small files that can be read entirely to memory.
|
389
|
+
///
|
390
|
+
/// In contrast, streaming input assumes that we might not have all of the data.
|
391
|
+
/// This can happen with some network protocol or large file parsers, where the
|
392
|
+
/// input buffer can be full and need to be resized or refilled.
|
393
|
+
/// - [`ErrMode::Incomplete`] will report how much more data is needed.
|
394
|
+
/// - [`Parser::complete_err`][crate::Parser::complete_err] transform [`ErrMode::Incomplete`] to
|
395
|
+
/// [`ErrMode::Backtrack`]
|
396
|
+
///
|
397
|
+
/// See also [`StreamIsPartial`] to tell whether the input supports complete or partial parsing.
|
398
|
+
///
|
399
|
+
/// See also [Special Topics: Parsing Partial Input][crate::_topic::partial].
|
400
|
+
///
|
401
|
+
/// # Example
|
402
|
+
///
|
403
|
+
/// Here is how it works in practice:
|
404
|
+
///
|
405
|
+
/// ```rust
|
406
|
+
/// # use winnow::{PResult, error::ErrMode, error::Needed, error::{InputError, ErrorKind}, token, ascii, stream::Partial};
|
407
|
+
/// # use winnow::prelude::*;
|
408
|
+
///
|
409
|
+
/// fn take_partial<'s>(i: &mut Partial<&'s [u8]>) -> PResult<&'s [u8], InputError<Partial<&'s [u8]>>> {
|
410
|
+
/// token::take(4u8).parse_next(i)
|
411
|
+
/// }
|
412
|
+
///
|
413
|
+
/// fn take_complete<'s>(i: &mut &'s [u8]) -> PResult<&'s [u8], InputError<&'s [u8]>> {
|
414
|
+
/// token::take(4u8).parse_next(i)
|
415
|
+
/// }
|
416
|
+
///
|
417
|
+
/// // both parsers will take 4 bytes as expected
|
418
|
+
/// assert_eq!(take_partial.parse_peek(Partial::new(&b"abcde"[..])), Ok((Partial::new(&b"e"[..]), &b"abcd"[..])));
|
419
|
+
/// assert_eq!(take_complete.parse_peek(&b"abcde"[..]), Ok((&b"e"[..], &b"abcd"[..])));
|
420
|
+
///
|
421
|
+
/// // if the input is smaller than 4 bytes, the partial parser
|
422
|
+
/// // will return `Incomplete` to indicate that we need more data
|
423
|
+
/// assert_eq!(take_partial.parse_peek(Partial::new(&b"abc"[..])), Err(ErrMode::Incomplete(Needed::new(1))));
|
424
|
+
///
|
425
|
+
/// // but the complete parser will return an error
|
426
|
+
/// assert_eq!(take_complete.parse_peek(&b"abc"[..]), Err(ErrMode::Backtrack(InputError::new(&b"abc"[..], ErrorKind::Slice))));
|
427
|
+
///
|
428
|
+
/// // the alpha0 function takes 0 or more alphabetic characters
|
429
|
+
/// fn alpha0_partial<'s>(i: &mut Partial<&'s str>) -> PResult<&'s str, InputError<Partial<&'s str>>> {
|
430
|
+
/// ascii::alpha0.parse_next(i)
|
431
|
+
/// }
|
432
|
+
///
|
433
|
+
/// fn alpha0_complete<'s>(i: &mut &'s str) -> PResult<&'s str, InputError<&'s str>> {
|
434
|
+
/// ascii::alpha0.parse_next(i)
|
435
|
+
/// }
|
436
|
+
///
|
437
|
+
/// // if there's a clear limit to the taken characters, both parsers work the same way
|
438
|
+
/// assert_eq!(alpha0_partial.parse_peek(Partial::new("abcd;")), Ok((Partial::new(";"), "abcd")));
|
439
|
+
/// assert_eq!(alpha0_complete.parse_peek("abcd;"), Ok((";", "abcd")));
|
440
|
+
///
|
441
|
+
/// // but when there's no limit, the partial version returns `Incomplete`, because it cannot
|
442
|
+
/// // know if more input data should be taken. The whole input could be "abcd;", or
|
443
|
+
/// // "abcde;"
|
444
|
+
/// assert_eq!(alpha0_partial.parse_peek(Partial::new("abcd")), Err(ErrMode::Incomplete(Needed::new(1))));
|
445
|
+
///
|
446
|
+
/// // while the complete version knows that all of the data is there
|
447
|
+
/// assert_eq!(alpha0_complete.parse_peek("abcd"), Ok(("", "abcd")));
|
448
|
+
/// ```
|
449
|
+
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
450
|
+
pub struct Partial<I> {
|
451
|
+
input: I,
|
452
|
+
partial: bool,
|
453
|
+
}
|
454
|
+
|
455
|
+
impl<I> Partial<I>
|
456
|
+
where
|
457
|
+
I: StreamIsPartial,
|
458
|
+
{
|
459
|
+
/// Create a partial input
|
460
|
+
#[inline]
|
461
|
+
pub fn new(input: I) -> Self {
|
462
|
+
debug_assert!(
|
463
|
+
!I::is_partial_supported(),
|
464
|
+
"`Partial` can only wrap complete sources"
|
465
|
+
);
|
466
|
+
let partial = true;
|
467
|
+
Self { input, partial }
|
468
|
+
}
|
469
|
+
|
470
|
+
/// Extract the original [`Stream`]
|
471
|
+
#[inline(always)]
|
472
|
+
pub fn into_inner(self) -> I {
|
473
|
+
self.input
|
474
|
+
}
|
475
|
+
}
|
476
|
+
|
477
|
+
impl<I> Default for Partial<I>
|
478
|
+
where
|
479
|
+
I: Default + StreamIsPartial,
|
480
|
+
{
|
481
|
+
#[inline]
|
482
|
+
fn default() -> Self {
|
483
|
+
Self::new(I::default())
|
484
|
+
}
|
485
|
+
}
|
486
|
+
|
487
|
+
impl<I> crate::lib::std::ops::Deref for Partial<I> {
|
488
|
+
type Target = I;
|
489
|
+
|
490
|
+
#[inline(always)]
|
491
|
+
fn deref(&self) -> &Self::Target {
|
492
|
+
&self.input
|
493
|
+
}
|
494
|
+
}
|
495
|
+
|
496
|
+
impl<I: crate::lib::std::fmt::Display> crate::lib::std::fmt::Display for Partial<I> {
|
497
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
498
|
+
self.input.fmt(f)
|
499
|
+
}
|
500
|
+
}
|
501
|
+
|
502
|
+
impl<I: crate::lib::std::fmt::Debug> crate::lib::std::fmt::Debug for Partial<I> {
|
503
|
+
#[inline]
|
504
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
505
|
+
if f.alternate() {
|
506
|
+
self.input.fmt(f)
|
507
|
+
} else {
|
508
|
+
f.debug_struct("Partial")
|
509
|
+
.field("input", &self.input)
|
510
|
+
.field("partial", &self.partial)
|
511
|
+
.finish()
|
512
|
+
}
|
513
|
+
}
|
514
|
+
}
|
515
|
+
|
516
|
+
/// Abstract method to calculate the input length
|
517
|
+
pub trait SliceLen {
|
518
|
+
/// Calculates the input length, as indicated by its name,
|
519
|
+
/// and the name of the trait itself
|
520
|
+
fn slice_len(&self) -> usize;
|
521
|
+
}
|
522
|
+
|
523
|
+
impl<S: SliceLen> SliceLen for AsciiCaseless<S> {
|
524
|
+
#[inline(always)]
|
525
|
+
fn slice_len(&self) -> usize {
|
526
|
+
self.0.slice_len()
|
527
|
+
}
|
528
|
+
}
|
529
|
+
|
530
|
+
impl<T> SliceLen for &[T] {
|
531
|
+
#[inline(always)]
|
532
|
+
fn slice_len(&self) -> usize {
|
533
|
+
self.len()
|
534
|
+
}
|
535
|
+
}
|
536
|
+
|
537
|
+
impl<T, const LEN: usize> SliceLen for [T; LEN] {
|
538
|
+
#[inline(always)]
|
539
|
+
fn slice_len(&self) -> usize {
|
540
|
+
self.len()
|
541
|
+
}
|
542
|
+
}
|
543
|
+
|
544
|
+
impl<T, const LEN: usize> SliceLen for &[T; LEN] {
|
545
|
+
#[inline(always)]
|
546
|
+
fn slice_len(&self) -> usize {
|
547
|
+
self.len()
|
548
|
+
}
|
549
|
+
}
|
550
|
+
|
551
|
+
impl SliceLen for &str {
|
552
|
+
#[inline(always)]
|
553
|
+
fn slice_len(&self) -> usize {
|
554
|
+
self.len()
|
555
|
+
}
|
556
|
+
}
|
557
|
+
|
558
|
+
impl SliceLen for u8 {
|
559
|
+
#[inline(always)]
|
560
|
+
fn slice_len(&self) -> usize {
|
561
|
+
1
|
562
|
+
}
|
563
|
+
}
|
564
|
+
|
565
|
+
impl SliceLen for char {
|
566
|
+
#[inline(always)]
|
567
|
+
fn slice_len(&self) -> usize {
|
568
|
+
self.len_utf8()
|
569
|
+
}
|
570
|
+
}
|
571
|
+
|
572
|
+
impl SliceLen for &Bytes {
|
573
|
+
#[inline(always)]
|
574
|
+
fn slice_len(&self) -> usize {
|
575
|
+
self.len()
|
576
|
+
}
|
577
|
+
}
|
578
|
+
|
579
|
+
impl SliceLen for &BStr {
|
580
|
+
#[inline(always)]
|
581
|
+
fn slice_len(&self) -> usize {
|
582
|
+
self.len()
|
583
|
+
}
|
584
|
+
}
|
585
|
+
|
586
|
+
impl<I> SliceLen for (I, usize, usize)
|
587
|
+
where
|
588
|
+
I: SliceLen,
|
589
|
+
{
|
590
|
+
#[inline(always)]
|
591
|
+
fn slice_len(&self) -> usize {
|
592
|
+
self.0.slice_len() * 8 + self.2 - self.1
|
593
|
+
}
|
594
|
+
}
|
595
|
+
|
596
|
+
impl<I> SliceLen for LocatingSlice<I>
|
597
|
+
where
|
598
|
+
I: SliceLen,
|
599
|
+
{
|
600
|
+
#[inline(always)]
|
601
|
+
fn slice_len(&self) -> usize {
|
602
|
+
self.input.slice_len()
|
603
|
+
}
|
604
|
+
}
|
605
|
+
|
606
|
+
#[cfg(feature = "unstable-recover")]
|
607
|
+
#[cfg(feature = "std")]
|
608
|
+
impl<I, E> SliceLen for Recoverable<I, E>
|
609
|
+
where
|
610
|
+
I: SliceLen,
|
611
|
+
I: Stream,
|
612
|
+
{
|
613
|
+
#[inline(always)]
|
614
|
+
fn slice_len(&self) -> usize {
|
615
|
+
self.input.slice_len()
|
616
|
+
}
|
617
|
+
}
|
618
|
+
|
619
|
+
impl<I, S> SliceLen for Stateful<I, S>
|
620
|
+
where
|
621
|
+
I: SliceLen,
|
622
|
+
{
|
623
|
+
#[inline(always)]
|
624
|
+
fn slice_len(&self) -> usize {
|
625
|
+
self.input.slice_len()
|
626
|
+
}
|
627
|
+
}
|
628
|
+
|
629
|
+
impl<I> SliceLen for Partial<I>
|
630
|
+
where
|
631
|
+
I: SliceLen,
|
632
|
+
{
|
633
|
+
#[inline(always)]
|
634
|
+
fn slice_len(&self) -> usize {
|
635
|
+
self.input.slice_len()
|
636
|
+
}
|
637
|
+
}
|
638
|
+
|
639
|
+
/// Core definition for parser input state
|
640
|
+
pub trait Stream: Offset<<Self as Stream>::Checkpoint> + crate::lib::std::fmt::Debug {
|
641
|
+
/// The smallest unit being parsed
|
642
|
+
///
|
643
|
+
/// Example: `u8` for `&[u8]` or `char` for `&str`
|
644
|
+
type Token: crate::lib::std::fmt::Debug;
|
645
|
+
/// Sequence of `Token`s
|
646
|
+
///
|
647
|
+
/// Example: `&[u8]` for `LocatingSlice<&[u8]>` or `&str` for `LocatingSlice<&str>`
|
648
|
+
type Slice: crate::lib::std::fmt::Debug;
|
649
|
+
|
650
|
+
/// Iterate with the offset from the current location
|
651
|
+
type IterOffsets: Iterator<Item = (usize, Self::Token)>;
|
652
|
+
|
653
|
+
/// A parse location within the stream
|
654
|
+
type Checkpoint: Offset + Clone + crate::lib::std::fmt::Debug;
|
655
|
+
|
656
|
+
/// Iterate with the offset from the current location
|
657
|
+
fn iter_offsets(&self) -> Self::IterOffsets;
|
658
|
+
|
659
|
+
/// Returns the offset to the end of the input
|
660
|
+
fn eof_offset(&self) -> usize;
|
661
|
+
|
662
|
+
/// Split off the next token from the input
|
663
|
+
fn next_token(&mut self) -> Option<Self::Token>;
|
664
|
+
/// Split off the next token from the input
|
665
|
+
#[inline(always)]
|
666
|
+
fn peek_token(&self) -> Option<(Self, Self::Token)>
|
667
|
+
where
|
668
|
+
Self: Clone,
|
669
|
+
{
|
670
|
+
let mut peek = self.clone();
|
671
|
+
let token = peek.next_token()?;
|
672
|
+
Some((peek, token))
|
673
|
+
}
|
674
|
+
|
675
|
+
/// Finds the offset of the next matching token
|
676
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
677
|
+
where
|
678
|
+
P: Fn(Self::Token) -> bool;
|
679
|
+
/// Get the offset for the number of `tokens` into the stream
|
680
|
+
///
|
681
|
+
/// This means "0 tokens" will return `0` offset
|
682
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed>;
|
683
|
+
/// Split off a slice of tokens from the input
|
684
|
+
///
|
685
|
+
/// <div class="warning">
|
686
|
+
///
|
687
|
+
/// **Note:** For inputs with variable width tokens, like `&str`'s `char`, `offset` might not correspond
|
688
|
+
/// with the number of tokens. To get a valid offset, use:
|
689
|
+
/// - [`Stream::eof_offset`]
|
690
|
+
/// - [`Stream::iter_offsets`]
|
691
|
+
/// - [`Stream::offset_for`]
|
692
|
+
/// - [`Stream::offset_at`]
|
693
|
+
///
|
694
|
+
/// </div>
|
695
|
+
///
|
696
|
+
/// # Panic
|
697
|
+
///
|
698
|
+
/// This will panic if
|
699
|
+
///
|
700
|
+
/// * Indexes must be within bounds of the original input;
|
701
|
+
/// * Indexes must uphold invariants of the stream, like for `str` they must lie on UTF-8
|
702
|
+
/// sequence boundaries.
|
703
|
+
///
|
704
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice;
|
705
|
+
/// Split off a slice of tokens from the input
|
706
|
+
#[inline(always)]
|
707
|
+
fn peek_slice(&self, offset: usize) -> (Self, Self::Slice)
|
708
|
+
where
|
709
|
+
Self: Clone,
|
710
|
+
{
|
711
|
+
let mut peek = self.clone();
|
712
|
+
let slice = peek.next_slice(offset);
|
713
|
+
(peek, slice)
|
714
|
+
}
|
715
|
+
|
716
|
+
/// Advance to the end of the stream
|
717
|
+
#[inline(always)]
|
718
|
+
fn finish(&mut self) -> Self::Slice {
|
719
|
+
self.next_slice(self.eof_offset())
|
720
|
+
}
|
721
|
+
/// Advance to the end of the stream
|
722
|
+
#[inline(always)]
|
723
|
+
fn peek_finish(&self) -> (Self, Self::Slice)
|
724
|
+
where
|
725
|
+
Self: Clone,
|
726
|
+
{
|
727
|
+
let mut peek = self.clone();
|
728
|
+
let slice = peek.finish();
|
729
|
+
(peek, slice)
|
730
|
+
}
|
731
|
+
|
732
|
+
/// Save the current parse location within the stream
|
733
|
+
fn checkpoint(&self) -> Self::Checkpoint;
|
734
|
+
/// Revert the stream to a prior [`Self::Checkpoint`]
|
735
|
+
///
|
736
|
+
/// # Panic
|
737
|
+
///
|
738
|
+
/// May panic if an invalid [`Self::Checkpoint`] is provided
|
739
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint);
|
740
|
+
|
741
|
+
/// Return the inner-most stream
|
742
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug;
|
743
|
+
}
|
744
|
+
|
745
|
+
impl<'i, T> Stream for &'i [T]
|
746
|
+
where
|
747
|
+
T: Clone + crate::lib::std::fmt::Debug,
|
748
|
+
{
|
749
|
+
type Token = T;
|
750
|
+
type Slice = &'i [T];
|
751
|
+
|
752
|
+
type IterOffsets = Enumerate<Cloned<Iter<'i, T>>>;
|
753
|
+
|
754
|
+
type Checkpoint = Checkpoint<Self, Self>;
|
755
|
+
|
756
|
+
#[inline(always)]
|
757
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
758
|
+
self.iter().cloned().enumerate()
|
759
|
+
}
|
760
|
+
#[inline(always)]
|
761
|
+
fn eof_offset(&self) -> usize {
|
762
|
+
self.len()
|
763
|
+
}
|
764
|
+
|
765
|
+
#[inline(always)]
|
766
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
767
|
+
let (token, next) = self.split_first()?;
|
768
|
+
*self = next;
|
769
|
+
Some(token.clone())
|
770
|
+
}
|
771
|
+
|
772
|
+
#[inline(always)]
|
773
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
774
|
+
where
|
775
|
+
P: Fn(Self::Token) -> bool,
|
776
|
+
{
|
777
|
+
self.iter().position(|b| predicate(b.clone()))
|
778
|
+
}
|
779
|
+
#[inline(always)]
|
780
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
781
|
+
if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
|
782
|
+
Err(Needed::Size(needed))
|
783
|
+
} else {
|
784
|
+
Ok(tokens)
|
785
|
+
}
|
786
|
+
}
|
787
|
+
#[inline(always)]
|
788
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
789
|
+
let (slice, next) = self.split_at(offset);
|
790
|
+
*self = next;
|
791
|
+
slice
|
792
|
+
}
|
793
|
+
|
794
|
+
#[inline(always)]
|
795
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
796
|
+
Checkpoint::<_, Self>::new(*self)
|
797
|
+
}
|
798
|
+
#[inline(always)]
|
799
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
800
|
+
*self = checkpoint.inner;
|
801
|
+
}
|
802
|
+
|
803
|
+
#[inline(always)]
|
804
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
805
|
+
self
|
806
|
+
}
|
807
|
+
}
|
808
|
+
|
809
|
+
impl<'i> Stream for &'i str {
|
810
|
+
type Token = char;
|
811
|
+
type Slice = &'i str;
|
812
|
+
|
813
|
+
type IterOffsets = CharIndices<'i>;
|
814
|
+
|
815
|
+
type Checkpoint = Checkpoint<Self, Self>;
|
816
|
+
|
817
|
+
#[inline(always)]
|
818
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
819
|
+
self.char_indices()
|
820
|
+
}
|
821
|
+
#[inline(always)]
|
822
|
+
fn eof_offset(&self) -> usize {
|
823
|
+
self.len()
|
824
|
+
}
|
825
|
+
|
826
|
+
#[inline(always)]
|
827
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
828
|
+
let c = self.chars().next()?;
|
829
|
+
let offset = c.len();
|
830
|
+
*self = &self[offset..];
|
831
|
+
Some(c)
|
832
|
+
}
|
833
|
+
|
834
|
+
#[inline(always)]
|
835
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
836
|
+
where
|
837
|
+
P: Fn(Self::Token) -> bool,
|
838
|
+
{
|
839
|
+
for (o, c) in self.iter_offsets() {
|
840
|
+
if predicate(c) {
|
841
|
+
return Some(o);
|
842
|
+
}
|
843
|
+
}
|
844
|
+
None
|
845
|
+
}
|
846
|
+
#[inline]
|
847
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
848
|
+
let mut cnt = 0;
|
849
|
+
for (offset, _) in self.iter_offsets() {
|
850
|
+
if cnt == tokens {
|
851
|
+
return Ok(offset);
|
852
|
+
}
|
853
|
+
cnt += 1;
|
854
|
+
}
|
855
|
+
|
856
|
+
if cnt == tokens {
|
857
|
+
Ok(self.eof_offset())
|
858
|
+
} else {
|
859
|
+
Err(Needed::Unknown)
|
860
|
+
}
|
861
|
+
}
|
862
|
+
#[inline(always)]
|
863
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
864
|
+
let (slice, next) = self.split_at(offset);
|
865
|
+
*self = next;
|
866
|
+
slice
|
867
|
+
}
|
868
|
+
|
869
|
+
#[inline(always)]
|
870
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
871
|
+
Checkpoint::<_, Self>::new(*self)
|
872
|
+
}
|
873
|
+
#[inline(always)]
|
874
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
875
|
+
*self = checkpoint.inner;
|
876
|
+
}
|
877
|
+
|
878
|
+
#[inline(always)]
|
879
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
880
|
+
self
|
881
|
+
}
|
882
|
+
}
|
883
|
+
|
884
|
+
impl<'i> Stream for &'i Bytes {
|
885
|
+
type Token = u8;
|
886
|
+
type Slice = &'i [u8];
|
887
|
+
|
888
|
+
type IterOffsets = Enumerate<Cloned<Iter<'i, u8>>>;
|
889
|
+
|
890
|
+
type Checkpoint = Checkpoint<Self, Self>;
|
891
|
+
|
892
|
+
#[inline(always)]
|
893
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
894
|
+
self.iter().cloned().enumerate()
|
895
|
+
}
|
896
|
+
#[inline(always)]
|
897
|
+
fn eof_offset(&self) -> usize {
|
898
|
+
self.len()
|
899
|
+
}
|
900
|
+
|
901
|
+
#[inline(always)]
|
902
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
903
|
+
if self.is_empty() {
|
904
|
+
None
|
905
|
+
} else {
|
906
|
+
let token = self[0];
|
907
|
+
*self = &self[1..];
|
908
|
+
Some(token)
|
909
|
+
}
|
910
|
+
}
|
911
|
+
|
912
|
+
#[inline(always)]
|
913
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
914
|
+
where
|
915
|
+
P: Fn(Self::Token) -> bool,
|
916
|
+
{
|
917
|
+
self.iter().position(|b| predicate(*b))
|
918
|
+
}
|
919
|
+
#[inline(always)]
|
920
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
921
|
+
if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
|
922
|
+
Err(Needed::Size(needed))
|
923
|
+
} else {
|
924
|
+
Ok(tokens)
|
925
|
+
}
|
926
|
+
}
|
927
|
+
#[inline(always)]
|
928
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
929
|
+
let (slice, next) = self.0.split_at(offset);
|
930
|
+
*self = Bytes::from_bytes(next);
|
931
|
+
slice
|
932
|
+
}
|
933
|
+
|
934
|
+
#[inline(always)]
|
935
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
936
|
+
Checkpoint::<_, Self>::new(*self)
|
937
|
+
}
|
938
|
+
#[inline(always)]
|
939
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
940
|
+
*self = checkpoint.inner;
|
941
|
+
}
|
942
|
+
|
943
|
+
#[inline(always)]
|
944
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
945
|
+
self
|
946
|
+
}
|
947
|
+
}
|
948
|
+
|
949
|
+
impl<'i> Stream for &'i BStr {
|
950
|
+
type Token = u8;
|
951
|
+
type Slice = &'i [u8];
|
952
|
+
|
953
|
+
type IterOffsets = Enumerate<Cloned<Iter<'i, u8>>>;
|
954
|
+
|
955
|
+
type Checkpoint = Checkpoint<Self, Self>;
|
956
|
+
|
957
|
+
#[inline(always)]
|
958
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
959
|
+
self.iter().cloned().enumerate()
|
960
|
+
}
|
961
|
+
#[inline(always)]
|
962
|
+
fn eof_offset(&self) -> usize {
|
963
|
+
self.len()
|
964
|
+
}
|
965
|
+
|
966
|
+
#[inline(always)]
|
967
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
968
|
+
if self.is_empty() {
|
969
|
+
None
|
970
|
+
} else {
|
971
|
+
let token = self[0];
|
972
|
+
*self = &self[1..];
|
973
|
+
Some(token)
|
974
|
+
}
|
975
|
+
}
|
976
|
+
|
977
|
+
#[inline(always)]
|
978
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
979
|
+
where
|
980
|
+
P: Fn(Self::Token) -> bool,
|
981
|
+
{
|
982
|
+
self.iter().position(|b| predicate(*b))
|
983
|
+
}
|
984
|
+
#[inline(always)]
|
985
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
986
|
+
if let Some(needed) = tokens.checked_sub(self.len()).and_then(NonZeroUsize::new) {
|
987
|
+
Err(Needed::Size(needed))
|
988
|
+
} else {
|
989
|
+
Ok(tokens)
|
990
|
+
}
|
991
|
+
}
|
992
|
+
#[inline(always)]
|
993
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
994
|
+
let (slice, next) = self.0.split_at(offset);
|
995
|
+
*self = BStr::from_bytes(next);
|
996
|
+
slice
|
997
|
+
}
|
998
|
+
|
999
|
+
#[inline(always)]
|
1000
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1001
|
+
Checkpoint::<_, Self>::new(*self)
|
1002
|
+
}
|
1003
|
+
#[inline(always)]
|
1004
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1005
|
+
*self = checkpoint.inner;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
#[inline(always)]
|
1009
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1010
|
+
self
|
1011
|
+
}
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
impl<I> Stream for (I, usize)
|
1015
|
+
where
|
1016
|
+
I: Stream<Token = u8> + Clone,
|
1017
|
+
{
|
1018
|
+
type Token = bool;
|
1019
|
+
type Slice = (I::Slice, usize, usize);
|
1020
|
+
|
1021
|
+
type IterOffsets = BitOffsets<I>;
|
1022
|
+
|
1023
|
+
type Checkpoint = Checkpoint<(I::Checkpoint, usize), Self>;
|
1024
|
+
|
1025
|
+
#[inline(always)]
|
1026
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
1027
|
+
BitOffsets {
|
1028
|
+
i: self.clone(),
|
1029
|
+
o: 0,
|
1030
|
+
}
|
1031
|
+
}
|
1032
|
+
#[inline(always)]
|
1033
|
+
fn eof_offset(&self) -> usize {
|
1034
|
+
let offset = self.0.eof_offset() * 8;
|
1035
|
+
if offset == 0 {
|
1036
|
+
0
|
1037
|
+
} else {
|
1038
|
+
offset - self.1
|
1039
|
+
}
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
#[inline(always)]
|
1043
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
1044
|
+
next_bit(self)
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
#[inline(always)]
|
1048
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
1049
|
+
where
|
1050
|
+
P: Fn(Self::Token) -> bool,
|
1051
|
+
{
|
1052
|
+
self.iter_offsets()
|
1053
|
+
.find_map(|(o, b)| predicate(b).then_some(o))
|
1054
|
+
}
|
1055
|
+
#[inline(always)]
|
1056
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
1057
|
+
if let Some(needed) = tokens
|
1058
|
+
.checked_sub(self.eof_offset())
|
1059
|
+
.and_then(NonZeroUsize::new)
|
1060
|
+
{
|
1061
|
+
Err(Needed::Size(needed))
|
1062
|
+
} else {
|
1063
|
+
Ok(tokens)
|
1064
|
+
}
|
1065
|
+
}
|
1066
|
+
#[inline(always)]
|
1067
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
1068
|
+
let byte_offset = (offset + self.1) / 8;
|
1069
|
+
let end_offset = (offset + self.1) % 8;
|
1070
|
+
let s = self.0.next_slice(byte_offset);
|
1071
|
+
let start_offset = self.1;
|
1072
|
+
self.1 = end_offset;
|
1073
|
+
(s, start_offset, end_offset)
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
#[inline(always)]
|
1077
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1078
|
+
Checkpoint::<_, Self>::new((self.0.checkpoint(), self.1))
|
1079
|
+
}
|
1080
|
+
#[inline(always)]
|
1081
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1082
|
+
self.0.reset(&checkpoint.inner.0);
|
1083
|
+
self.1 = checkpoint.inner.1;
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
#[inline(always)]
|
1087
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1088
|
+
&self.0
|
1089
|
+
}
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
/// Iterator for [bit][crate::binary::bits] stream (`(I, usize)`)
|
1093
|
+
pub struct BitOffsets<I> {
|
1094
|
+
i: (I, usize),
|
1095
|
+
o: usize,
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
impl<I> Iterator for BitOffsets<I>
|
1099
|
+
where
|
1100
|
+
I: Stream<Token = u8> + Clone,
|
1101
|
+
{
|
1102
|
+
type Item = (usize, bool);
|
1103
|
+
fn next(&mut self) -> Option<Self::Item> {
|
1104
|
+
let b = next_bit(&mut self.i)?;
|
1105
|
+
let o = self.o;
|
1106
|
+
|
1107
|
+
self.o += 1;
|
1108
|
+
|
1109
|
+
Some((o, b))
|
1110
|
+
}
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
fn next_bit<I>(i: &mut (I, usize)) -> Option<bool>
|
1114
|
+
where
|
1115
|
+
I: Stream<Token = u8> + Clone,
|
1116
|
+
{
|
1117
|
+
if i.eof_offset() == 0 {
|
1118
|
+
return None;
|
1119
|
+
}
|
1120
|
+
let offset = i.1;
|
1121
|
+
|
1122
|
+
let mut next_i = i.0.clone();
|
1123
|
+
let byte = next_i.next_token()?;
|
1124
|
+
let bit = (byte >> offset) & 0x1 == 0x1;
|
1125
|
+
|
1126
|
+
let next_offset = offset + 1;
|
1127
|
+
if next_offset == 8 {
|
1128
|
+
i.0 = next_i;
|
1129
|
+
i.1 = 0;
|
1130
|
+
Some(bit)
|
1131
|
+
} else {
|
1132
|
+
i.1 = next_offset;
|
1133
|
+
Some(bit)
|
1134
|
+
}
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
impl<I: Stream> Stream for LocatingSlice<I> {
|
1138
|
+
type Token = <I as Stream>::Token;
|
1139
|
+
type Slice = <I as Stream>::Slice;
|
1140
|
+
|
1141
|
+
type IterOffsets = <I as Stream>::IterOffsets;
|
1142
|
+
|
1143
|
+
type Checkpoint = Checkpoint<I::Checkpoint, Self>;
|
1144
|
+
|
1145
|
+
#[inline(always)]
|
1146
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
1147
|
+
self.input.iter_offsets()
|
1148
|
+
}
|
1149
|
+
#[inline(always)]
|
1150
|
+
fn eof_offset(&self) -> usize {
|
1151
|
+
self.input.eof_offset()
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
#[inline(always)]
|
1155
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
1156
|
+
self.input.next_token()
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
#[inline(always)]
|
1160
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
1161
|
+
where
|
1162
|
+
P: Fn(Self::Token) -> bool,
|
1163
|
+
{
|
1164
|
+
self.input.offset_for(predicate)
|
1165
|
+
}
|
1166
|
+
#[inline(always)]
|
1167
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
1168
|
+
self.input.offset_at(tokens)
|
1169
|
+
}
|
1170
|
+
#[inline(always)]
|
1171
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
1172
|
+
self.input.next_slice(offset)
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
#[inline(always)]
|
1176
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1177
|
+
Checkpoint::<_, Self>::new(self.input.checkpoint())
|
1178
|
+
}
|
1179
|
+
#[inline(always)]
|
1180
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1181
|
+
self.input.reset(&checkpoint.inner);
|
1182
|
+
}
|
1183
|
+
|
1184
|
+
#[inline(always)]
|
1185
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1186
|
+
&self.input
|
1187
|
+
}
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
#[cfg(feature = "unstable-recover")]
|
1191
|
+
#[cfg(feature = "std")]
|
1192
|
+
impl<I, E: crate::lib::std::fmt::Debug> Stream for Recoverable<I, E>
|
1193
|
+
where
|
1194
|
+
I: Stream,
|
1195
|
+
{
|
1196
|
+
type Token = <I as Stream>::Token;
|
1197
|
+
type Slice = <I as Stream>::Slice;
|
1198
|
+
|
1199
|
+
type IterOffsets = <I as Stream>::IterOffsets;
|
1200
|
+
|
1201
|
+
type Checkpoint = Checkpoint<I::Checkpoint, Self>;
|
1202
|
+
|
1203
|
+
#[inline(always)]
|
1204
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
1205
|
+
self.input.iter_offsets()
|
1206
|
+
}
|
1207
|
+
#[inline(always)]
|
1208
|
+
fn eof_offset(&self) -> usize {
|
1209
|
+
self.input.eof_offset()
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
#[inline(always)]
|
1213
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
1214
|
+
self.input.next_token()
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
#[inline(always)]
|
1218
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
1219
|
+
where
|
1220
|
+
P: Fn(Self::Token) -> bool,
|
1221
|
+
{
|
1222
|
+
self.input.offset_for(predicate)
|
1223
|
+
}
|
1224
|
+
#[inline(always)]
|
1225
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
1226
|
+
self.input.offset_at(tokens)
|
1227
|
+
}
|
1228
|
+
#[inline(always)]
|
1229
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
1230
|
+
self.input.next_slice(offset)
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
#[inline(always)]
|
1234
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1235
|
+
Checkpoint::<_, Self>::new(self.input.checkpoint())
|
1236
|
+
}
|
1237
|
+
#[inline(always)]
|
1238
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1239
|
+
self.input.reset(&checkpoint.inner);
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
#[inline(always)]
|
1243
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1244
|
+
&self.input
|
1245
|
+
}
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
impl<I: Stream, S: crate::lib::std::fmt::Debug> Stream for Stateful<I, S> {
|
1249
|
+
type Token = <I as Stream>::Token;
|
1250
|
+
type Slice = <I as Stream>::Slice;
|
1251
|
+
|
1252
|
+
type IterOffsets = <I as Stream>::IterOffsets;
|
1253
|
+
|
1254
|
+
type Checkpoint = Checkpoint<I::Checkpoint, Self>;
|
1255
|
+
|
1256
|
+
#[inline(always)]
|
1257
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
1258
|
+
self.input.iter_offsets()
|
1259
|
+
}
|
1260
|
+
#[inline(always)]
|
1261
|
+
fn eof_offset(&self) -> usize {
|
1262
|
+
self.input.eof_offset()
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
#[inline(always)]
|
1266
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
1267
|
+
self.input.next_token()
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
#[inline(always)]
|
1271
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
1272
|
+
where
|
1273
|
+
P: Fn(Self::Token) -> bool,
|
1274
|
+
{
|
1275
|
+
self.input.offset_for(predicate)
|
1276
|
+
}
|
1277
|
+
#[inline(always)]
|
1278
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
1279
|
+
self.input.offset_at(tokens)
|
1280
|
+
}
|
1281
|
+
#[inline(always)]
|
1282
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
1283
|
+
self.input.next_slice(offset)
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
#[inline(always)]
|
1287
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1288
|
+
Checkpoint::<_, Self>::new(self.input.checkpoint())
|
1289
|
+
}
|
1290
|
+
#[inline(always)]
|
1291
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1292
|
+
self.input.reset(&checkpoint.inner);
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
#[inline(always)]
|
1296
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1297
|
+
&self.input
|
1298
|
+
}
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
impl<I: Stream> Stream for Partial<I> {
|
1302
|
+
type Token = <I as Stream>::Token;
|
1303
|
+
type Slice = <I as Stream>::Slice;
|
1304
|
+
|
1305
|
+
type IterOffsets = <I as Stream>::IterOffsets;
|
1306
|
+
|
1307
|
+
type Checkpoint = Checkpoint<I::Checkpoint, Self>;
|
1308
|
+
|
1309
|
+
#[inline(always)]
|
1310
|
+
fn iter_offsets(&self) -> Self::IterOffsets {
|
1311
|
+
self.input.iter_offsets()
|
1312
|
+
}
|
1313
|
+
#[inline(always)]
|
1314
|
+
fn eof_offset(&self) -> usize {
|
1315
|
+
self.input.eof_offset()
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
#[inline(always)]
|
1319
|
+
fn next_token(&mut self) -> Option<Self::Token> {
|
1320
|
+
self.input.next_token()
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
#[inline(always)]
|
1324
|
+
fn offset_for<P>(&self, predicate: P) -> Option<usize>
|
1325
|
+
where
|
1326
|
+
P: Fn(Self::Token) -> bool,
|
1327
|
+
{
|
1328
|
+
self.input.offset_for(predicate)
|
1329
|
+
}
|
1330
|
+
#[inline(always)]
|
1331
|
+
fn offset_at(&self, tokens: usize) -> Result<usize, Needed> {
|
1332
|
+
self.input.offset_at(tokens)
|
1333
|
+
}
|
1334
|
+
#[inline(always)]
|
1335
|
+
fn next_slice(&mut self, offset: usize) -> Self::Slice {
|
1336
|
+
self.input.next_slice(offset)
|
1337
|
+
}
|
1338
|
+
|
1339
|
+
#[inline(always)]
|
1340
|
+
fn checkpoint(&self) -> Self::Checkpoint {
|
1341
|
+
Checkpoint::<_, Self>::new(self.input.checkpoint())
|
1342
|
+
}
|
1343
|
+
#[inline(always)]
|
1344
|
+
fn reset(&mut self, checkpoint: &Self::Checkpoint) {
|
1345
|
+
self.input.reset(&checkpoint.inner);
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
#[inline(always)]
|
1349
|
+
fn raw(&self) -> &dyn crate::lib::std::fmt::Debug {
|
1350
|
+
&self.input
|
1351
|
+
}
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
/// Number of indices input has advanced since start of parsing
|
1355
|
+
///
|
1356
|
+
/// See [`LocatingSlice`] for adding location tracking to your [`Stream`]
|
1357
|
+
pub trait Location {
|
1358
|
+
/// Number of indices input has advanced since start of parsing
|
1359
|
+
fn location(&self) -> usize;
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
impl<I> Location for LocatingSlice<I>
|
1363
|
+
where
|
1364
|
+
I: Clone + Offset,
|
1365
|
+
{
|
1366
|
+
#[inline(always)]
|
1367
|
+
fn location(&self) -> usize {
|
1368
|
+
self.location()
|
1369
|
+
}
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
#[cfg(feature = "unstable-recover")]
|
1373
|
+
#[cfg(feature = "std")]
|
1374
|
+
impl<I, E> Location for Recoverable<I, E>
|
1375
|
+
where
|
1376
|
+
I: Location,
|
1377
|
+
I: Stream,
|
1378
|
+
{
|
1379
|
+
#[inline(always)]
|
1380
|
+
fn location(&self) -> usize {
|
1381
|
+
self.input.location()
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
impl<I, S> Location for Stateful<I, S>
|
1386
|
+
where
|
1387
|
+
I: Location,
|
1388
|
+
{
|
1389
|
+
#[inline(always)]
|
1390
|
+
fn location(&self) -> usize {
|
1391
|
+
self.input.location()
|
1392
|
+
}
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
impl<I> Location for Partial<I>
|
1396
|
+
where
|
1397
|
+
I: Location,
|
1398
|
+
{
|
1399
|
+
#[inline(always)]
|
1400
|
+
fn location(&self) -> usize {
|
1401
|
+
self.input.location()
|
1402
|
+
}
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
/// Capture top-level errors in the middle of parsing so parsing can resume
|
1406
|
+
///
|
1407
|
+
/// See [`Recoverable`] for adding error recovery tracking to your [`Stream`]
|
1408
|
+
#[cfg(feature = "unstable-recover")]
|
1409
|
+
#[cfg(feature = "std")]
|
1410
|
+
pub trait Recover<E>: Stream {
|
1411
|
+
/// Capture a top-level error
|
1412
|
+
///
|
1413
|
+
/// May return `Err(err)` if recovery is not possible (e.g. if [`Recover::is_recovery_supported`]
|
1414
|
+
/// returns `false`).
|
1415
|
+
fn record_err(
|
1416
|
+
&mut self,
|
1417
|
+
token_start: &Self::Checkpoint,
|
1418
|
+
err_start: &Self::Checkpoint,
|
1419
|
+
err: ErrMode<E>,
|
1420
|
+
) -> Result<(), ErrMode<E>>;
|
1421
|
+
|
1422
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1423
|
+
fn is_recovery_supported() -> bool;
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
#[cfg(feature = "unstable-recover")]
|
1427
|
+
#[cfg(feature = "std")]
|
1428
|
+
impl<'a, T, E> Recover<E> for &'a [T]
|
1429
|
+
where
|
1430
|
+
&'a [T]: Stream,
|
1431
|
+
{
|
1432
|
+
#[inline(always)]
|
1433
|
+
fn record_err(
|
1434
|
+
&mut self,
|
1435
|
+
_token_start: &Self::Checkpoint,
|
1436
|
+
_err_start: &Self::Checkpoint,
|
1437
|
+
err: ErrMode<E>,
|
1438
|
+
) -> Result<(), ErrMode<E>> {
|
1439
|
+
Err(err)
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1443
|
+
#[inline(always)]
|
1444
|
+
fn is_recovery_supported() -> bool {
|
1445
|
+
false
|
1446
|
+
}
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
#[cfg(feature = "unstable-recover")]
|
1450
|
+
#[cfg(feature = "std")]
|
1451
|
+
impl<E> Recover<E> for &str {
|
1452
|
+
#[inline(always)]
|
1453
|
+
fn record_err(
|
1454
|
+
&mut self,
|
1455
|
+
_token_start: &Self::Checkpoint,
|
1456
|
+
_err_start: &Self::Checkpoint,
|
1457
|
+
err: ErrMode<E>,
|
1458
|
+
) -> Result<(), ErrMode<E>> {
|
1459
|
+
Err(err)
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1463
|
+
#[inline(always)]
|
1464
|
+
fn is_recovery_supported() -> bool {
|
1465
|
+
false
|
1466
|
+
}
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
#[cfg(feature = "unstable-recover")]
|
1470
|
+
#[cfg(feature = "std")]
|
1471
|
+
impl<E> Recover<E> for &Bytes {
|
1472
|
+
#[inline(always)]
|
1473
|
+
fn record_err(
|
1474
|
+
&mut self,
|
1475
|
+
_token_start: &Self::Checkpoint,
|
1476
|
+
_err_start: &Self::Checkpoint,
|
1477
|
+
err: ErrMode<E>,
|
1478
|
+
) -> Result<(), ErrMode<E>> {
|
1479
|
+
Err(err)
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1483
|
+
#[inline(always)]
|
1484
|
+
fn is_recovery_supported() -> bool {
|
1485
|
+
false
|
1486
|
+
}
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
#[cfg(feature = "unstable-recover")]
|
1490
|
+
#[cfg(feature = "std")]
|
1491
|
+
impl<E> Recover<E> for &BStr {
|
1492
|
+
#[inline(always)]
|
1493
|
+
fn record_err(
|
1494
|
+
&mut self,
|
1495
|
+
_token_start: &Self::Checkpoint,
|
1496
|
+
_err_start: &Self::Checkpoint,
|
1497
|
+
err: ErrMode<E>,
|
1498
|
+
) -> Result<(), ErrMode<E>> {
|
1499
|
+
Err(err)
|
1500
|
+
}
|
1501
|
+
|
1502
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1503
|
+
#[inline(always)]
|
1504
|
+
fn is_recovery_supported() -> bool {
|
1505
|
+
false
|
1506
|
+
}
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
#[cfg(feature = "unstable-recover")]
|
1510
|
+
#[cfg(feature = "std")]
|
1511
|
+
impl<I, E> Recover<E> for (I, usize)
|
1512
|
+
where
|
1513
|
+
I: Recover<E>,
|
1514
|
+
I: Stream<Token = u8> + Clone,
|
1515
|
+
{
|
1516
|
+
#[inline(always)]
|
1517
|
+
fn record_err(
|
1518
|
+
&mut self,
|
1519
|
+
_token_start: &Self::Checkpoint,
|
1520
|
+
_err_start: &Self::Checkpoint,
|
1521
|
+
err: ErrMode<E>,
|
1522
|
+
) -> Result<(), ErrMode<E>> {
|
1523
|
+
Err(err)
|
1524
|
+
}
|
1525
|
+
|
1526
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1527
|
+
#[inline(always)]
|
1528
|
+
fn is_recovery_supported() -> bool {
|
1529
|
+
false
|
1530
|
+
}
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
#[cfg(feature = "unstable-recover")]
|
1534
|
+
#[cfg(feature = "std")]
|
1535
|
+
impl<I, E> Recover<E> for LocatingSlice<I>
|
1536
|
+
where
|
1537
|
+
I: Recover<E>,
|
1538
|
+
I: Stream,
|
1539
|
+
{
|
1540
|
+
#[inline(always)]
|
1541
|
+
fn record_err(
|
1542
|
+
&mut self,
|
1543
|
+
_token_start: &Self::Checkpoint,
|
1544
|
+
_err_start: &Self::Checkpoint,
|
1545
|
+
err: ErrMode<E>,
|
1546
|
+
) -> Result<(), ErrMode<E>> {
|
1547
|
+
Err(err)
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1551
|
+
#[inline(always)]
|
1552
|
+
fn is_recovery_supported() -> bool {
|
1553
|
+
false
|
1554
|
+
}
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
#[cfg(feature = "unstable-recover")]
|
1558
|
+
#[cfg(feature = "std")]
|
1559
|
+
impl<I, E, R> Recover<E> for Recoverable<I, R>
|
1560
|
+
where
|
1561
|
+
I: Stream,
|
1562
|
+
R: FromRecoverableError<Self, E>,
|
1563
|
+
R: crate::lib::std::fmt::Debug,
|
1564
|
+
{
|
1565
|
+
fn record_err(
|
1566
|
+
&mut self,
|
1567
|
+
token_start: &Self::Checkpoint,
|
1568
|
+
err_start: &Self::Checkpoint,
|
1569
|
+
err: ErrMode<E>,
|
1570
|
+
) -> Result<(), ErrMode<E>> {
|
1571
|
+
if self.is_recoverable {
|
1572
|
+
match err {
|
1573
|
+
ErrMode::Incomplete(need) => Err(ErrMode::Incomplete(need)),
|
1574
|
+
ErrMode::Backtrack(err) | ErrMode::Cut(err) => {
|
1575
|
+
self.errors
|
1576
|
+
.push(R::from_recoverable_error(token_start, err_start, self, err));
|
1577
|
+
Ok(())
|
1578
|
+
}
|
1579
|
+
}
|
1580
|
+
} else {
|
1581
|
+
Err(err)
|
1582
|
+
}
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1586
|
+
#[inline(always)]
|
1587
|
+
fn is_recovery_supported() -> bool {
|
1588
|
+
true
|
1589
|
+
}
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
#[cfg(feature = "unstable-recover")]
|
1593
|
+
#[cfg(feature = "std")]
|
1594
|
+
impl<I, E, S> Recover<E> for Stateful<I, S>
|
1595
|
+
where
|
1596
|
+
I: Recover<E>,
|
1597
|
+
I: Stream,
|
1598
|
+
S: Clone + crate::lib::std::fmt::Debug,
|
1599
|
+
{
|
1600
|
+
#[inline(always)]
|
1601
|
+
fn record_err(
|
1602
|
+
&mut self,
|
1603
|
+
_token_start: &Self::Checkpoint,
|
1604
|
+
_err_start: &Self::Checkpoint,
|
1605
|
+
err: ErrMode<E>,
|
1606
|
+
) -> Result<(), ErrMode<E>> {
|
1607
|
+
Err(err)
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1611
|
+
#[inline(always)]
|
1612
|
+
fn is_recovery_supported() -> bool {
|
1613
|
+
false
|
1614
|
+
}
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
#[cfg(feature = "unstable-recover")]
|
1618
|
+
#[cfg(feature = "std")]
|
1619
|
+
impl<I, E> Recover<E> for Partial<I>
|
1620
|
+
where
|
1621
|
+
I: Recover<E>,
|
1622
|
+
I: Stream,
|
1623
|
+
{
|
1624
|
+
#[inline(always)]
|
1625
|
+
fn record_err(
|
1626
|
+
&mut self,
|
1627
|
+
_token_start: &Self::Checkpoint,
|
1628
|
+
_err_start: &Self::Checkpoint,
|
1629
|
+
err: ErrMode<E>,
|
1630
|
+
) -> Result<(), ErrMode<E>> {
|
1631
|
+
Err(err)
|
1632
|
+
}
|
1633
|
+
|
1634
|
+
/// Report whether the [`Stream`] can save off errors for recovery
|
1635
|
+
#[inline(always)]
|
1636
|
+
fn is_recovery_supported() -> bool {
|
1637
|
+
false
|
1638
|
+
}
|
1639
|
+
}
|
1640
|
+
|
1641
|
+
/// Marks the input as being the complete buffer or a partial buffer for streaming input
|
1642
|
+
///
|
1643
|
+
/// See [`Partial`] for marking a presumed complete buffer type as a streaming buffer.
|
1644
|
+
pub trait StreamIsPartial: Sized {
|
1645
|
+
/// Whether the stream is currently partial or complete
|
1646
|
+
type PartialState;
|
1647
|
+
|
1648
|
+
/// Mark the stream is complete
|
1649
|
+
#[must_use]
|
1650
|
+
fn complete(&mut self) -> Self::PartialState;
|
1651
|
+
|
1652
|
+
/// Restore the stream back to its previous state
|
1653
|
+
fn restore_partial(&mut self, state: Self::PartialState);
|
1654
|
+
|
1655
|
+
/// Report whether the [`Stream`] is can ever be incomplete
|
1656
|
+
fn is_partial_supported() -> bool;
|
1657
|
+
|
1658
|
+
/// Report whether the [`Stream`] is currently incomplete
|
1659
|
+
#[inline(always)]
|
1660
|
+
fn is_partial(&self) -> bool {
|
1661
|
+
Self::is_partial_supported()
|
1662
|
+
}
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
impl<T> StreamIsPartial for &[T] {
|
1666
|
+
type PartialState = ();
|
1667
|
+
|
1668
|
+
#[inline]
|
1669
|
+
fn complete(&mut self) -> Self::PartialState {}
|
1670
|
+
|
1671
|
+
#[inline]
|
1672
|
+
fn restore_partial(&mut self, _state: Self::PartialState) {}
|
1673
|
+
|
1674
|
+
#[inline(always)]
|
1675
|
+
fn is_partial_supported() -> bool {
|
1676
|
+
false
|
1677
|
+
}
|
1678
|
+
}
|
1679
|
+
|
1680
|
+
impl StreamIsPartial for &str {
|
1681
|
+
type PartialState = ();
|
1682
|
+
|
1683
|
+
#[inline]
|
1684
|
+
fn complete(&mut self) -> Self::PartialState {
|
1685
|
+
// Already complete
|
1686
|
+
}
|
1687
|
+
|
1688
|
+
#[inline]
|
1689
|
+
fn restore_partial(&mut self, _state: Self::PartialState) {}
|
1690
|
+
|
1691
|
+
#[inline(always)]
|
1692
|
+
fn is_partial_supported() -> bool {
|
1693
|
+
false
|
1694
|
+
}
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
impl StreamIsPartial for &Bytes {
|
1698
|
+
type PartialState = ();
|
1699
|
+
|
1700
|
+
#[inline]
|
1701
|
+
fn complete(&mut self) -> Self::PartialState {
|
1702
|
+
// Already complete
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
#[inline]
|
1706
|
+
fn restore_partial(&mut self, _state: Self::PartialState) {}
|
1707
|
+
|
1708
|
+
#[inline(always)]
|
1709
|
+
fn is_partial_supported() -> bool {
|
1710
|
+
false
|
1711
|
+
}
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
impl StreamIsPartial for &BStr {
|
1715
|
+
type PartialState = ();
|
1716
|
+
|
1717
|
+
#[inline]
|
1718
|
+
fn complete(&mut self) -> Self::PartialState {
|
1719
|
+
// Already complete
|
1720
|
+
}
|
1721
|
+
|
1722
|
+
#[inline]
|
1723
|
+
fn restore_partial(&mut self, _state: Self::PartialState) {}
|
1724
|
+
|
1725
|
+
#[inline(always)]
|
1726
|
+
fn is_partial_supported() -> bool {
|
1727
|
+
false
|
1728
|
+
}
|
1729
|
+
}
|
1730
|
+
|
1731
|
+
impl<I> StreamIsPartial for (I, usize)
|
1732
|
+
where
|
1733
|
+
I: StreamIsPartial,
|
1734
|
+
{
|
1735
|
+
type PartialState = I::PartialState;
|
1736
|
+
|
1737
|
+
#[inline]
|
1738
|
+
fn complete(&mut self) -> Self::PartialState {
|
1739
|
+
self.0.complete()
|
1740
|
+
}
|
1741
|
+
|
1742
|
+
#[inline]
|
1743
|
+
fn restore_partial(&mut self, state: Self::PartialState) {
|
1744
|
+
self.0.restore_partial(state);
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
#[inline(always)]
|
1748
|
+
fn is_partial_supported() -> bool {
|
1749
|
+
I::is_partial_supported()
|
1750
|
+
}
|
1751
|
+
|
1752
|
+
#[inline(always)]
|
1753
|
+
fn is_partial(&self) -> bool {
|
1754
|
+
self.0.is_partial()
|
1755
|
+
}
|
1756
|
+
}
|
1757
|
+
|
1758
|
+
impl<I> StreamIsPartial for LocatingSlice<I>
|
1759
|
+
where
|
1760
|
+
I: StreamIsPartial,
|
1761
|
+
{
|
1762
|
+
type PartialState = I::PartialState;
|
1763
|
+
|
1764
|
+
#[inline]
|
1765
|
+
fn complete(&mut self) -> Self::PartialState {
|
1766
|
+
self.input.complete()
|
1767
|
+
}
|
1768
|
+
|
1769
|
+
#[inline]
|
1770
|
+
fn restore_partial(&mut self, state: Self::PartialState) {
|
1771
|
+
self.input.restore_partial(state);
|
1772
|
+
}
|
1773
|
+
|
1774
|
+
#[inline(always)]
|
1775
|
+
fn is_partial_supported() -> bool {
|
1776
|
+
I::is_partial_supported()
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
#[inline(always)]
|
1780
|
+
fn is_partial(&self) -> bool {
|
1781
|
+
self.input.is_partial()
|
1782
|
+
}
|
1783
|
+
}
|
1784
|
+
|
1785
|
+
#[cfg(feature = "unstable-recover")]
|
1786
|
+
#[cfg(feature = "std")]
|
1787
|
+
impl<I, E> StreamIsPartial for Recoverable<I, E>
|
1788
|
+
where
|
1789
|
+
I: StreamIsPartial,
|
1790
|
+
I: Stream,
|
1791
|
+
{
|
1792
|
+
type PartialState = I::PartialState;
|
1793
|
+
|
1794
|
+
#[inline]
|
1795
|
+
fn complete(&mut self) -> Self::PartialState {
|
1796
|
+
self.input.complete()
|
1797
|
+
}
|
1798
|
+
|
1799
|
+
#[inline]
|
1800
|
+
fn restore_partial(&mut self, state: Self::PartialState) {
|
1801
|
+
self.input.restore_partial(state);
|
1802
|
+
}
|
1803
|
+
|
1804
|
+
#[inline(always)]
|
1805
|
+
fn is_partial_supported() -> bool {
|
1806
|
+
I::is_partial_supported()
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
#[inline(always)]
|
1810
|
+
fn is_partial(&self) -> bool {
|
1811
|
+
self.input.is_partial()
|
1812
|
+
}
|
1813
|
+
}
|
1814
|
+
|
1815
|
+
impl<I, S> StreamIsPartial for Stateful<I, S>
|
1816
|
+
where
|
1817
|
+
I: StreamIsPartial,
|
1818
|
+
{
|
1819
|
+
type PartialState = I::PartialState;
|
1820
|
+
|
1821
|
+
#[inline]
|
1822
|
+
fn complete(&mut self) -> Self::PartialState {
|
1823
|
+
self.input.complete()
|
1824
|
+
}
|
1825
|
+
|
1826
|
+
#[inline]
|
1827
|
+
fn restore_partial(&mut self, state: Self::PartialState) {
|
1828
|
+
self.input.restore_partial(state);
|
1829
|
+
}
|
1830
|
+
|
1831
|
+
#[inline(always)]
|
1832
|
+
fn is_partial_supported() -> bool {
|
1833
|
+
I::is_partial_supported()
|
1834
|
+
}
|
1835
|
+
|
1836
|
+
#[inline(always)]
|
1837
|
+
fn is_partial(&self) -> bool {
|
1838
|
+
self.input.is_partial()
|
1839
|
+
}
|
1840
|
+
}
|
1841
|
+
|
1842
|
+
impl<I> StreamIsPartial for Partial<I>
|
1843
|
+
where
|
1844
|
+
I: StreamIsPartial,
|
1845
|
+
{
|
1846
|
+
type PartialState = bool;
|
1847
|
+
|
1848
|
+
#[inline]
|
1849
|
+
fn complete(&mut self) -> Self::PartialState {
|
1850
|
+
core::mem::replace(&mut self.partial, false)
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
#[inline]
|
1854
|
+
fn restore_partial(&mut self, state: Self::PartialState) {
|
1855
|
+
self.partial = state;
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
#[inline(always)]
|
1859
|
+
fn is_partial_supported() -> bool {
|
1860
|
+
true
|
1861
|
+
}
|
1862
|
+
|
1863
|
+
#[inline(always)]
|
1864
|
+
fn is_partial(&self) -> bool {
|
1865
|
+
self.partial
|
1866
|
+
}
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
/// Useful functions to calculate the offset between slices and show a hexdump of a slice
|
1870
|
+
pub trait Offset<Start = Self> {
|
1871
|
+
/// Offset between the first byte of `start` and the first byte of `self`a
|
1872
|
+
///
|
1873
|
+
/// <div class="warning">
|
1874
|
+
///
|
1875
|
+
/// **Note:** This is an offset, not an index, and may point to the end of input
|
1876
|
+
/// (`start.len()`) when `self` is exhausted.
|
1877
|
+
///
|
1878
|
+
/// </div>
|
1879
|
+
fn offset_from(&self, start: &Start) -> usize;
|
1880
|
+
}
|
1881
|
+
|
1882
|
+
impl<T> Offset for &[T] {
|
1883
|
+
#[inline]
|
1884
|
+
fn offset_from(&self, start: &Self) -> usize {
|
1885
|
+
let fst = (*start).as_ptr();
|
1886
|
+
let snd = (*self).as_ptr();
|
1887
|
+
|
1888
|
+
debug_assert!(
|
1889
|
+
fst <= snd,
|
1890
|
+
"`Offset::offset_from({snd:?}, {fst:?})` only accepts slices of `self`"
|
1891
|
+
);
|
1892
|
+
(snd as usize - fst as usize) / crate::lib::std::mem::size_of::<T>()
|
1893
|
+
}
|
1894
|
+
}
|
1895
|
+
|
1896
|
+
impl<'a, T> Offset<<&'a [T] as Stream>::Checkpoint> for &'a [T]
|
1897
|
+
where
|
1898
|
+
T: Clone + crate::lib::std::fmt::Debug,
|
1899
|
+
{
|
1900
|
+
#[inline(always)]
|
1901
|
+
fn offset_from(&self, other: &<&'a [T] as Stream>::Checkpoint) -> usize {
|
1902
|
+
self.checkpoint().offset_from(other)
|
1903
|
+
}
|
1904
|
+
}
|
1905
|
+
|
1906
|
+
impl Offset for &str {
|
1907
|
+
#[inline(always)]
|
1908
|
+
fn offset_from(&self, start: &Self) -> usize {
|
1909
|
+
self.as_bytes().offset_from(&start.as_bytes())
|
1910
|
+
}
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
impl<'a> Offset<<&'a str as Stream>::Checkpoint> for &'a str {
|
1914
|
+
#[inline(always)]
|
1915
|
+
fn offset_from(&self, other: &<&'a str as Stream>::Checkpoint) -> usize {
|
1916
|
+
self.checkpoint().offset_from(other)
|
1917
|
+
}
|
1918
|
+
}
|
1919
|
+
|
1920
|
+
impl Offset for &Bytes {
|
1921
|
+
#[inline(always)]
|
1922
|
+
fn offset_from(&self, start: &Self) -> usize {
|
1923
|
+
self.as_bytes().offset_from(&start.as_bytes())
|
1924
|
+
}
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
impl<'a> Offset<<&'a Bytes as Stream>::Checkpoint> for &'a Bytes {
|
1928
|
+
#[inline(always)]
|
1929
|
+
fn offset_from(&self, other: &<&'a Bytes as Stream>::Checkpoint) -> usize {
|
1930
|
+
self.checkpoint().offset_from(other)
|
1931
|
+
}
|
1932
|
+
}
|
1933
|
+
|
1934
|
+
impl Offset for &BStr {
|
1935
|
+
#[inline(always)]
|
1936
|
+
fn offset_from(&self, start: &Self) -> usize {
|
1937
|
+
self.as_bytes().offset_from(&start.as_bytes())
|
1938
|
+
}
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
impl<'a> Offset<<&'a BStr as Stream>::Checkpoint> for &'a BStr {
|
1942
|
+
#[inline(always)]
|
1943
|
+
fn offset_from(&self, other: &<&'a BStr as Stream>::Checkpoint) -> usize {
|
1944
|
+
self.checkpoint().offset_from(other)
|
1945
|
+
}
|
1946
|
+
}
|
1947
|
+
|
1948
|
+
impl<I> Offset for (I, usize)
|
1949
|
+
where
|
1950
|
+
I: Offset,
|
1951
|
+
{
|
1952
|
+
#[inline(always)]
|
1953
|
+
fn offset_from(&self, start: &Self) -> usize {
|
1954
|
+
self.0.offset_from(&start.0) * 8 + self.1 - start.1
|
1955
|
+
}
|
1956
|
+
}
|
1957
|
+
|
1958
|
+
impl<I> Offset<<(I, usize) as Stream>::Checkpoint> for (I, usize)
|
1959
|
+
where
|
1960
|
+
I: Stream<Token = u8> + Clone,
|
1961
|
+
{
|
1962
|
+
#[inline(always)]
|
1963
|
+
fn offset_from(&self, other: &<(I, usize) as Stream>::Checkpoint) -> usize {
|
1964
|
+
self.checkpoint().offset_from(other)
|
1965
|
+
}
|
1966
|
+
}
|
1967
|
+
|
1968
|
+
impl<I> Offset for LocatingSlice<I>
|
1969
|
+
where
|
1970
|
+
I: Stream,
|
1971
|
+
{
|
1972
|
+
#[inline(always)]
|
1973
|
+
fn offset_from(&self, other: &Self) -> usize {
|
1974
|
+
self.offset_from(&other.checkpoint())
|
1975
|
+
}
|
1976
|
+
}
|
1977
|
+
|
1978
|
+
impl<I> Offset<<LocatingSlice<I> as Stream>::Checkpoint> for LocatingSlice<I>
|
1979
|
+
where
|
1980
|
+
I: Stream,
|
1981
|
+
{
|
1982
|
+
#[inline(always)]
|
1983
|
+
fn offset_from(&self, other: &<LocatingSlice<I> as Stream>::Checkpoint) -> usize {
|
1984
|
+
self.checkpoint().offset_from(other)
|
1985
|
+
}
|
1986
|
+
}
|
1987
|
+
|
1988
|
+
#[cfg(feature = "unstable-recover")]
|
1989
|
+
#[cfg(feature = "std")]
|
1990
|
+
impl<I, E> Offset for Recoverable<I, E>
|
1991
|
+
where
|
1992
|
+
I: Stream,
|
1993
|
+
E: crate::lib::std::fmt::Debug,
|
1994
|
+
{
|
1995
|
+
#[inline(always)]
|
1996
|
+
fn offset_from(&self, other: &Self) -> usize {
|
1997
|
+
self.offset_from(&other.checkpoint())
|
1998
|
+
}
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
#[cfg(feature = "unstable-recover")]
|
2002
|
+
#[cfg(feature = "std")]
|
2003
|
+
impl<I, E> Offset<<Recoverable<I, E> as Stream>::Checkpoint> for Recoverable<I, E>
|
2004
|
+
where
|
2005
|
+
I: Stream,
|
2006
|
+
E: crate::lib::std::fmt::Debug,
|
2007
|
+
{
|
2008
|
+
#[inline(always)]
|
2009
|
+
fn offset_from(&self, other: &<Recoverable<I, E> as Stream>::Checkpoint) -> usize {
|
2010
|
+
self.checkpoint().offset_from(other)
|
2011
|
+
}
|
2012
|
+
}
|
2013
|
+
|
2014
|
+
impl<I, S> Offset for Stateful<I, S>
|
2015
|
+
where
|
2016
|
+
I: Stream,
|
2017
|
+
S: Clone + crate::lib::std::fmt::Debug,
|
2018
|
+
{
|
2019
|
+
#[inline(always)]
|
2020
|
+
fn offset_from(&self, start: &Self) -> usize {
|
2021
|
+
self.offset_from(&start.checkpoint())
|
2022
|
+
}
|
2023
|
+
}
|
2024
|
+
|
2025
|
+
impl<I, S> Offset<<Stateful<I, S> as Stream>::Checkpoint> for Stateful<I, S>
|
2026
|
+
where
|
2027
|
+
I: Stream,
|
2028
|
+
S: crate::lib::std::fmt::Debug,
|
2029
|
+
{
|
2030
|
+
#[inline(always)]
|
2031
|
+
fn offset_from(&self, other: &<Stateful<I, S> as Stream>::Checkpoint) -> usize {
|
2032
|
+
self.checkpoint().offset_from(other)
|
2033
|
+
}
|
2034
|
+
}
|
2035
|
+
|
2036
|
+
impl<I> Offset for Partial<I>
|
2037
|
+
where
|
2038
|
+
I: Stream,
|
2039
|
+
{
|
2040
|
+
#[inline(always)]
|
2041
|
+
fn offset_from(&self, start: &Self) -> usize {
|
2042
|
+
self.offset_from(&start.checkpoint())
|
2043
|
+
}
|
2044
|
+
}
|
2045
|
+
|
2046
|
+
impl<I> Offset<<Partial<I> as Stream>::Checkpoint> for Partial<I>
|
2047
|
+
where
|
2048
|
+
I: Stream,
|
2049
|
+
{
|
2050
|
+
#[inline(always)]
|
2051
|
+
fn offset_from(&self, other: &<Partial<I> as Stream>::Checkpoint) -> usize {
|
2052
|
+
self.checkpoint().offset_from(other)
|
2053
|
+
}
|
2054
|
+
}
|
2055
|
+
|
2056
|
+
impl<I, S> Offset for Checkpoint<I, S>
|
2057
|
+
where
|
2058
|
+
I: Offset,
|
2059
|
+
{
|
2060
|
+
#[inline(always)]
|
2061
|
+
fn offset_from(&self, start: &Self) -> usize {
|
2062
|
+
self.inner.offset_from(&start.inner)
|
2063
|
+
}
|
2064
|
+
}
|
2065
|
+
|
2066
|
+
/// Helper trait for types that can be viewed as a byte slice
|
2067
|
+
pub trait AsBytes {
|
2068
|
+
/// Casts the input type to a byte slice
|
2069
|
+
fn as_bytes(&self) -> &[u8];
|
2070
|
+
}
|
2071
|
+
|
2072
|
+
impl AsBytes for &[u8] {
|
2073
|
+
#[inline(always)]
|
2074
|
+
fn as_bytes(&self) -> &[u8] {
|
2075
|
+
self
|
2076
|
+
}
|
2077
|
+
}
|
2078
|
+
|
2079
|
+
impl AsBytes for &Bytes {
|
2080
|
+
#[inline(always)]
|
2081
|
+
fn as_bytes(&self) -> &[u8] {
|
2082
|
+
(*self).as_bytes()
|
2083
|
+
}
|
2084
|
+
}
|
2085
|
+
|
2086
|
+
impl<I> AsBytes for LocatingSlice<I>
|
2087
|
+
where
|
2088
|
+
I: AsBytes,
|
2089
|
+
{
|
2090
|
+
#[inline(always)]
|
2091
|
+
fn as_bytes(&self) -> &[u8] {
|
2092
|
+
self.input.as_bytes()
|
2093
|
+
}
|
2094
|
+
}
|
2095
|
+
|
2096
|
+
#[cfg(feature = "unstable-recover")]
|
2097
|
+
#[cfg(feature = "std")]
|
2098
|
+
impl<I, E> AsBytes for Recoverable<I, E>
|
2099
|
+
where
|
2100
|
+
I: Stream,
|
2101
|
+
I: AsBytes,
|
2102
|
+
{
|
2103
|
+
#[inline(always)]
|
2104
|
+
fn as_bytes(&self) -> &[u8] {
|
2105
|
+
self.input.as_bytes()
|
2106
|
+
}
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
impl<I, S> AsBytes for Stateful<I, S>
|
2110
|
+
where
|
2111
|
+
I: AsBytes,
|
2112
|
+
{
|
2113
|
+
#[inline(always)]
|
2114
|
+
fn as_bytes(&self) -> &[u8] {
|
2115
|
+
self.input.as_bytes()
|
2116
|
+
}
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
impl<I> AsBytes for Partial<I>
|
2120
|
+
where
|
2121
|
+
I: AsBytes,
|
2122
|
+
{
|
2123
|
+
#[inline(always)]
|
2124
|
+
fn as_bytes(&self) -> &[u8] {
|
2125
|
+
self.input.as_bytes()
|
2126
|
+
}
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
/// Helper trait for types that can be viewed as a byte slice
|
2130
|
+
pub trait AsBStr {
|
2131
|
+
/// Casts the input type to a byte slice
|
2132
|
+
fn as_bstr(&self) -> &[u8];
|
2133
|
+
}
|
2134
|
+
|
2135
|
+
impl AsBStr for &[u8] {
|
2136
|
+
#[inline(always)]
|
2137
|
+
fn as_bstr(&self) -> &[u8] {
|
2138
|
+
self
|
2139
|
+
}
|
2140
|
+
}
|
2141
|
+
|
2142
|
+
impl AsBStr for &BStr {
|
2143
|
+
#[inline(always)]
|
2144
|
+
fn as_bstr(&self) -> &[u8] {
|
2145
|
+
(*self).as_bytes()
|
2146
|
+
}
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
impl AsBStr for &str {
|
2150
|
+
#[inline(always)]
|
2151
|
+
fn as_bstr(&self) -> &[u8] {
|
2152
|
+
(*self).as_bytes()
|
2153
|
+
}
|
2154
|
+
}
|
2155
|
+
|
2156
|
+
impl<I> AsBStr for LocatingSlice<I>
|
2157
|
+
where
|
2158
|
+
I: AsBStr,
|
2159
|
+
{
|
2160
|
+
#[inline(always)]
|
2161
|
+
fn as_bstr(&self) -> &[u8] {
|
2162
|
+
self.input.as_bstr()
|
2163
|
+
}
|
2164
|
+
}
|
2165
|
+
|
2166
|
+
#[cfg(feature = "unstable-recover")]
|
2167
|
+
#[cfg(feature = "std")]
|
2168
|
+
impl<I, E> AsBStr for Recoverable<I, E>
|
2169
|
+
where
|
2170
|
+
I: Stream,
|
2171
|
+
I: AsBStr,
|
2172
|
+
{
|
2173
|
+
#[inline(always)]
|
2174
|
+
fn as_bstr(&self) -> &[u8] {
|
2175
|
+
self.input.as_bstr()
|
2176
|
+
}
|
2177
|
+
}
|
2178
|
+
|
2179
|
+
impl<I, S> AsBStr for Stateful<I, S>
|
2180
|
+
where
|
2181
|
+
I: AsBStr,
|
2182
|
+
{
|
2183
|
+
#[inline(always)]
|
2184
|
+
fn as_bstr(&self) -> &[u8] {
|
2185
|
+
self.input.as_bstr()
|
2186
|
+
}
|
2187
|
+
}
|
2188
|
+
|
2189
|
+
impl<I> AsBStr for Partial<I>
|
2190
|
+
where
|
2191
|
+
I: AsBStr,
|
2192
|
+
{
|
2193
|
+
#[inline(always)]
|
2194
|
+
fn as_bstr(&self) -> &[u8] {
|
2195
|
+
self.input.as_bstr()
|
2196
|
+
}
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
/// Result of [`Compare::compare`]
|
2200
|
+
#[derive(Debug, Eq, PartialEq)]
|
2201
|
+
pub enum CompareResult {
|
2202
|
+
/// Comparison was successful
|
2203
|
+
///
|
2204
|
+
/// `usize` is the end of the successful match within the buffer.
|
2205
|
+
/// This is most relevant for caseless UTF-8 where `Compare::compare`'s parameter might be a different
|
2206
|
+
/// length than the match within the buffer.
|
2207
|
+
Ok(usize),
|
2208
|
+
/// We need more data to be sure
|
2209
|
+
Incomplete,
|
2210
|
+
/// Comparison failed
|
2211
|
+
Error,
|
2212
|
+
}
|
2213
|
+
|
2214
|
+
/// Abstracts comparison operations
|
2215
|
+
pub trait Compare<T> {
|
2216
|
+
/// Compares self to another value for equality
|
2217
|
+
fn compare(&self, t: T) -> CompareResult;
|
2218
|
+
}
|
2219
|
+
|
2220
|
+
impl<'b> Compare<&'b [u8]> for &[u8] {
|
2221
|
+
#[inline]
|
2222
|
+
fn compare(&self, t: &'b [u8]) -> CompareResult {
|
2223
|
+
if t.iter().zip(*self).any(|(a, b)| a != b) {
|
2224
|
+
CompareResult::Error
|
2225
|
+
} else if self.len() < t.slice_len() {
|
2226
|
+
CompareResult::Incomplete
|
2227
|
+
} else {
|
2228
|
+
CompareResult::Ok(t.slice_len())
|
2229
|
+
}
|
2230
|
+
}
|
2231
|
+
}
|
2232
|
+
|
2233
|
+
impl<'b> Compare<AsciiCaseless<&'b [u8]>> for &[u8] {
|
2234
|
+
#[inline]
|
2235
|
+
fn compare(&self, t: AsciiCaseless<&'b [u8]>) -> CompareResult {
|
2236
|
+
if t.0
|
2237
|
+
.iter()
|
2238
|
+
.zip(*self)
|
2239
|
+
.any(|(a, b)| !a.eq_ignore_ascii_case(b))
|
2240
|
+
{
|
2241
|
+
CompareResult::Error
|
2242
|
+
} else if self.len() < t.slice_len() {
|
2243
|
+
CompareResult::Incomplete
|
2244
|
+
} else {
|
2245
|
+
CompareResult::Ok(t.slice_len())
|
2246
|
+
}
|
2247
|
+
}
|
2248
|
+
}
|
2249
|
+
|
2250
|
+
impl<const LEN: usize> Compare<[u8; LEN]> for &[u8] {
|
2251
|
+
#[inline(always)]
|
2252
|
+
fn compare(&self, t: [u8; LEN]) -> CompareResult {
|
2253
|
+
self.compare(&t[..])
|
2254
|
+
}
|
2255
|
+
}
|
2256
|
+
|
2257
|
+
impl<const LEN: usize> Compare<AsciiCaseless<[u8; LEN]>> for &[u8] {
|
2258
|
+
#[inline(always)]
|
2259
|
+
fn compare(&self, t: AsciiCaseless<[u8; LEN]>) -> CompareResult {
|
2260
|
+
self.compare(AsciiCaseless(&t.0[..]))
|
2261
|
+
}
|
2262
|
+
}
|
2263
|
+
|
2264
|
+
impl<'b, const LEN: usize> Compare<&'b [u8; LEN]> for &[u8] {
|
2265
|
+
#[inline(always)]
|
2266
|
+
fn compare(&self, t: &'b [u8; LEN]) -> CompareResult {
|
2267
|
+
self.compare(&t[..])
|
2268
|
+
}
|
2269
|
+
}
|
2270
|
+
|
2271
|
+
impl<'b, const LEN: usize> Compare<AsciiCaseless<&'b [u8; LEN]>> for &[u8] {
|
2272
|
+
#[inline(always)]
|
2273
|
+
fn compare(&self, t: AsciiCaseless<&'b [u8; LEN]>) -> CompareResult {
|
2274
|
+
self.compare(AsciiCaseless(&t.0[..]))
|
2275
|
+
}
|
2276
|
+
}
|
2277
|
+
|
2278
|
+
impl<'b> Compare<&'b str> for &[u8] {
|
2279
|
+
#[inline(always)]
|
2280
|
+
fn compare(&self, t: &'b str) -> CompareResult {
|
2281
|
+
self.compare(t.as_bytes())
|
2282
|
+
}
|
2283
|
+
}
|
2284
|
+
|
2285
|
+
impl<'b> Compare<AsciiCaseless<&'b str>> for &[u8] {
|
2286
|
+
#[inline(always)]
|
2287
|
+
fn compare(&self, t: AsciiCaseless<&'b str>) -> CompareResult {
|
2288
|
+
self.compare(AsciiCaseless(t.0.as_bytes()))
|
2289
|
+
}
|
2290
|
+
}
|
2291
|
+
|
2292
|
+
impl Compare<u8> for &[u8] {
|
2293
|
+
#[inline]
|
2294
|
+
fn compare(&self, t: u8) -> CompareResult {
|
2295
|
+
match self.first().copied() {
|
2296
|
+
Some(c) if t == c => CompareResult::Ok(t.slice_len()),
|
2297
|
+
Some(_) => CompareResult::Error,
|
2298
|
+
None => CompareResult::Incomplete,
|
2299
|
+
}
|
2300
|
+
}
|
2301
|
+
}
|
2302
|
+
|
2303
|
+
impl Compare<AsciiCaseless<u8>> for &[u8] {
|
2304
|
+
#[inline]
|
2305
|
+
fn compare(&self, t: AsciiCaseless<u8>) -> CompareResult {
|
2306
|
+
match self.first() {
|
2307
|
+
Some(c) if t.0.eq_ignore_ascii_case(c) => CompareResult::Ok(t.slice_len()),
|
2308
|
+
Some(_) => CompareResult::Error,
|
2309
|
+
None => CompareResult::Incomplete,
|
2310
|
+
}
|
2311
|
+
}
|
2312
|
+
}
|
2313
|
+
|
2314
|
+
impl Compare<char> for &[u8] {
|
2315
|
+
#[inline(always)]
|
2316
|
+
fn compare(&self, t: char) -> CompareResult {
|
2317
|
+
self.compare(t.encode_utf8(&mut [0; 4]).as_bytes())
|
2318
|
+
}
|
2319
|
+
}
|
2320
|
+
|
2321
|
+
impl Compare<AsciiCaseless<char>> for &[u8] {
|
2322
|
+
#[inline(always)]
|
2323
|
+
fn compare(&self, t: AsciiCaseless<char>) -> CompareResult {
|
2324
|
+
self.compare(AsciiCaseless(t.0.encode_utf8(&mut [0; 4]).as_bytes()))
|
2325
|
+
}
|
2326
|
+
}
|
2327
|
+
|
2328
|
+
impl<'b> Compare<&'b str> for &str {
|
2329
|
+
#[inline(always)]
|
2330
|
+
fn compare(&self, t: &'b str) -> CompareResult {
|
2331
|
+
self.as_bytes().compare(t.as_bytes())
|
2332
|
+
}
|
2333
|
+
}
|
2334
|
+
|
2335
|
+
impl<'b> Compare<AsciiCaseless<&'b str>> for &str {
|
2336
|
+
#[inline(always)]
|
2337
|
+
fn compare(&self, t: AsciiCaseless<&'b str>) -> CompareResult {
|
2338
|
+
self.as_bytes().compare(t.as_bytes())
|
2339
|
+
}
|
2340
|
+
}
|
2341
|
+
|
2342
|
+
impl Compare<char> for &str {
|
2343
|
+
#[inline(always)]
|
2344
|
+
fn compare(&self, t: char) -> CompareResult {
|
2345
|
+
self.as_bytes().compare(t)
|
2346
|
+
}
|
2347
|
+
}
|
2348
|
+
|
2349
|
+
impl Compare<AsciiCaseless<char>> for &str {
|
2350
|
+
#[inline(always)]
|
2351
|
+
fn compare(&self, t: AsciiCaseless<char>) -> CompareResult {
|
2352
|
+
self.as_bytes().compare(t)
|
2353
|
+
}
|
2354
|
+
}
|
2355
|
+
|
2356
|
+
impl<'a, T> Compare<T> for &'a Bytes
|
2357
|
+
where
|
2358
|
+
&'a [u8]: Compare<T>,
|
2359
|
+
{
|
2360
|
+
#[inline(always)]
|
2361
|
+
fn compare(&self, t: T) -> CompareResult {
|
2362
|
+
let bytes = (*self).as_bytes();
|
2363
|
+
bytes.compare(t)
|
2364
|
+
}
|
2365
|
+
}
|
2366
|
+
|
2367
|
+
impl<'a, T> Compare<T> for &'a BStr
|
2368
|
+
where
|
2369
|
+
&'a [u8]: Compare<T>,
|
2370
|
+
{
|
2371
|
+
#[inline(always)]
|
2372
|
+
fn compare(&self, t: T) -> CompareResult {
|
2373
|
+
let bytes = (*self).as_bytes();
|
2374
|
+
bytes.compare(t)
|
2375
|
+
}
|
2376
|
+
}
|
2377
|
+
|
2378
|
+
impl<I, U> Compare<U> for LocatingSlice<I>
|
2379
|
+
where
|
2380
|
+
I: Compare<U>,
|
2381
|
+
{
|
2382
|
+
#[inline(always)]
|
2383
|
+
fn compare(&self, other: U) -> CompareResult {
|
2384
|
+
self.input.compare(other)
|
2385
|
+
}
|
2386
|
+
}
|
2387
|
+
|
2388
|
+
#[cfg(feature = "unstable-recover")]
|
2389
|
+
#[cfg(feature = "std")]
|
2390
|
+
impl<I, E, U> Compare<U> for Recoverable<I, E>
|
2391
|
+
where
|
2392
|
+
I: Stream,
|
2393
|
+
I: Compare<U>,
|
2394
|
+
{
|
2395
|
+
#[inline(always)]
|
2396
|
+
fn compare(&self, other: U) -> CompareResult {
|
2397
|
+
self.input.compare(other)
|
2398
|
+
}
|
2399
|
+
}
|
2400
|
+
|
2401
|
+
impl<I, S, U> Compare<U> for Stateful<I, S>
|
2402
|
+
where
|
2403
|
+
I: Compare<U>,
|
2404
|
+
{
|
2405
|
+
#[inline(always)]
|
2406
|
+
fn compare(&self, other: U) -> CompareResult {
|
2407
|
+
self.input.compare(other)
|
2408
|
+
}
|
2409
|
+
}
|
2410
|
+
|
2411
|
+
impl<I, T> Compare<T> for Partial<I>
|
2412
|
+
where
|
2413
|
+
I: Compare<T>,
|
2414
|
+
{
|
2415
|
+
#[inline(always)]
|
2416
|
+
fn compare(&self, t: T) -> CompareResult {
|
2417
|
+
self.input.compare(t)
|
2418
|
+
}
|
2419
|
+
}
|
2420
|
+
|
2421
|
+
/// Look for a slice in self
|
2422
|
+
pub trait FindSlice<T> {
|
2423
|
+
/// Returns the offset of the slice if it is found
|
2424
|
+
fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>>;
|
2425
|
+
}
|
2426
|
+
|
2427
|
+
impl<'s> FindSlice<&'s [u8]> for &[u8] {
|
2428
|
+
#[inline(always)]
|
2429
|
+
fn find_slice(&self, substr: &'s [u8]) -> Option<crate::lib::std::ops::Range<usize>> {
|
2430
|
+
memmem(self, substr)
|
2431
|
+
}
|
2432
|
+
}
|
2433
|
+
|
2434
|
+
impl<'s> FindSlice<(&'s [u8],)> for &[u8] {
|
2435
|
+
#[inline(always)]
|
2436
|
+
fn find_slice(&self, substr: (&'s [u8],)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2437
|
+
memmem(self, substr.0)
|
2438
|
+
}
|
2439
|
+
}
|
2440
|
+
|
2441
|
+
impl<'s> FindSlice<(&'s [u8], &'s [u8])> for &[u8] {
|
2442
|
+
#[inline(always)]
|
2443
|
+
fn find_slice(
|
2444
|
+
&self,
|
2445
|
+
substr: (&'s [u8], &'s [u8]),
|
2446
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
2447
|
+
memmem2(self, substr)
|
2448
|
+
}
|
2449
|
+
}
|
2450
|
+
|
2451
|
+
impl<'s> FindSlice<(&'s [u8], &'s [u8], &'s [u8])> for &[u8] {
|
2452
|
+
#[inline(always)]
|
2453
|
+
fn find_slice(
|
2454
|
+
&self,
|
2455
|
+
substr: (&'s [u8], &'s [u8], &'s [u8]),
|
2456
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
2457
|
+
memmem3(self, substr)
|
2458
|
+
}
|
2459
|
+
}
|
2460
|
+
|
2461
|
+
impl FindSlice<char> for &[u8] {
|
2462
|
+
#[inline(always)]
|
2463
|
+
fn find_slice(&self, substr: char) -> Option<crate::lib::std::ops::Range<usize>> {
|
2464
|
+
let mut b = [0; 4];
|
2465
|
+
let substr = substr.encode_utf8(&mut b);
|
2466
|
+
self.find_slice(&*substr)
|
2467
|
+
}
|
2468
|
+
}
|
2469
|
+
|
2470
|
+
impl FindSlice<(char,)> for &[u8] {
|
2471
|
+
#[inline(always)]
|
2472
|
+
fn find_slice(&self, substr: (char,)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2473
|
+
let mut b = [0; 4];
|
2474
|
+
let substr0 = substr.0.encode_utf8(&mut b);
|
2475
|
+
self.find_slice((&*substr0,))
|
2476
|
+
}
|
2477
|
+
}
|
2478
|
+
|
2479
|
+
impl FindSlice<(char, char)> for &[u8] {
|
2480
|
+
#[inline(always)]
|
2481
|
+
fn find_slice(&self, substr: (char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2482
|
+
let mut b = [0; 4];
|
2483
|
+
let substr0 = substr.0.encode_utf8(&mut b);
|
2484
|
+
let mut b = [0; 4];
|
2485
|
+
let substr1 = substr.1.encode_utf8(&mut b);
|
2486
|
+
self.find_slice((&*substr0, &*substr1))
|
2487
|
+
}
|
2488
|
+
}
|
2489
|
+
|
2490
|
+
impl FindSlice<(char, char, char)> for &[u8] {
|
2491
|
+
#[inline(always)]
|
2492
|
+
fn find_slice(&self, substr: (char, char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2493
|
+
let mut b = [0; 4];
|
2494
|
+
let substr0 = substr.0.encode_utf8(&mut b);
|
2495
|
+
let mut b = [0; 4];
|
2496
|
+
let substr1 = substr.1.encode_utf8(&mut b);
|
2497
|
+
let mut b = [0; 4];
|
2498
|
+
let substr2 = substr.2.encode_utf8(&mut b);
|
2499
|
+
self.find_slice((&*substr0, &*substr1, &*substr2))
|
2500
|
+
}
|
2501
|
+
}
|
2502
|
+
|
2503
|
+
impl FindSlice<u8> for &[u8] {
|
2504
|
+
#[inline(always)]
|
2505
|
+
fn find_slice(&self, substr: u8) -> Option<crate::lib::std::ops::Range<usize>> {
|
2506
|
+
memchr(substr, self).map(|i| i..i + 1)
|
2507
|
+
}
|
2508
|
+
}
|
2509
|
+
|
2510
|
+
impl FindSlice<(u8,)> for &[u8] {
|
2511
|
+
#[inline(always)]
|
2512
|
+
fn find_slice(&self, substr: (u8,)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2513
|
+
memchr(substr.0, self).map(|i| i..i + 1)
|
2514
|
+
}
|
2515
|
+
}
|
2516
|
+
|
2517
|
+
impl FindSlice<(u8, u8)> for &[u8] {
|
2518
|
+
#[inline(always)]
|
2519
|
+
fn find_slice(&self, substr: (u8, u8)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2520
|
+
memchr2(substr, self).map(|i| i..i + 1)
|
2521
|
+
}
|
2522
|
+
}
|
2523
|
+
|
2524
|
+
impl FindSlice<(u8, u8, u8)> for &[u8] {
|
2525
|
+
#[inline(always)]
|
2526
|
+
fn find_slice(&self, substr: (u8, u8, u8)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2527
|
+
memchr3(substr, self).map(|i| i..i + 1)
|
2528
|
+
}
|
2529
|
+
}
|
2530
|
+
|
2531
|
+
impl<'s> FindSlice<&'s str> for &[u8] {
|
2532
|
+
#[inline(always)]
|
2533
|
+
fn find_slice(&self, substr: &'s str) -> Option<crate::lib::std::ops::Range<usize>> {
|
2534
|
+
self.find_slice(substr.as_bytes())
|
2535
|
+
}
|
2536
|
+
}
|
2537
|
+
|
2538
|
+
impl<'s> FindSlice<(&'s str,)> for &[u8] {
|
2539
|
+
#[inline(always)]
|
2540
|
+
fn find_slice(&self, substr: (&'s str,)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2541
|
+
memmem(self, substr.0.as_bytes())
|
2542
|
+
}
|
2543
|
+
}
|
2544
|
+
|
2545
|
+
impl<'s> FindSlice<(&'s str, &'s str)> for &[u8] {
|
2546
|
+
#[inline(always)]
|
2547
|
+
fn find_slice(&self, substr: (&'s str, &'s str)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2548
|
+
memmem2(self, (substr.0.as_bytes(), substr.1.as_bytes()))
|
2549
|
+
}
|
2550
|
+
}
|
2551
|
+
|
2552
|
+
impl<'s> FindSlice<(&'s str, &'s str, &'s str)> for &[u8] {
|
2553
|
+
#[inline(always)]
|
2554
|
+
fn find_slice(
|
2555
|
+
&self,
|
2556
|
+
substr: (&'s str, &'s str, &'s str),
|
2557
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
2558
|
+
memmem3(
|
2559
|
+
self,
|
2560
|
+
(
|
2561
|
+
substr.0.as_bytes(),
|
2562
|
+
substr.1.as_bytes(),
|
2563
|
+
substr.2.as_bytes(),
|
2564
|
+
),
|
2565
|
+
)
|
2566
|
+
}
|
2567
|
+
}
|
2568
|
+
|
2569
|
+
impl<'s> FindSlice<&'s str> for &str {
|
2570
|
+
#[inline(always)]
|
2571
|
+
fn find_slice(&self, substr: &'s str) -> Option<crate::lib::std::ops::Range<usize>> {
|
2572
|
+
self.as_bytes().find_slice(substr)
|
2573
|
+
}
|
2574
|
+
}
|
2575
|
+
|
2576
|
+
impl<'s> FindSlice<(&'s str,)> for &str {
|
2577
|
+
#[inline(always)]
|
2578
|
+
fn find_slice(&self, substr: (&'s str,)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2579
|
+
self.as_bytes().find_slice(substr)
|
2580
|
+
}
|
2581
|
+
}
|
2582
|
+
|
2583
|
+
impl<'s> FindSlice<(&'s str, &'s str)> for &str {
|
2584
|
+
#[inline(always)]
|
2585
|
+
fn find_slice(&self, substr: (&'s str, &'s str)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2586
|
+
self.as_bytes().find_slice(substr)
|
2587
|
+
}
|
2588
|
+
}
|
2589
|
+
|
2590
|
+
impl<'s> FindSlice<(&'s str, &'s str, &'s str)> for &str {
|
2591
|
+
#[inline(always)]
|
2592
|
+
fn find_slice(
|
2593
|
+
&self,
|
2594
|
+
substr: (&'s str, &'s str, &'s str),
|
2595
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
2596
|
+
self.as_bytes().find_slice(substr)
|
2597
|
+
}
|
2598
|
+
}
|
2599
|
+
|
2600
|
+
impl FindSlice<char> for &str {
|
2601
|
+
#[inline(always)]
|
2602
|
+
fn find_slice(&self, substr: char) -> Option<crate::lib::std::ops::Range<usize>> {
|
2603
|
+
self.as_bytes().find_slice(substr)
|
2604
|
+
}
|
2605
|
+
}
|
2606
|
+
|
2607
|
+
impl FindSlice<(char,)> for &str {
|
2608
|
+
#[inline(always)]
|
2609
|
+
fn find_slice(&self, substr: (char,)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2610
|
+
self.as_bytes().find_slice(substr)
|
2611
|
+
}
|
2612
|
+
}
|
2613
|
+
|
2614
|
+
impl FindSlice<(char, char)> for &str {
|
2615
|
+
#[inline(always)]
|
2616
|
+
fn find_slice(&self, substr: (char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2617
|
+
self.as_bytes().find_slice(substr)
|
2618
|
+
}
|
2619
|
+
}
|
2620
|
+
|
2621
|
+
impl FindSlice<(char, char, char)> for &str {
|
2622
|
+
#[inline(always)]
|
2623
|
+
fn find_slice(&self, substr: (char, char, char)) -> Option<crate::lib::std::ops::Range<usize>> {
|
2624
|
+
self.as_bytes().find_slice(substr)
|
2625
|
+
}
|
2626
|
+
}
|
2627
|
+
|
2628
|
+
impl<'i, S> FindSlice<S> for &'i Bytes
|
2629
|
+
where
|
2630
|
+
&'i [u8]: FindSlice<S>,
|
2631
|
+
{
|
2632
|
+
#[inline(always)]
|
2633
|
+
fn find_slice(&self, substr: S) -> Option<crate::lib::std::ops::Range<usize>> {
|
2634
|
+
let bytes = (*self).as_bytes();
|
2635
|
+
let offset = bytes.find_slice(substr);
|
2636
|
+
offset
|
2637
|
+
}
|
2638
|
+
}
|
2639
|
+
|
2640
|
+
impl<'i, S> FindSlice<S> for &'i BStr
|
2641
|
+
where
|
2642
|
+
&'i [u8]: FindSlice<S>,
|
2643
|
+
{
|
2644
|
+
#[inline(always)]
|
2645
|
+
fn find_slice(&self, substr: S) -> Option<crate::lib::std::ops::Range<usize>> {
|
2646
|
+
let bytes = (*self).as_bytes();
|
2647
|
+
let offset = bytes.find_slice(substr);
|
2648
|
+
offset
|
2649
|
+
}
|
2650
|
+
}
|
2651
|
+
|
2652
|
+
impl<I, T> FindSlice<T> for LocatingSlice<I>
|
2653
|
+
where
|
2654
|
+
I: FindSlice<T>,
|
2655
|
+
{
|
2656
|
+
#[inline(always)]
|
2657
|
+
fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
|
2658
|
+
self.input.find_slice(substr)
|
2659
|
+
}
|
2660
|
+
}
|
2661
|
+
|
2662
|
+
#[cfg(feature = "unstable-recover")]
|
2663
|
+
#[cfg(feature = "std")]
|
2664
|
+
impl<I, E, T> FindSlice<T> for Recoverable<I, E>
|
2665
|
+
where
|
2666
|
+
I: Stream,
|
2667
|
+
I: FindSlice<T>,
|
2668
|
+
{
|
2669
|
+
#[inline(always)]
|
2670
|
+
fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
|
2671
|
+
self.input.find_slice(substr)
|
2672
|
+
}
|
2673
|
+
}
|
2674
|
+
|
2675
|
+
impl<I, S, T> FindSlice<T> for Stateful<I, S>
|
2676
|
+
where
|
2677
|
+
I: FindSlice<T>,
|
2678
|
+
{
|
2679
|
+
#[inline(always)]
|
2680
|
+
fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
|
2681
|
+
self.input.find_slice(substr)
|
2682
|
+
}
|
2683
|
+
}
|
2684
|
+
|
2685
|
+
impl<I, T> FindSlice<T> for Partial<I>
|
2686
|
+
where
|
2687
|
+
I: FindSlice<T>,
|
2688
|
+
{
|
2689
|
+
#[inline(always)]
|
2690
|
+
fn find_slice(&self, substr: T) -> Option<crate::lib::std::ops::Range<usize>> {
|
2691
|
+
self.input.find_slice(substr)
|
2692
|
+
}
|
2693
|
+
}
|
2694
|
+
|
2695
|
+
/// Used to integrate `str`'s `parse()` method
|
2696
|
+
pub trait ParseSlice<R> {
|
2697
|
+
/// Succeeds if `parse()` succeeded
|
2698
|
+
///
|
2699
|
+
/// The byte slice implementation will first convert it to a `&str`, then apply the `parse()`
|
2700
|
+
/// function
|
2701
|
+
fn parse_slice(&self) -> Option<R>;
|
2702
|
+
}
|
2703
|
+
|
2704
|
+
impl<R: FromStr> ParseSlice<R> for &[u8] {
|
2705
|
+
#[inline(always)]
|
2706
|
+
fn parse_slice(&self) -> Option<R> {
|
2707
|
+
from_utf8(self).ok().and_then(|s| s.parse().ok())
|
2708
|
+
}
|
2709
|
+
}
|
2710
|
+
|
2711
|
+
impl<R: FromStr> ParseSlice<R> for &str {
|
2712
|
+
#[inline(always)]
|
2713
|
+
fn parse_slice(&self) -> Option<R> {
|
2714
|
+
self.parse().ok()
|
2715
|
+
}
|
2716
|
+
}
|
2717
|
+
|
2718
|
+
/// Convert a `Stream` into an appropriate `Output` type
|
2719
|
+
pub trait UpdateSlice: Stream {
|
2720
|
+
/// Convert an `Output` type to be used as `Stream`
|
2721
|
+
fn update_slice(self, inner: Self::Slice) -> Self;
|
2722
|
+
}
|
2723
|
+
|
2724
|
+
impl<T> UpdateSlice for &[T]
|
2725
|
+
where
|
2726
|
+
T: Clone + crate::lib::std::fmt::Debug,
|
2727
|
+
{
|
2728
|
+
#[inline(always)]
|
2729
|
+
fn update_slice(self, inner: Self::Slice) -> Self {
|
2730
|
+
inner
|
2731
|
+
}
|
2732
|
+
}
|
2733
|
+
|
2734
|
+
impl UpdateSlice for &str {
|
2735
|
+
#[inline(always)]
|
2736
|
+
fn update_slice(self, inner: Self::Slice) -> Self {
|
2737
|
+
inner
|
2738
|
+
}
|
2739
|
+
}
|
2740
|
+
|
2741
|
+
impl UpdateSlice for &Bytes {
|
2742
|
+
#[inline(always)]
|
2743
|
+
fn update_slice(self, inner: Self::Slice) -> Self {
|
2744
|
+
Bytes::new(inner)
|
2745
|
+
}
|
2746
|
+
}
|
2747
|
+
|
2748
|
+
impl UpdateSlice for &BStr {
|
2749
|
+
#[inline(always)]
|
2750
|
+
fn update_slice(self, inner: Self::Slice) -> Self {
|
2751
|
+
BStr::new(inner)
|
2752
|
+
}
|
2753
|
+
}
|
2754
|
+
|
2755
|
+
impl<I> UpdateSlice for LocatingSlice<I>
|
2756
|
+
where
|
2757
|
+
I: UpdateSlice,
|
2758
|
+
{
|
2759
|
+
#[inline(always)]
|
2760
|
+
fn update_slice(mut self, inner: Self::Slice) -> Self {
|
2761
|
+
self.input = I::update_slice(self.input, inner);
|
2762
|
+
self
|
2763
|
+
}
|
2764
|
+
}
|
2765
|
+
|
2766
|
+
#[cfg(feature = "unstable-recover")]
|
2767
|
+
#[cfg(feature = "std")]
|
2768
|
+
impl<I, E> UpdateSlice for Recoverable<I, E>
|
2769
|
+
where
|
2770
|
+
I: Stream,
|
2771
|
+
I: UpdateSlice,
|
2772
|
+
E: crate::lib::std::fmt::Debug,
|
2773
|
+
{
|
2774
|
+
#[inline(always)]
|
2775
|
+
fn update_slice(mut self, inner: Self::Slice) -> Self {
|
2776
|
+
self.input = I::update_slice(self.input, inner);
|
2777
|
+
self
|
2778
|
+
}
|
2779
|
+
}
|
2780
|
+
|
2781
|
+
impl<I, S> UpdateSlice for Stateful<I, S>
|
2782
|
+
where
|
2783
|
+
I: UpdateSlice,
|
2784
|
+
S: Clone + crate::lib::std::fmt::Debug,
|
2785
|
+
{
|
2786
|
+
#[inline(always)]
|
2787
|
+
fn update_slice(mut self, inner: Self::Slice) -> Self {
|
2788
|
+
self.input = I::update_slice(self.input, inner);
|
2789
|
+
self
|
2790
|
+
}
|
2791
|
+
}
|
2792
|
+
|
2793
|
+
impl<I> UpdateSlice for Partial<I>
|
2794
|
+
where
|
2795
|
+
I: UpdateSlice,
|
2796
|
+
{
|
2797
|
+
#[inline(always)]
|
2798
|
+
fn update_slice(self, inner: Self::Slice) -> Self {
|
2799
|
+
Partial {
|
2800
|
+
input: I::update_slice(self.input, inner),
|
2801
|
+
partial: self.partial,
|
2802
|
+
}
|
2803
|
+
}
|
2804
|
+
}
|
2805
|
+
|
2806
|
+
/// Ensure checkpoint details are kept private
|
2807
|
+
pub struct Checkpoint<T, S> {
|
2808
|
+
inner: T,
|
2809
|
+
stream: core::marker::PhantomData<S>,
|
2810
|
+
}
|
2811
|
+
|
2812
|
+
impl<T, S> Checkpoint<T, S> {
|
2813
|
+
fn new(inner: T) -> Self {
|
2814
|
+
Self {
|
2815
|
+
inner,
|
2816
|
+
stream: Default::default(),
|
2817
|
+
}
|
2818
|
+
}
|
2819
|
+
}
|
2820
|
+
|
2821
|
+
impl<T: Copy, S> Copy for Checkpoint<T, S> {}
|
2822
|
+
|
2823
|
+
impl<T: Clone, S> Clone for Checkpoint<T, S> {
|
2824
|
+
#[inline(always)]
|
2825
|
+
fn clone(&self) -> Self {
|
2826
|
+
Self {
|
2827
|
+
inner: self.inner.clone(),
|
2828
|
+
stream: Default::default(),
|
2829
|
+
}
|
2830
|
+
}
|
2831
|
+
}
|
2832
|
+
|
2833
|
+
impl<T: PartialOrd, S> PartialOrd for Checkpoint<T, S> {
|
2834
|
+
#[inline(always)]
|
2835
|
+
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
|
2836
|
+
self.inner.partial_cmp(&other.inner)
|
2837
|
+
}
|
2838
|
+
}
|
2839
|
+
|
2840
|
+
impl<T: Ord, S> Ord for Checkpoint<T, S> {
|
2841
|
+
#[inline(always)]
|
2842
|
+
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
|
2843
|
+
self.inner.cmp(&other.inner)
|
2844
|
+
}
|
2845
|
+
}
|
2846
|
+
|
2847
|
+
impl<T: PartialEq, S> PartialEq for Checkpoint<T, S> {
|
2848
|
+
#[inline(always)]
|
2849
|
+
fn eq(&self, other: &Self) -> bool {
|
2850
|
+
self.inner.eq(&other.inner)
|
2851
|
+
}
|
2852
|
+
}
|
2853
|
+
|
2854
|
+
impl<T: Eq, S> Eq for Checkpoint<T, S> {}
|
2855
|
+
|
2856
|
+
impl<T: crate::lib::std::fmt::Debug, S> crate::lib::std::fmt::Debug for Checkpoint<T, S> {
|
2857
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
2858
|
+
self.inner.fmt(f)
|
2859
|
+
}
|
2860
|
+
}
|
2861
|
+
|
2862
|
+
/// A range bounded inclusively for counting parses performed
|
2863
|
+
///
|
2864
|
+
/// This is flexible in what can be converted to a [Range]:
|
2865
|
+
/// ```rust
|
2866
|
+
/// # #[cfg(feature = "std")] {
|
2867
|
+
/// # use winnow::prelude::*;
|
2868
|
+
/// # use winnow::token::any;
|
2869
|
+
/// # use winnow::combinator::repeat;
|
2870
|
+
/// # fn inner(input: &mut &str) -> PResult<char> {
|
2871
|
+
/// # any.parse_next(input)
|
2872
|
+
/// # }
|
2873
|
+
/// # let mut input = "0123456789012345678901234567890123456789";
|
2874
|
+
/// # let input = &mut input;
|
2875
|
+
/// let parser: Vec<_> = repeat(5, inner).parse_next(input).unwrap();
|
2876
|
+
/// # let mut input = "0123456789012345678901234567890123456789";
|
2877
|
+
/// # let input = &mut input;
|
2878
|
+
/// let parser: Vec<_> = repeat(.., inner).parse_next(input).unwrap();
|
2879
|
+
/// # let mut input = "0123456789012345678901234567890123456789";
|
2880
|
+
/// # let input = &mut input;
|
2881
|
+
/// let parser: Vec<_> = repeat(1.., inner).parse_next(input).unwrap();
|
2882
|
+
/// # let mut input = "0123456789012345678901234567890123456789";
|
2883
|
+
/// # let input = &mut input;
|
2884
|
+
/// let parser: Vec<_> = repeat(5..8, inner).parse_next(input).unwrap();
|
2885
|
+
/// # let mut input = "0123456789012345678901234567890123456789";
|
2886
|
+
/// # let input = &mut input;
|
2887
|
+
/// let parser: Vec<_> = repeat(5..=8, inner).parse_next(input).unwrap();
|
2888
|
+
/// # }
|
2889
|
+
/// ```
|
2890
|
+
#[derive(PartialEq, Eq)]
|
2891
|
+
pub struct Range {
|
2892
|
+
pub(crate) start_inclusive: usize,
|
2893
|
+
pub(crate) end_inclusive: Option<usize>,
|
2894
|
+
}
|
2895
|
+
|
2896
|
+
impl Range {
|
2897
|
+
#[inline(always)]
|
2898
|
+
fn raw(start_inclusive: usize, end_inclusive: Option<usize>) -> Self {
|
2899
|
+
Self {
|
2900
|
+
start_inclusive,
|
2901
|
+
end_inclusive,
|
2902
|
+
}
|
2903
|
+
}
|
2904
|
+
}
|
2905
|
+
|
2906
|
+
impl crate::lib::std::ops::RangeBounds<usize> for Range {
|
2907
|
+
#[inline(always)]
|
2908
|
+
fn start_bound(&self) -> crate::lib::std::ops::Bound<&usize> {
|
2909
|
+
crate::lib::std::ops::Bound::Included(&self.start_inclusive)
|
2910
|
+
}
|
2911
|
+
|
2912
|
+
#[inline(always)]
|
2913
|
+
fn end_bound(&self) -> crate::lib::std::ops::Bound<&usize> {
|
2914
|
+
if let Some(end_inclusive) = &self.end_inclusive {
|
2915
|
+
crate::lib::std::ops::Bound::Included(end_inclusive)
|
2916
|
+
} else {
|
2917
|
+
crate::lib::std::ops::Bound::Unbounded
|
2918
|
+
}
|
2919
|
+
}
|
2920
|
+
}
|
2921
|
+
|
2922
|
+
impl From<usize> for Range {
|
2923
|
+
#[inline(always)]
|
2924
|
+
fn from(fixed: usize) -> Self {
|
2925
|
+
(fixed..=fixed).into()
|
2926
|
+
}
|
2927
|
+
}
|
2928
|
+
|
2929
|
+
impl From<crate::lib::std::ops::Range<usize>> for Range {
|
2930
|
+
#[inline(always)]
|
2931
|
+
fn from(range: crate::lib::std::ops::Range<usize>) -> Self {
|
2932
|
+
let start_inclusive = range.start;
|
2933
|
+
let end_inclusive = Some(range.end.saturating_sub(1));
|
2934
|
+
Self::raw(start_inclusive, end_inclusive)
|
2935
|
+
}
|
2936
|
+
}
|
2937
|
+
|
2938
|
+
impl From<crate::lib::std::ops::RangeFull> for Range {
|
2939
|
+
#[inline(always)]
|
2940
|
+
fn from(_: crate::lib::std::ops::RangeFull) -> Self {
|
2941
|
+
let start_inclusive = 0;
|
2942
|
+
let end_inclusive = None;
|
2943
|
+
Self::raw(start_inclusive, end_inclusive)
|
2944
|
+
}
|
2945
|
+
}
|
2946
|
+
|
2947
|
+
impl From<crate::lib::std::ops::RangeFrom<usize>> for Range {
|
2948
|
+
#[inline(always)]
|
2949
|
+
fn from(range: crate::lib::std::ops::RangeFrom<usize>) -> Self {
|
2950
|
+
let start_inclusive = range.start;
|
2951
|
+
let end_inclusive = None;
|
2952
|
+
Self::raw(start_inclusive, end_inclusive)
|
2953
|
+
}
|
2954
|
+
}
|
2955
|
+
|
2956
|
+
impl From<crate::lib::std::ops::RangeTo<usize>> for Range {
|
2957
|
+
#[inline(always)]
|
2958
|
+
fn from(range: crate::lib::std::ops::RangeTo<usize>) -> Self {
|
2959
|
+
let start_inclusive = 0;
|
2960
|
+
let end_inclusive = Some(range.end.saturating_sub(1));
|
2961
|
+
Self::raw(start_inclusive, end_inclusive)
|
2962
|
+
}
|
2963
|
+
}
|
2964
|
+
|
2965
|
+
impl From<crate::lib::std::ops::RangeInclusive<usize>> for Range {
|
2966
|
+
#[inline(always)]
|
2967
|
+
fn from(range: crate::lib::std::ops::RangeInclusive<usize>) -> Self {
|
2968
|
+
let start_inclusive = *range.start();
|
2969
|
+
let end_inclusive = Some(*range.end());
|
2970
|
+
Self::raw(start_inclusive, end_inclusive)
|
2971
|
+
}
|
2972
|
+
}
|
2973
|
+
|
2974
|
+
impl From<crate::lib::std::ops::RangeToInclusive<usize>> for Range {
|
2975
|
+
#[inline(always)]
|
2976
|
+
fn from(range: crate::lib::std::ops::RangeToInclusive<usize>) -> Self {
|
2977
|
+
let start_inclusive = 0;
|
2978
|
+
let end_inclusive = Some(range.end);
|
2979
|
+
Self::raw(start_inclusive, end_inclusive)
|
2980
|
+
}
|
2981
|
+
}
|
2982
|
+
|
2983
|
+
impl crate::lib::std::fmt::Display for Range {
|
2984
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
2985
|
+
self.start_inclusive.fmt(f)?;
|
2986
|
+
match self.end_inclusive {
|
2987
|
+
Some(e) if e == self.start_inclusive => {}
|
2988
|
+
Some(e) => {
|
2989
|
+
"..=".fmt(f)?;
|
2990
|
+
e.fmt(f)?;
|
2991
|
+
}
|
2992
|
+
None => {
|
2993
|
+
"..".fmt(f)?;
|
2994
|
+
}
|
2995
|
+
}
|
2996
|
+
Ok(())
|
2997
|
+
}
|
2998
|
+
}
|
2999
|
+
|
3000
|
+
impl crate::lib::std::fmt::Debug for Range {
|
3001
|
+
fn fmt(&self, f: &mut crate::lib::std::fmt::Formatter<'_>) -> crate::lib::std::fmt::Result {
|
3002
|
+
write!(f, "{self}")
|
3003
|
+
}
|
3004
|
+
}
|
3005
|
+
|
3006
|
+
/// Abstracts something which can extend an `Extend`.
|
3007
|
+
/// Used to build modified input slices in `escaped_transform`
|
3008
|
+
pub trait Accumulate<T>: Sized {
|
3009
|
+
/// Create a new `Extend` of the correct type
|
3010
|
+
fn initial(capacity: Option<usize>) -> Self;
|
3011
|
+
/// Accumulate the input into an accumulator
|
3012
|
+
fn accumulate(&mut self, acc: T);
|
3013
|
+
}
|
3014
|
+
|
3015
|
+
impl<T> Accumulate<T> for () {
|
3016
|
+
#[inline(always)]
|
3017
|
+
fn initial(_capacity: Option<usize>) -> Self {}
|
3018
|
+
#[inline(always)]
|
3019
|
+
fn accumulate(&mut self, _acc: T) {}
|
3020
|
+
}
|
3021
|
+
|
3022
|
+
impl<T> Accumulate<T> for usize {
|
3023
|
+
#[inline(always)]
|
3024
|
+
fn initial(_capacity: Option<usize>) -> Self {
|
3025
|
+
0
|
3026
|
+
}
|
3027
|
+
#[inline(always)]
|
3028
|
+
fn accumulate(&mut self, _acc: T) {
|
3029
|
+
*self += 1;
|
3030
|
+
}
|
3031
|
+
}
|
3032
|
+
|
3033
|
+
#[cfg(feature = "alloc")]
|
3034
|
+
impl<T> Accumulate<T> for Vec<T> {
|
3035
|
+
#[inline(always)]
|
3036
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3037
|
+
match capacity {
|
3038
|
+
Some(capacity) => Vec::with_capacity(clamp_capacity::<T>(capacity)),
|
3039
|
+
None => Vec::new(),
|
3040
|
+
}
|
3041
|
+
}
|
3042
|
+
#[inline(always)]
|
3043
|
+
fn accumulate(&mut self, acc: T) {
|
3044
|
+
self.push(acc);
|
3045
|
+
}
|
3046
|
+
}
|
3047
|
+
|
3048
|
+
#[cfg(feature = "alloc")]
|
3049
|
+
impl<'i, T: Clone> Accumulate<&'i [T]> for Vec<T> {
|
3050
|
+
#[inline(always)]
|
3051
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3052
|
+
match capacity {
|
3053
|
+
Some(capacity) => Vec::with_capacity(clamp_capacity::<T>(capacity)),
|
3054
|
+
None => Vec::new(),
|
3055
|
+
}
|
3056
|
+
}
|
3057
|
+
#[inline(always)]
|
3058
|
+
fn accumulate(&mut self, acc: &'i [T]) {
|
3059
|
+
self.extend(acc.iter().cloned());
|
3060
|
+
}
|
3061
|
+
}
|
3062
|
+
|
3063
|
+
#[cfg(feature = "alloc")]
|
3064
|
+
impl Accumulate<char> for String {
|
3065
|
+
#[inline(always)]
|
3066
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3067
|
+
match capacity {
|
3068
|
+
Some(capacity) => String::with_capacity(clamp_capacity::<char>(capacity)),
|
3069
|
+
None => String::new(),
|
3070
|
+
}
|
3071
|
+
}
|
3072
|
+
#[inline(always)]
|
3073
|
+
fn accumulate(&mut self, acc: char) {
|
3074
|
+
self.push(acc);
|
3075
|
+
}
|
3076
|
+
}
|
3077
|
+
|
3078
|
+
#[cfg(feature = "alloc")]
|
3079
|
+
impl<'i> Accumulate<&'i str> for String {
|
3080
|
+
#[inline(always)]
|
3081
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3082
|
+
match capacity {
|
3083
|
+
Some(capacity) => String::with_capacity(clamp_capacity::<char>(capacity)),
|
3084
|
+
None => String::new(),
|
3085
|
+
}
|
3086
|
+
}
|
3087
|
+
#[inline(always)]
|
3088
|
+
fn accumulate(&mut self, acc: &'i str) {
|
3089
|
+
self.push_str(acc);
|
3090
|
+
}
|
3091
|
+
}
|
3092
|
+
|
3093
|
+
#[cfg(feature = "alloc")]
|
3094
|
+
impl<K, V> Accumulate<(K, V)> for BTreeMap<K, V>
|
3095
|
+
where
|
3096
|
+
K: crate::lib::std::cmp::Ord,
|
3097
|
+
{
|
3098
|
+
#[inline(always)]
|
3099
|
+
fn initial(_capacity: Option<usize>) -> Self {
|
3100
|
+
BTreeMap::new()
|
3101
|
+
}
|
3102
|
+
#[inline(always)]
|
3103
|
+
fn accumulate(&mut self, (key, value): (K, V)) {
|
3104
|
+
self.insert(key, value);
|
3105
|
+
}
|
3106
|
+
}
|
3107
|
+
|
3108
|
+
#[cfg(feature = "std")]
|
3109
|
+
impl<K, V, S> Accumulate<(K, V)> for HashMap<K, V, S>
|
3110
|
+
where
|
3111
|
+
K: crate::lib::std::cmp::Eq + crate::lib::std::hash::Hash,
|
3112
|
+
S: BuildHasher + Default,
|
3113
|
+
{
|
3114
|
+
#[inline(always)]
|
3115
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3116
|
+
let h = S::default();
|
3117
|
+
match capacity {
|
3118
|
+
Some(capacity) => {
|
3119
|
+
HashMap::with_capacity_and_hasher(clamp_capacity::<(K, V)>(capacity), h)
|
3120
|
+
}
|
3121
|
+
None => HashMap::with_hasher(h),
|
3122
|
+
}
|
3123
|
+
}
|
3124
|
+
#[inline(always)]
|
3125
|
+
fn accumulate(&mut self, (key, value): (K, V)) {
|
3126
|
+
self.insert(key, value);
|
3127
|
+
}
|
3128
|
+
}
|
3129
|
+
|
3130
|
+
#[cfg(feature = "alloc")]
|
3131
|
+
impl<K> Accumulate<K> for BTreeSet<K>
|
3132
|
+
where
|
3133
|
+
K: crate::lib::std::cmp::Ord,
|
3134
|
+
{
|
3135
|
+
#[inline(always)]
|
3136
|
+
fn initial(_capacity: Option<usize>) -> Self {
|
3137
|
+
BTreeSet::new()
|
3138
|
+
}
|
3139
|
+
#[inline(always)]
|
3140
|
+
fn accumulate(&mut self, key: K) {
|
3141
|
+
self.insert(key);
|
3142
|
+
}
|
3143
|
+
}
|
3144
|
+
|
3145
|
+
#[cfg(feature = "std")]
|
3146
|
+
impl<K, S> Accumulate<K> for HashSet<K, S>
|
3147
|
+
where
|
3148
|
+
K: crate::lib::std::cmp::Eq + crate::lib::std::hash::Hash,
|
3149
|
+
S: BuildHasher + Default,
|
3150
|
+
{
|
3151
|
+
#[inline(always)]
|
3152
|
+
fn initial(capacity: Option<usize>) -> Self {
|
3153
|
+
let h = S::default();
|
3154
|
+
match capacity {
|
3155
|
+
Some(capacity) => HashSet::with_capacity_and_hasher(clamp_capacity::<K>(capacity), h),
|
3156
|
+
None => HashSet::with_hasher(h),
|
3157
|
+
}
|
3158
|
+
}
|
3159
|
+
#[inline(always)]
|
3160
|
+
fn accumulate(&mut self, key: K) {
|
3161
|
+
self.insert(key);
|
3162
|
+
}
|
3163
|
+
}
|
3164
|
+
|
3165
|
+
#[cfg(feature = "alloc")]
|
3166
|
+
#[inline]
|
3167
|
+
pub(crate) fn clamp_capacity<T>(capacity: usize) -> usize {
|
3168
|
+
/// Don't pre-allocate more than 64KiB when calling `Vec::with_capacity`.
|
3169
|
+
///
|
3170
|
+
/// Pre-allocating memory is a nice optimization but count fields can't
|
3171
|
+
/// always be trusted. We should clamp initial capacities to some reasonable
|
3172
|
+
/// amount. This reduces the risk of a bogus count value triggering a panic
|
3173
|
+
/// due to an OOM error.
|
3174
|
+
///
|
3175
|
+
/// This does not affect correctness. `winnow` will always read the full number
|
3176
|
+
/// of elements regardless of the capacity cap.
|
3177
|
+
const MAX_INITIAL_CAPACITY_BYTES: usize = 65536;
|
3178
|
+
|
3179
|
+
let max_initial_capacity =
|
3180
|
+
MAX_INITIAL_CAPACITY_BYTES / crate::lib::std::mem::size_of::<T>().max(1);
|
3181
|
+
capacity.min(max_initial_capacity)
|
3182
|
+
}
|
3183
|
+
|
3184
|
+
/// Helper trait to convert numbers to usize.
|
3185
|
+
///
|
3186
|
+
/// By default, usize implements `From<u8>` and `From<u16>` but not
|
3187
|
+
/// `From<u32>` and `From<u64>` because that would be invalid on some
|
3188
|
+
/// platforms. This trait implements the conversion for platforms
|
3189
|
+
/// with 32 and 64 bits pointer platforms
|
3190
|
+
pub trait ToUsize {
|
3191
|
+
/// converts self to usize
|
3192
|
+
fn to_usize(&self) -> usize;
|
3193
|
+
}
|
3194
|
+
|
3195
|
+
impl ToUsize for u8 {
|
3196
|
+
#[inline(always)]
|
3197
|
+
fn to_usize(&self) -> usize {
|
3198
|
+
*self as usize
|
3199
|
+
}
|
3200
|
+
}
|
3201
|
+
|
3202
|
+
impl ToUsize for u16 {
|
3203
|
+
#[inline(always)]
|
3204
|
+
fn to_usize(&self) -> usize {
|
3205
|
+
*self as usize
|
3206
|
+
}
|
3207
|
+
}
|
3208
|
+
|
3209
|
+
impl ToUsize for usize {
|
3210
|
+
#[inline(always)]
|
3211
|
+
fn to_usize(&self) -> usize {
|
3212
|
+
*self
|
3213
|
+
}
|
3214
|
+
}
|
3215
|
+
|
3216
|
+
#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
|
3217
|
+
impl ToUsize for u32 {
|
3218
|
+
#[inline(always)]
|
3219
|
+
fn to_usize(&self) -> usize {
|
3220
|
+
*self as usize
|
3221
|
+
}
|
3222
|
+
}
|
3223
|
+
|
3224
|
+
#[cfg(target_pointer_width = "64")]
|
3225
|
+
impl ToUsize for u64 {
|
3226
|
+
#[inline(always)]
|
3227
|
+
fn to_usize(&self) -> usize {
|
3228
|
+
*self as usize
|
3229
|
+
}
|
3230
|
+
}
|
3231
|
+
|
3232
|
+
/// Transforms a token into a char for basic string parsing
|
3233
|
+
#[allow(clippy::len_without_is_empty)]
|
3234
|
+
#[allow(clippy::wrong_self_convention)]
|
3235
|
+
pub trait AsChar {
|
3236
|
+
/// Makes a char from self
|
3237
|
+
///
|
3238
|
+
/// # Example
|
3239
|
+
///
|
3240
|
+
/// ```
|
3241
|
+
/// use winnow::stream::AsChar as _;
|
3242
|
+
///
|
3243
|
+
/// assert_eq!('a'.as_char(), 'a');
|
3244
|
+
/// assert_eq!(u8::MAX.as_char(), std::char::from_u32(u8::MAX as u32).unwrap());
|
3245
|
+
/// ```
|
3246
|
+
fn as_char(self) -> char;
|
3247
|
+
|
3248
|
+
/// Tests that self is an alphabetic character
|
3249
|
+
///
|
3250
|
+
/// <div class="warning">
|
3251
|
+
///
|
3252
|
+
/// **Warning:** for `&str` it matches alphabetic
|
3253
|
+
/// characters outside of the 52 ASCII letters
|
3254
|
+
///
|
3255
|
+
/// </div>
|
3256
|
+
fn is_alpha(self) -> bool;
|
3257
|
+
|
3258
|
+
/// Tests that self is an alphabetic character
|
3259
|
+
/// or a decimal digit
|
3260
|
+
fn is_alphanum(self) -> bool;
|
3261
|
+
/// Tests that self is a decimal digit
|
3262
|
+
fn is_dec_digit(self) -> bool;
|
3263
|
+
/// Tests that self is an hex digit
|
3264
|
+
fn is_hex_digit(self) -> bool;
|
3265
|
+
/// Tests that self is an octal digit
|
3266
|
+
fn is_oct_digit(self) -> bool;
|
3267
|
+
/// Gets the len in bytes for self
|
3268
|
+
fn len(self) -> usize;
|
3269
|
+
/// Tests that self is ASCII space or tab
|
3270
|
+
fn is_space(self) -> bool;
|
3271
|
+
/// Tests if byte is ASCII newline: \n
|
3272
|
+
fn is_newline(self) -> bool;
|
3273
|
+
}
|
3274
|
+
|
3275
|
+
impl AsChar for u8 {
|
3276
|
+
#[inline(always)]
|
3277
|
+
fn as_char(self) -> char {
|
3278
|
+
self as char
|
3279
|
+
}
|
3280
|
+
#[inline]
|
3281
|
+
fn is_alpha(self) -> bool {
|
3282
|
+
matches!(self, 0x41..=0x5A | 0x61..=0x7A)
|
3283
|
+
}
|
3284
|
+
#[inline]
|
3285
|
+
fn is_alphanum(self) -> bool {
|
3286
|
+
self.is_alpha() || self.is_dec_digit()
|
3287
|
+
}
|
3288
|
+
#[inline]
|
3289
|
+
fn is_dec_digit(self) -> bool {
|
3290
|
+
matches!(self, 0x30..=0x39)
|
3291
|
+
}
|
3292
|
+
#[inline]
|
3293
|
+
fn is_hex_digit(self) -> bool {
|
3294
|
+
matches!(self, 0x30..=0x39 | 0x41..=0x46 | 0x61..=0x66)
|
3295
|
+
}
|
3296
|
+
#[inline]
|
3297
|
+
fn is_oct_digit(self) -> bool {
|
3298
|
+
matches!(self, 0x30..=0x37)
|
3299
|
+
}
|
3300
|
+
#[inline]
|
3301
|
+
fn len(self) -> usize {
|
3302
|
+
1
|
3303
|
+
}
|
3304
|
+
#[inline]
|
3305
|
+
fn is_space(self) -> bool {
|
3306
|
+
self == b' ' || self == b'\t'
|
3307
|
+
}
|
3308
|
+
#[inline]
|
3309
|
+
fn is_newline(self) -> bool {
|
3310
|
+
self == b'\n'
|
3311
|
+
}
|
3312
|
+
}
|
3313
|
+
|
3314
|
+
impl AsChar for &u8 {
|
3315
|
+
#[inline(always)]
|
3316
|
+
fn as_char(self) -> char {
|
3317
|
+
(*self).as_char()
|
3318
|
+
}
|
3319
|
+
#[inline(always)]
|
3320
|
+
fn is_alpha(self) -> bool {
|
3321
|
+
(*self).is_alpha()
|
3322
|
+
}
|
3323
|
+
#[inline(always)]
|
3324
|
+
fn is_alphanum(self) -> bool {
|
3325
|
+
(*self).is_alphanum()
|
3326
|
+
}
|
3327
|
+
#[inline(always)]
|
3328
|
+
fn is_dec_digit(self) -> bool {
|
3329
|
+
(*self).is_dec_digit()
|
3330
|
+
}
|
3331
|
+
#[inline(always)]
|
3332
|
+
fn is_hex_digit(self) -> bool {
|
3333
|
+
(*self).is_hex_digit()
|
3334
|
+
}
|
3335
|
+
#[inline(always)]
|
3336
|
+
fn is_oct_digit(self) -> bool {
|
3337
|
+
(*self).is_oct_digit()
|
3338
|
+
}
|
3339
|
+
#[inline(always)]
|
3340
|
+
fn len(self) -> usize {
|
3341
|
+
(*self).len()
|
3342
|
+
}
|
3343
|
+
#[inline(always)]
|
3344
|
+
fn is_space(self) -> bool {
|
3345
|
+
(*self).is_space()
|
3346
|
+
}
|
3347
|
+
#[inline(always)]
|
3348
|
+
fn is_newline(self) -> bool {
|
3349
|
+
(*self).is_newline()
|
3350
|
+
}
|
3351
|
+
}
|
3352
|
+
|
3353
|
+
impl AsChar for char {
|
3354
|
+
#[inline(always)]
|
3355
|
+
fn as_char(self) -> char {
|
3356
|
+
self
|
3357
|
+
}
|
3358
|
+
#[inline]
|
3359
|
+
fn is_alpha(self) -> bool {
|
3360
|
+
self.is_ascii_alphabetic()
|
3361
|
+
}
|
3362
|
+
#[inline]
|
3363
|
+
fn is_alphanum(self) -> bool {
|
3364
|
+
self.is_alpha() || self.is_dec_digit()
|
3365
|
+
}
|
3366
|
+
#[inline]
|
3367
|
+
fn is_dec_digit(self) -> bool {
|
3368
|
+
self.is_ascii_digit()
|
3369
|
+
}
|
3370
|
+
#[inline]
|
3371
|
+
fn is_hex_digit(self) -> bool {
|
3372
|
+
self.is_ascii_hexdigit()
|
3373
|
+
}
|
3374
|
+
#[inline]
|
3375
|
+
fn is_oct_digit(self) -> bool {
|
3376
|
+
self.is_digit(8)
|
3377
|
+
}
|
3378
|
+
#[inline]
|
3379
|
+
fn len(self) -> usize {
|
3380
|
+
self.len_utf8()
|
3381
|
+
}
|
3382
|
+
#[inline]
|
3383
|
+
fn is_space(self) -> bool {
|
3384
|
+
self == ' ' || self == '\t'
|
3385
|
+
}
|
3386
|
+
#[inline]
|
3387
|
+
fn is_newline(self) -> bool {
|
3388
|
+
self == '\n'
|
3389
|
+
}
|
3390
|
+
}
|
3391
|
+
|
3392
|
+
impl AsChar for &char {
|
3393
|
+
#[inline(always)]
|
3394
|
+
fn as_char(self) -> char {
|
3395
|
+
(*self).as_char()
|
3396
|
+
}
|
3397
|
+
#[inline(always)]
|
3398
|
+
fn is_alpha(self) -> bool {
|
3399
|
+
(*self).is_alpha()
|
3400
|
+
}
|
3401
|
+
#[inline(always)]
|
3402
|
+
fn is_alphanum(self) -> bool {
|
3403
|
+
(*self).is_alphanum()
|
3404
|
+
}
|
3405
|
+
#[inline(always)]
|
3406
|
+
fn is_dec_digit(self) -> bool {
|
3407
|
+
(*self).is_dec_digit()
|
3408
|
+
}
|
3409
|
+
#[inline(always)]
|
3410
|
+
fn is_hex_digit(self) -> bool {
|
3411
|
+
(*self).is_hex_digit()
|
3412
|
+
}
|
3413
|
+
#[inline(always)]
|
3414
|
+
fn is_oct_digit(self) -> bool {
|
3415
|
+
(*self).is_oct_digit()
|
3416
|
+
}
|
3417
|
+
#[inline(always)]
|
3418
|
+
fn len(self) -> usize {
|
3419
|
+
(*self).len()
|
3420
|
+
}
|
3421
|
+
#[inline(always)]
|
3422
|
+
fn is_space(self) -> bool {
|
3423
|
+
(*self).is_space()
|
3424
|
+
}
|
3425
|
+
#[inline(always)]
|
3426
|
+
fn is_newline(self) -> bool {
|
3427
|
+
(*self).is_newline()
|
3428
|
+
}
|
3429
|
+
}
|
3430
|
+
|
3431
|
+
/// Check if a token is in a set of possible tokens
|
3432
|
+
///
|
3433
|
+
/// While this can be implemented manually, you can also build up sets using:
|
3434
|
+
/// - `b'c'` and `'c'`
|
3435
|
+
/// - `b""`
|
3436
|
+
/// - `|c| true`
|
3437
|
+
/// - `b'a'..=b'z'`, `'a'..='z'` (etc for each [range type][std::ops])
|
3438
|
+
/// - `(set1, set2, ...)`
|
3439
|
+
///
|
3440
|
+
/// # Example
|
3441
|
+
///
|
3442
|
+
/// For example, you could implement `hex_digit0` as:
|
3443
|
+
/// ```
|
3444
|
+
/// # use winnow::prelude::*;
|
3445
|
+
/// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError};
|
3446
|
+
/// # use winnow::token::take_while;
|
3447
|
+
/// fn hex_digit1<'s>(input: &mut &'s str) -> PResult<&'s str, InputError<&'s str>> {
|
3448
|
+
/// take_while(1.., ('a'..='f', 'A'..='F', '0'..='9')).parse_next(input)
|
3449
|
+
/// }
|
3450
|
+
///
|
3451
|
+
/// assert_eq!(hex_digit1.parse_peek("21cZ"), Ok(("Z", "21c")));
|
3452
|
+
/// assert_eq!(hex_digit1.parse_peek("H2"), Err(ErrMode::Backtrack(InputError::new("H2", ErrorKind::Slice))));
|
3453
|
+
/// assert_eq!(hex_digit1.parse_peek(""), Err(ErrMode::Backtrack(InputError::new("", ErrorKind::Slice))));
|
3454
|
+
/// ```
|
3455
|
+
pub trait ContainsToken<T> {
|
3456
|
+
/// Returns true if self contains the token
|
3457
|
+
fn contains_token(&self, token: T) -> bool;
|
3458
|
+
}
|
3459
|
+
|
3460
|
+
impl ContainsToken<u8> for u8 {
|
3461
|
+
#[inline(always)]
|
3462
|
+
fn contains_token(&self, token: u8) -> bool {
|
3463
|
+
*self == token
|
3464
|
+
}
|
3465
|
+
}
|
3466
|
+
|
3467
|
+
impl ContainsToken<&u8> for u8 {
|
3468
|
+
#[inline(always)]
|
3469
|
+
fn contains_token(&self, token: &u8) -> bool {
|
3470
|
+
self.contains_token(*token)
|
3471
|
+
}
|
3472
|
+
}
|
3473
|
+
|
3474
|
+
impl ContainsToken<char> for u8 {
|
3475
|
+
#[inline(always)]
|
3476
|
+
fn contains_token(&self, token: char) -> bool {
|
3477
|
+
self.as_char() == token
|
3478
|
+
}
|
3479
|
+
}
|
3480
|
+
|
3481
|
+
impl ContainsToken<&char> for u8 {
|
3482
|
+
#[inline(always)]
|
3483
|
+
fn contains_token(&self, token: &char) -> bool {
|
3484
|
+
self.contains_token(*token)
|
3485
|
+
}
|
3486
|
+
}
|
3487
|
+
|
3488
|
+
impl<C: AsChar> ContainsToken<C> for char {
|
3489
|
+
#[inline(always)]
|
3490
|
+
fn contains_token(&self, token: C) -> bool {
|
3491
|
+
*self == token.as_char()
|
3492
|
+
}
|
3493
|
+
}
|
3494
|
+
|
3495
|
+
impl<C, F: Fn(C) -> bool> ContainsToken<C> for F {
|
3496
|
+
#[inline(always)]
|
3497
|
+
fn contains_token(&self, token: C) -> bool {
|
3498
|
+
self(token)
|
3499
|
+
}
|
3500
|
+
}
|
3501
|
+
|
3502
|
+
impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::Range<C2> {
|
3503
|
+
#[inline(always)]
|
3504
|
+
fn contains_token(&self, token: C1) -> bool {
|
3505
|
+
let start = self.start.clone().as_char();
|
3506
|
+
let end = self.end.clone().as_char();
|
3507
|
+
(start..end).contains(&token.as_char())
|
3508
|
+
}
|
3509
|
+
}
|
3510
|
+
|
3511
|
+
impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1>
|
3512
|
+
for crate::lib::std::ops::RangeInclusive<C2>
|
3513
|
+
{
|
3514
|
+
#[inline(always)]
|
3515
|
+
fn contains_token(&self, token: C1) -> bool {
|
3516
|
+
let start = self.start().clone().as_char();
|
3517
|
+
let end = self.end().clone().as_char();
|
3518
|
+
(start..=end).contains(&token.as_char())
|
3519
|
+
}
|
3520
|
+
}
|
3521
|
+
|
3522
|
+
impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::RangeFrom<C2> {
|
3523
|
+
#[inline(always)]
|
3524
|
+
fn contains_token(&self, token: C1) -> bool {
|
3525
|
+
let start = self.start.clone().as_char();
|
3526
|
+
(start..).contains(&token.as_char())
|
3527
|
+
}
|
3528
|
+
}
|
3529
|
+
|
3530
|
+
impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1> for crate::lib::std::ops::RangeTo<C2> {
|
3531
|
+
#[inline(always)]
|
3532
|
+
fn contains_token(&self, token: C1) -> bool {
|
3533
|
+
let end = self.end.clone().as_char();
|
3534
|
+
(..end).contains(&token.as_char())
|
3535
|
+
}
|
3536
|
+
}
|
3537
|
+
|
3538
|
+
impl<C1: AsChar, C2: AsChar + Clone> ContainsToken<C1>
|
3539
|
+
for crate::lib::std::ops::RangeToInclusive<C2>
|
3540
|
+
{
|
3541
|
+
#[inline(always)]
|
3542
|
+
fn contains_token(&self, token: C1) -> bool {
|
3543
|
+
let end = self.end.clone().as_char();
|
3544
|
+
(..=end).contains(&token.as_char())
|
3545
|
+
}
|
3546
|
+
}
|
3547
|
+
|
3548
|
+
impl<C1: AsChar> ContainsToken<C1> for crate::lib::std::ops::RangeFull {
|
3549
|
+
#[inline(always)]
|
3550
|
+
fn contains_token(&self, _token: C1) -> bool {
|
3551
|
+
true
|
3552
|
+
}
|
3553
|
+
}
|
3554
|
+
|
3555
|
+
impl<C: AsChar> ContainsToken<C> for &'_ [u8] {
|
3556
|
+
#[inline]
|
3557
|
+
fn contains_token(&self, token: C) -> bool {
|
3558
|
+
let token = token.as_char();
|
3559
|
+
self.iter().any(|t| t.as_char() == token)
|
3560
|
+
}
|
3561
|
+
}
|
3562
|
+
|
3563
|
+
impl<C: AsChar> ContainsToken<C> for &'_ [char] {
|
3564
|
+
#[inline]
|
3565
|
+
fn contains_token(&self, token: C) -> bool {
|
3566
|
+
let token = token.as_char();
|
3567
|
+
self.iter().any(|t| *t == token)
|
3568
|
+
}
|
3569
|
+
}
|
3570
|
+
|
3571
|
+
impl<const LEN: usize, C: AsChar> ContainsToken<C> for &'_ [u8; LEN] {
|
3572
|
+
#[inline]
|
3573
|
+
fn contains_token(&self, token: C) -> bool {
|
3574
|
+
let token = token.as_char();
|
3575
|
+
self.iter().any(|t| t.as_char() == token)
|
3576
|
+
}
|
3577
|
+
}
|
3578
|
+
|
3579
|
+
impl<const LEN: usize, C: AsChar> ContainsToken<C> for &'_ [char; LEN] {
|
3580
|
+
#[inline]
|
3581
|
+
fn contains_token(&self, token: C) -> bool {
|
3582
|
+
let token = token.as_char();
|
3583
|
+
self.iter().any(|t| *t == token)
|
3584
|
+
}
|
3585
|
+
}
|
3586
|
+
|
3587
|
+
impl<const LEN: usize, C: AsChar> ContainsToken<C> for [u8; LEN] {
|
3588
|
+
#[inline]
|
3589
|
+
fn contains_token(&self, token: C) -> bool {
|
3590
|
+
let token = token.as_char();
|
3591
|
+
self.iter().any(|t| t.as_char() == token)
|
3592
|
+
}
|
3593
|
+
}
|
3594
|
+
|
3595
|
+
impl<const LEN: usize, C: AsChar> ContainsToken<C> for [char; LEN] {
|
3596
|
+
#[inline]
|
3597
|
+
fn contains_token(&self, token: C) -> bool {
|
3598
|
+
let token = token.as_char();
|
3599
|
+
self.iter().any(|t| *t == token)
|
3600
|
+
}
|
3601
|
+
}
|
3602
|
+
|
3603
|
+
impl<T> ContainsToken<T> for () {
|
3604
|
+
#[inline(always)]
|
3605
|
+
fn contains_token(&self, _token: T) -> bool {
|
3606
|
+
false
|
3607
|
+
}
|
3608
|
+
}
|
3609
|
+
|
3610
|
+
macro_rules! impl_contains_token_for_tuple {
|
3611
|
+
($($haystack:ident),+) => (
|
3612
|
+
#[allow(non_snake_case)]
|
3613
|
+
impl<T, $($haystack),+> ContainsToken<T> for ($($haystack),+,)
|
3614
|
+
where
|
3615
|
+
T: Clone,
|
3616
|
+
$($haystack: ContainsToken<T>),+
|
3617
|
+
{
|
3618
|
+
#[inline]
|
3619
|
+
fn contains_token(&self, token: T) -> bool {
|
3620
|
+
let ($(ref $haystack),+,) = *self;
|
3621
|
+
$($haystack.contains_token(token.clone()) || )+ false
|
3622
|
+
}
|
3623
|
+
}
|
3624
|
+
)
|
3625
|
+
}
|
3626
|
+
|
3627
|
+
macro_rules! impl_contains_token_for_tuples {
|
3628
|
+
($haystack1:ident, $($haystack:ident),+) => {
|
3629
|
+
impl_contains_token_for_tuples!(__impl $haystack1; $($haystack),+);
|
3630
|
+
};
|
3631
|
+
(__impl $($haystack:ident),+; $haystack1:ident $(,$haystack2:ident)*) => {
|
3632
|
+
impl_contains_token_for_tuple!($($haystack),+);
|
3633
|
+
impl_contains_token_for_tuples!(__impl $($haystack),+, $haystack1; $($haystack2),*);
|
3634
|
+
};
|
3635
|
+
(__impl $($haystack:ident),+;) => {
|
3636
|
+
impl_contains_token_for_tuple!($($haystack),+);
|
3637
|
+
}
|
3638
|
+
}
|
3639
|
+
|
3640
|
+
impl_contains_token_for_tuples!(
|
3641
|
+
F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21
|
3642
|
+
);
|
3643
|
+
|
3644
|
+
#[cfg(feature = "simd")]
|
3645
|
+
#[inline(always)]
|
3646
|
+
fn memchr(token: u8, slice: &[u8]) -> Option<usize> {
|
3647
|
+
memchr::memchr(token, slice)
|
3648
|
+
}
|
3649
|
+
|
3650
|
+
#[cfg(feature = "simd")]
|
3651
|
+
#[inline(always)]
|
3652
|
+
fn memchr2(token: (u8, u8), slice: &[u8]) -> Option<usize> {
|
3653
|
+
memchr::memchr2(token.0, token.1, slice)
|
3654
|
+
}
|
3655
|
+
|
3656
|
+
#[cfg(feature = "simd")]
|
3657
|
+
#[inline(always)]
|
3658
|
+
fn memchr3(token: (u8, u8, u8), slice: &[u8]) -> Option<usize> {
|
3659
|
+
memchr::memchr3(token.0, token.1, token.2, slice)
|
3660
|
+
}
|
3661
|
+
|
3662
|
+
#[cfg(not(feature = "simd"))]
|
3663
|
+
#[inline(always)]
|
3664
|
+
fn memchr(token: u8, slice: &[u8]) -> Option<usize> {
|
3665
|
+
slice.iter().position(|t| *t == token)
|
3666
|
+
}
|
3667
|
+
|
3668
|
+
#[cfg(not(feature = "simd"))]
|
3669
|
+
#[inline(always)]
|
3670
|
+
fn memchr2(token: (u8, u8), slice: &[u8]) -> Option<usize> {
|
3671
|
+
slice.iter().position(|t| *t == token.0 || *t == token.1)
|
3672
|
+
}
|
3673
|
+
|
3674
|
+
#[cfg(not(feature = "simd"))]
|
3675
|
+
#[inline(always)]
|
3676
|
+
fn memchr3(token: (u8, u8, u8), slice: &[u8]) -> Option<usize> {
|
3677
|
+
slice
|
3678
|
+
.iter()
|
3679
|
+
.position(|t| *t == token.0 || *t == token.1 || *t == token.2)
|
3680
|
+
}
|
3681
|
+
|
3682
|
+
#[inline(always)]
|
3683
|
+
fn memmem(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
|
3684
|
+
match literal.len() {
|
3685
|
+
0 => Some(0..0),
|
3686
|
+
1 => memchr(literal[0], slice).map(|i| i..i + 1),
|
3687
|
+
_ => memmem_(slice, literal),
|
3688
|
+
}
|
3689
|
+
}
|
3690
|
+
|
3691
|
+
#[inline(always)]
|
3692
|
+
fn memmem2(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
|
3693
|
+
match (literal.0.len(), literal.1.len()) {
|
3694
|
+
(0, _) | (_, 0) => Some(0..0),
|
3695
|
+
(1, 1) => memchr2((literal.0[0], literal.1[0]), slice).map(|i| i..i + 1),
|
3696
|
+
_ => memmem2_(slice, literal),
|
3697
|
+
}
|
3698
|
+
}
|
3699
|
+
|
3700
|
+
#[inline(always)]
|
3701
|
+
fn memmem3(
|
3702
|
+
slice: &[u8],
|
3703
|
+
literal: (&[u8], &[u8], &[u8]),
|
3704
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
3705
|
+
match (literal.0.len(), literal.1.len(), literal.2.len()) {
|
3706
|
+
(0, _, _) | (_, 0, _) | (_, _, 0) => Some(0..0),
|
3707
|
+
(1, 1, 1) => memchr3((literal.0[0], literal.1[0], literal.2[0]), slice).map(|i| i..i + 1),
|
3708
|
+
_ => memmem3_(slice, literal),
|
3709
|
+
}
|
3710
|
+
}
|
3711
|
+
|
3712
|
+
#[cfg(feature = "simd")]
|
3713
|
+
#[inline(always)]
|
3714
|
+
fn memmem_(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
|
3715
|
+
let &prefix = match literal.first() {
|
3716
|
+
Some(x) => x,
|
3717
|
+
None => return Some(0..0),
|
3718
|
+
};
|
3719
|
+
#[allow(clippy::manual_find)] // faster this way
|
3720
|
+
for i in memchr::memchr_iter(prefix, slice) {
|
3721
|
+
if slice[i..].starts_with(literal) {
|
3722
|
+
let i_end = i + literal.len();
|
3723
|
+
return Some(i..i_end);
|
3724
|
+
}
|
3725
|
+
}
|
3726
|
+
None
|
3727
|
+
}
|
3728
|
+
|
3729
|
+
#[cfg(feature = "simd")]
|
3730
|
+
fn memmem2_(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
|
3731
|
+
let prefix = match (literal.0.first(), literal.1.first()) {
|
3732
|
+
(Some(&a), Some(&b)) => (a, b),
|
3733
|
+
_ => return Some(0..0),
|
3734
|
+
};
|
3735
|
+
#[allow(clippy::manual_find)] // faster this way
|
3736
|
+
for i in memchr::memchr2_iter(prefix.0, prefix.1, slice) {
|
3737
|
+
let subslice = &slice[i..];
|
3738
|
+
if subslice.starts_with(literal.0) {
|
3739
|
+
let i_end = i + literal.0.len();
|
3740
|
+
return Some(i..i_end);
|
3741
|
+
}
|
3742
|
+
if subslice.starts_with(literal.1) {
|
3743
|
+
let i_end = i + literal.1.len();
|
3744
|
+
return Some(i..i_end);
|
3745
|
+
}
|
3746
|
+
}
|
3747
|
+
None
|
3748
|
+
}
|
3749
|
+
|
3750
|
+
#[cfg(feature = "simd")]
|
3751
|
+
fn memmem3_(
|
3752
|
+
slice: &[u8],
|
3753
|
+
literal: (&[u8], &[u8], &[u8]),
|
3754
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
3755
|
+
let prefix = match (literal.0.first(), literal.1.first(), literal.2.first()) {
|
3756
|
+
(Some(&a), Some(&b), Some(&c)) => (a, b, c),
|
3757
|
+
_ => return Some(0..0),
|
3758
|
+
};
|
3759
|
+
#[allow(clippy::manual_find)] // faster this way
|
3760
|
+
for i in memchr::memchr3_iter(prefix.0, prefix.1, prefix.2, slice) {
|
3761
|
+
let subslice = &slice[i..];
|
3762
|
+
if subslice.starts_with(literal.0) {
|
3763
|
+
let i_end = i + literal.0.len();
|
3764
|
+
return Some(i..i_end);
|
3765
|
+
}
|
3766
|
+
if subslice.starts_with(literal.1) {
|
3767
|
+
let i_end = i + literal.1.len();
|
3768
|
+
return Some(i..i_end);
|
3769
|
+
}
|
3770
|
+
if subslice.starts_with(literal.2) {
|
3771
|
+
let i_end = i + literal.2.len();
|
3772
|
+
return Some(i..i_end);
|
3773
|
+
}
|
3774
|
+
}
|
3775
|
+
None
|
3776
|
+
}
|
3777
|
+
|
3778
|
+
#[cfg(not(feature = "simd"))]
|
3779
|
+
fn memmem_(slice: &[u8], literal: &[u8]) -> Option<crate::lib::std::ops::Range<usize>> {
|
3780
|
+
for i in 0..slice.len() {
|
3781
|
+
let subslice = &slice[i..];
|
3782
|
+
if subslice.starts_with(literal) {
|
3783
|
+
let i_end = i + literal.len();
|
3784
|
+
return Some(i..i_end);
|
3785
|
+
}
|
3786
|
+
}
|
3787
|
+
None
|
3788
|
+
}
|
3789
|
+
|
3790
|
+
#[cfg(not(feature = "simd"))]
|
3791
|
+
fn memmem2_(slice: &[u8], literal: (&[u8], &[u8])) -> Option<crate::lib::std::ops::Range<usize>> {
|
3792
|
+
for i in 0..slice.len() {
|
3793
|
+
let subslice = &slice[i..];
|
3794
|
+
if subslice.starts_with(literal.0) {
|
3795
|
+
let i_end = i + literal.0.len();
|
3796
|
+
return Some(i..i_end);
|
3797
|
+
}
|
3798
|
+
if subslice.starts_with(literal.1) {
|
3799
|
+
let i_end = i + literal.1.len();
|
3800
|
+
return Some(i..i_end);
|
3801
|
+
}
|
3802
|
+
}
|
3803
|
+
None
|
3804
|
+
}
|
3805
|
+
|
3806
|
+
#[cfg(not(feature = "simd"))]
|
3807
|
+
fn memmem3_(
|
3808
|
+
slice: &[u8],
|
3809
|
+
literal: (&[u8], &[u8], &[u8]),
|
3810
|
+
) -> Option<crate::lib::std::ops::Range<usize>> {
|
3811
|
+
for i in 0..slice.len() {
|
3812
|
+
let subslice = &slice[i..];
|
3813
|
+
if subslice.starts_with(literal.0) {
|
3814
|
+
let i_end = i + literal.0.len();
|
3815
|
+
return Some(i..i_end);
|
3816
|
+
}
|
3817
|
+
if subslice.starts_with(literal.1) {
|
3818
|
+
let i_end = i + literal.1.len();
|
3819
|
+
return Some(i..i_end);
|
3820
|
+
}
|
3821
|
+
if subslice.starts_with(literal.2) {
|
3822
|
+
let i_end = i + literal.2.len();
|
3823
|
+
return Some(i..i_end);
|
3824
|
+
}
|
3825
|
+
}
|
3826
|
+
None
|
3827
|
+
}
|