wasmtime 28.0.0 → 29.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,4216 @@
|
|
1
|
+
//! A library for [Cargo build scripts](https://doc.rust-lang.org/cargo/reference/build-scripts.html)
|
2
|
+
//! to compile a set of C/C++/assembly/CUDA files into a static archive for Cargo
|
3
|
+
//! to link into the crate being built. This crate does not compile code itself;
|
4
|
+
//! it calls out to the default compiler for the platform. This crate will
|
5
|
+
//! automatically detect situations such as cross compilation and
|
6
|
+
//! [various environment variables](#external-configuration-via-environment-variables) and will build code appropriately.
|
7
|
+
//!
|
8
|
+
//! # Example
|
9
|
+
//!
|
10
|
+
//! First, you'll want to both add a build script for your crate (`build.rs`) and
|
11
|
+
//! also add this crate to your `Cargo.toml` via:
|
12
|
+
//!
|
13
|
+
//! ```toml
|
14
|
+
//! [build-dependencies]
|
15
|
+
//! cc = "1.0"
|
16
|
+
//! ```
|
17
|
+
//!
|
18
|
+
//! Next up, you'll want to write a build script like so:
|
19
|
+
//!
|
20
|
+
//! ```rust,no_run
|
21
|
+
//! // build.rs
|
22
|
+
//! cc::Build::new()
|
23
|
+
//! .file("foo.c")
|
24
|
+
//! .file("bar.c")
|
25
|
+
//! .compile("foo");
|
26
|
+
//! ```
|
27
|
+
//!
|
28
|
+
//! And that's it! Running `cargo build` should take care of the rest and your Rust
|
29
|
+
//! application will now have the C files `foo.c` and `bar.c` compiled into a file
|
30
|
+
//! named `libfoo.a`. If the C files contain
|
31
|
+
//!
|
32
|
+
//! ```c
|
33
|
+
//! void foo_function(void) { ... }
|
34
|
+
//! ```
|
35
|
+
//!
|
36
|
+
//! and
|
37
|
+
//!
|
38
|
+
//! ```c
|
39
|
+
//! int32_t bar_function(int32_t x) { ... }
|
40
|
+
//! ```
|
41
|
+
//!
|
42
|
+
//! you can call them from Rust by declaring them in
|
43
|
+
//! your Rust code like so:
|
44
|
+
//!
|
45
|
+
//! ```rust,no_run
|
46
|
+
//! extern "C" {
|
47
|
+
//! fn foo_function();
|
48
|
+
//! fn bar_function(x: i32) -> i32;
|
49
|
+
//! }
|
50
|
+
//!
|
51
|
+
//! pub fn call() {
|
52
|
+
//! unsafe {
|
53
|
+
//! foo_function();
|
54
|
+
//! bar_function(42);
|
55
|
+
//! }
|
56
|
+
//! }
|
57
|
+
//!
|
58
|
+
//! fn main() {
|
59
|
+
//! call();
|
60
|
+
//! }
|
61
|
+
//! ```
|
62
|
+
//!
|
63
|
+
//! See [the Rustonomicon](https://doc.rust-lang.org/nomicon/ffi.html) for more details.
|
64
|
+
//!
|
65
|
+
//! # External configuration via environment variables
|
66
|
+
//!
|
67
|
+
//! To control the programs and flags used for building, the builder can set a
|
68
|
+
//! number of different environment variables.
|
69
|
+
//!
|
70
|
+
//! * `CFLAGS` - a series of space separated flags passed to compilers. Note that
|
71
|
+
//! individual flags cannot currently contain spaces, so doing
|
72
|
+
//! something like: `-L=foo\ bar` is not possible.
|
73
|
+
//! * `CC` - the actual C compiler used. Note that this is used as an exact
|
74
|
+
//! executable name, so (for example) no extra flags can be passed inside
|
75
|
+
//! this variable, and the builder must ensure that there aren't any
|
76
|
+
//! trailing spaces. This compiler must understand the `-c` flag. For
|
77
|
+
//! certain `TARGET`s, it also is assumed to know about other flags (most
|
78
|
+
//! common is `-fPIC`).
|
79
|
+
//! * `AR` - the `ar` (archiver) executable to use to build the static library.
|
80
|
+
//! * `CRATE_CC_NO_DEFAULTS` - the default compiler flags may cause conflicts in
|
81
|
+
//! some cross compiling scenarios. Setting this variable
|
82
|
+
//! will disable the generation of default compiler
|
83
|
+
//! flags.
|
84
|
+
//! * `CC_ENABLE_DEBUG_OUTPUT` - if set, compiler command invocations and exit codes will
|
85
|
+
//! be logged to stdout. This is useful for debugging build script issues, but can be
|
86
|
+
//! overly verbose for normal use.
|
87
|
+
//! * `CC_SHELL_ESCAPED_FLAGS` - if set, `*FLAGS` will be parsed as if they were shell
|
88
|
+
//! arguments (similar to `make` and `cmake`) rather than splitting them on each space.
|
89
|
+
//! For example, with `CFLAGS='a "b c"'`, the compiler will be invoked with 2 arguments -
|
90
|
+
//! `a` and `b c` - rather than 3: `a`, `"b` and `c"`.
|
91
|
+
//! * `CXX...` - see [C++ Support](#c-support).
|
92
|
+
//! * `CC_FORCE_DISABLE` - If set, `cc` will never run any [`Command`]s, and methods that
|
93
|
+
//! would return an [`Error`]. This is intended for use by third-party build systems
|
94
|
+
//! which want to be absolutely sure that they are in control of building all
|
95
|
+
//! dependencies. Note that operations that return [`Tool`]s such as
|
96
|
+
//! [`Build::get_compiler`] may produce less accurate results as in some cases `cc` runs
|
97
|
+
//! commands in order to locate compilers. Additionally, this does nothing to prevent
|
98
|
+
//! users from running [`Tool::to_command`] and executing the [`Command`] themselves.//!
|
99
|
+
//!
|
100
|
+
//! Furthermore, projects using this crate may specify custom environment variables
|
101
|
+
//! to be inspected, for example via the `Build::try_flags_from_environment`
|
102
|
+
//! function. Consult the project’s own documentation or its use of the `cc` crate
|
103
|
+
//! for any additional variables it may use.
|
104
|
+
//!
|
105
|
+
//! Each of these variables can also be supplied with certain prefixes and suffixes,
|
106
|
+
//! in the following prioritized order:
|
107
|
+
//!
|
108
|
+
//! 1. `<var>_<target>` - for example, `CC_x86_64-unknown-linux-gnu`
|
109
|
+
//! 2. `<var>_<target_with_underscores>` - for example, `CC_x86_64_unknown_linux_gnu`
|
110
|
+
//! 3. `<build-kind>_<var>` - for example, `HOST_CC` or `TARGET_CFLAGS`
|
111
|
+
//! 4. `<var>` - a plain `CC`, `AR` as above.
|
112
|
+
//!
|
113
|
+
//! If none of these variables exist, cc-rs uses built-in defaults.
|
114
|
+
//!
|
115
|
+
//! In addition to the above optional environment variables, `cc-rs` has some
|
116
|
+
//! functions with hard requirements on some variables supplied by [cargo's
|
117
|
+
//! build-script driver][cargo] that it has the `TARGET`, `OUT_DIR`, `OPT_LEVEL`,
|
118
|
+
//! and `HOST` variables.
|
119
|
+
//!
|
120
|
+
//! [cargo]: https://doc.rust-lang.org/cargo/reference/build-scripts.html#inputs-to-the-build-script
|
121
|
+
//!
|
122
|
+
//! # Optional features
|
123
|
+
//!
|
124
|
+
//! ## Parallel
|
125
|
+
//!
|
126
|
+
//! Currently cc-rs supports parallel compilation (think `make -jN`) but this
|
127
|
+
//! feature is turned off by default. To enable cc-rs to compile C/C++ in parallel,
|
128
|
+
//! you can change your dependency to:
|
129
|
+
//!
|
130
|
+
//! ```toml
|
131
|
+
//! [build-dependencies]
|
132
|
+
//! cc = { version = "1.0", features = ["parallel"] }
|
133
|
+
//! ```
|
134
|
+
//!
|
135
|
+
//! By default cc-rs will limit parallelism to `$NUM_JOBS`, or if not present it
|
136
|
+
//! will limit it to the number of cpus on the machine. If you are using cargo,
|
137
|
+
//! use `-jN` option of `build`, `test` and `run` commands as `$NUM_JOBS`
|
138
|
+
//! is supplied by cargo.
|
139
|
+
//!
|
140
|
+
//! # Compile-time Requirements
|
141
|
+
//!
|
142
|
+
//! To work properly this crate needs access to a C compiler when the build script
|
143
|
+
//! is being run. This crate does not ship a C compiler with it. The compiler
|
144
|
+
//! required varies per platform, but there are three broad categories:
|
145
|
+
//!
|
146
|
+
//! * Unix platforms require `cc` to be the C compiler. This can be found by
|
147
|
+
//! installing cc/clang on Linux distributions and Xcode on macOS, for example.
|
148
|
+
//! * Windows platforms targeting MSVC (e.g. your target triple ends in `-msvc`)
|
149
|
+
//! require Visual Studio to be installed. `cc-rs` attempts to locate it, and
|
150
|
+
//! if it fails, `cl.exe` is expected to be available in `PATH`. This can be
|
151
|
+
//! set up by running the appropriate developer tools shell.
|
152
|
+
//! * Windows platforms targeting MinGW (e.g. your target triple ends in `-gnu`)
|
153
|
+
//! require `cc` to be available in `PATH`. We recommend the
|
154
|
+
//! [MinGW-w64](https://www.mingw-w64.org/) distribution.
|
155
|
+
//! You may also acquire it via
|
156
|
+
//! [MSYS2](https://www.msys2.org/), as explained [here][msys2-help]. Make sure
|
157
|
+
//! to install the appropriate architecture corresponding to your installation of
|
158
|
+
//! rustc. GCC from older [MinGW](http://www.mingw.org/) project is compatible
|
159
|
+
//! only with 32-bit rust compiler.
|
160
|
+
//!
|
161
|
+
//! [msys2-help]: https://github.com/rust-lang/rust/blob/master/INSTALL.md#building-on-windows
|
162
|
+
//!
|
163
|
+
//! # C++ support
|
164
|
+
//!
|
165
|
+
//! `cc-rs` supports C++ libraries compilation by using the `cpp` method on
|
166
|
+
//! `Build`:
|
167
|
+
//!
|
168
|
+
//! ```rust,no_run
|
169
|
+
//! cc::Build::new()
|
170
|
+
//! .cpp(true) // Switch to C++ library compilation.
|
171
|
+
//! .file("foo.cpp")
|
172
|
+
//! .compile("foo");
|
173
|
+
//! ```
|
174
|
+
//!
|
175
|
+
//! For C++ libraries, the `CXX` and `CXXFLAGS` environment variables are used instead of `CC` and `CFLAGS`.
|
176
|
+
//!
|
177
|
+
//! The C++ standard library may be linked to the crate target. By default it's `libc++` for macOS, FreeBSD, and OpenBSD, `libc++_shared` for Android, nothing for MSVC, and `libstdc++` for anything else. It can be changed in one of two ways:
|
178
|
+
//!
|
179
|
+
//! 1. by using the `cpp_link_stdlib` method on `Build`:
|
180
|
+
//! ```rust,no_run
|
181
|
+
//! cc::Build::new()
|
182
|
+
//! .cpp(true)
|
183
|
+
//! .file("foo.cpp")
|
184
|
+
//! .cpp_link_stdlib("stdc++") // use libstdc++
|
185
|
+
//! .compile("foo");
|
186
|
+
//! ```
|
187
|
+
//! 2. by setting the `CXXSTDLIB` environment variable.
|
188
|
+
//!
|
189
|
+
//! In particular, for Android you may want to [use `c++_static` if you have at most one shared library](https://developer.android.com/ndk/guides/cpp-support).
|
190
|
+
//!
|
191
|
+
//! Remember that C++ does name mangling so `extern "C"` might be required to enable Rust linker to find your functions.
|
192
|
+
//!
|
193
|
+
//! # CUDA C++ support
|
194
|
+
//!
|
195
|
+
//! `cc-rs` also supports compiling CUDA C++ libraries by using the `cuda` method
|
196
|
+
//! on `Build`:
|
197
|
+
//!
|
198
|
+
//! ```rust,no_run
|
199
|
+
//! cc::Build::new()
|
200
|
+
//! // Switch to CUDA C++ library compilation using NVCC.
|
201
|
+
//! .cuda(true)
|
202
|
+
//! .cudart("static")
|
203
|
+
//! // Generate code for Maxwell (GTX 970, 980, 980 Ti, Titan X).
|
204
|
+
//! .flag("-gencode").flag("arch=compute_52,code=sm_52")
|
205
|
+
//! // Generate code for Maxwell (Jetson TX1).
|
206
|
+
//! .flag("-gencode").flag("arch=compute_53,code=sm_53")
|
207
|
+
//! // Generate code for Pascal (GTX 1070, 1080, 1080 Ti, Titan Xp).
|
208
|
+
//! .flag("-gencode").flag("arch=compute_61,code=sm_61")
|
209
|
+
//! // Generate code for Pascal (Tesla P100).
|
210
|
+
//! .flag("-gencode").flag("arch=compute_60,code=sm_60")
|
211
|
+
//! // Generate code for Pascal (Jetson TX2).
|
212
|
+
//! .flag("-gencode").flag("arch=compute_62,code=sm_62")
|
213
|
+
//! // Generate code in parallel
|
214
|
+
//! .flag("-t0")
|
215
|
+
//! .file("bar.cu")
|
216
|
+
//! .compile("bar");
|
217
|
+
//! ```
|
218
|
+
|
219
|
+
#![doc(html_root_url = "https://docs.rs/cc/1.0")]
|
220
|
+
#![deny(warnings)]
|
221
|
+
#![deny(missing_docs)]
|
222
|
+
#![deny(clippy::disallowed_methods)]
|
223
|
+
#![warn(clippy::doc_markdown)]
|
224
|
+
|
225
|
+
use std::borrow::Cow;
|
226
|
+
use std::collections::HashMap;
|
227
|
+
use std::env;
|
228
|
+
use std::ffi::{OsStr, OsString};
|
229
|
+
use std::fmt::{self, Display};
|
230
|
+
use std::fs;
|
231
|
+
use std::io::{self, Write};
|
232
|
+
use std::path::{Component, Path, PathBuf};
|
233
|
+
#[cfg(feature = "parallel")]
|
234
|
+
use std::process::Child;
|
235
|
+
use std::process::Command;
|
236
|
+
use std::sync::{
|
237
|
+
atomic::{AtomicU8, Ordering::Relaxed},
|
238
|
+
Arc, RwLock,
|
239
|
+
};
|
240
|
+
|
241
|
+
use shlex::Shlex;
|
242
|
+
|
243
|
+
#[cfg(feature = "parallel")]
|
244
|
+
mod parallel;
|
245
|
+
mod target;
|
246
|
+
mod windows;
|
247
|
+
use self::target::TargetInfo;
|
248
|
+
// Regardless of whether this should be in this crate's public API,
|
249
|
+
// it has been since 2015, so don't break it.
|
250
|
+
pub use windows::find_tools as windows_registry;
|
251
|
+
|
252
|
+
mod command_helpers;
|
253
|
+
use command_helpers::*;
|
254
|
+
|
255
|
+
mod tool;
|
256
|
+
pub use tool::Tool;
|
257
|
+
use tool::ToolFamily;
|
258
|
+
|
259
|
+
mod tempfile;
|
260
|
+
|
261
|
+
mod utilities;
|
262
|
+
use utilities::*;
|
263
|
+
|
264
|
+
mod flags;
|
265
|
+
use flags::*;
|
266
|
+
|
267
|
+
#[derive(Debug, Eq, PartialEq, Hash)]
|
268
|
+
struct CompilerFlag {
|
269
|
+
compiler: Box<Path>,
|
270
|
+
flag: Box<OsStr>,
|
271
|
+
}
|
272
|
+
|
273
|
+
type Env = Option<Arc<OsStr>>;
|
274
|
+
|
275
|
+
#[derive(Debug, Default)]
|
276
|
+
struct BuildCache {
|
277
|
+
env_cache: RwLock<HashMap<Box<str>, Env>>,
|
278
|
+
apple_sdk_root_cache: RwLock<HashMap<Box<str>, Arc<OsStr>>>,
|
279
|
+
apple_versions_cache: RwLock<HashMap<Box<str>, Arc<str>>>,
|
280
|
+
cached_compiler_family: RwLock<HashMap<Box<Path>, ToolFamily>>,
|
281
|
+
known_flag_support_status_cache: RwLock<HashMap<CompilerFlag, bool>>,
|
282
|
+
target_info_parser: target::TargetInfoParser,
|
283
|
+
}
|
284
|
+
|
285
|
+
/// A builder for compilation of a native library.
|
286
|
+
///
|
287
|
+
/// A `Build` is the main type of the `cc` crate and is used to control all the
|
288
|
+
/// various configuration options and such of a compile. You'll find more
|
289
|
+
/// documentation on each method itself.
|
290
|
+
#[derive(Clone, Debug)]
|
291
|
+
pub struct Build {
|
292
|
+
include_directories: Vec<Arc<Path>>,
|
293
|
+
definitions: Vec<(Arc<str>, Option<Arc<str>>)>,
|
294
|
+
objects: Vec<Arc<Path>>,
|
295
|
+
flags: Vec<Arc<OsStr>>,
|
296
|
+
flags_supported: Vec<Arc<OsStr>>,
|
297
|
+
ar_flags: Vec<Arc<OsStr>>,
|
298
|
+
asm_flags: Vec<Arc<OsStr>>,
|
299
|
+
no_default_flags: bool,
|
300
|
+
files: Vec<Arc<Path>>,
|
301
|
+
cpp: bool,
|
302
|
+
cpp_link_stdlib: Option<Option<Arc<str>>>,
|
303
|
+
cpp_set_stdlib: Option<Arc<str>>,
|
304
|
+
cuda: bool,
|
305
|
+
cudart: Option<Arc<str>>,
|
306
|
+
ccbin: bool,
|
307
|
+
std: Option<Arc<str>>,
|
308
|
+
target: Option<Arc<str>>,
|
309
|
+
/// The host compiler.
|
310
|
+
///
|
311
|
+
/// Try to not access this directly, and instead prefer `cfg!(...)`.
|
312
|
+
host: Option<Arc<str>>,
|
313
|
+
out_dir: Option<Arc<Path>>,
|
314
|
+
opt_level: Option<Arc<str>>,
|
315
|
+
debug: Option<bool>,
|
316
|
+
force_frame_pointer: Option<bool>,
|
317
|
+
env: Vec<(Arc<OsStr>, Arc<OsStr>)>,
|
318
|
+
compiler: Option<Arc<Path>>,
|
319
|
+
archiver: Option<Arc<Path>>,
|
320
|
+
ranlib: Option<Arc<Path>>,
|
321
|
+
cargo_output: CargoOutput,
|
322
|
+
link_lib_modifiers: Vec<Arc<OsStr>>,
|
323
|
+
pic: Option<bool>,
|
324
|
+
use_plt: Option<bool>,
|
325
|
+
static_crt: Option<bool>,
|
326
|
+
shared_flag: Option<bool>,
|
327
|
+
static_flag: Option<bool>,
|
328
|
+
warnings_into_errors: bool,
|
329
|
+
warnings: Option<bool>,
|
330
|
+
extra_warnings: Option<bool>,
|
331
|
+
emit_rerun_if_env_changed: bool,
|
332
|
+
shell_escaped_flags: Option<bool>,
|
333
|
+
build_cache: Arc<BuildCache>,
|
334
|
+
inherit_rustflags: bool,
|
335
|
+
}
|
336
|
+
|
337
|
+
/// Represents the types of errors that may occur while using cc-rs.
|
338
|
+
#[derive(Clone, Debug)]
|
339
|
+
enum ErrorKind {
|
340
|
+
/// Error occurred while performing I/O.
|
341
|
+
IOError,
|
342
|
+
/// Environment variable not found, with the var in question as extra info.
|
343
|
+
EnvVarNotFound,
|
344
|
+
/// Error occurred while using external tools (ie: invocation of compiler).
|
345
|
+
ToolExecError,
|
346
|
+
/// Error occurred due to missing external tools.
|
347
|
+
ToolNotFound,
|
348
|
+
/// One of the function arguments failed validation.
|
349
|
+
InvalidArgument,
|
350
|
+
/// No known macro is defined for the compiler when discovering tool family.
|
351
|
+
ToolFamilyMacroNotFound,
|
352
|
+
/// Invalid target.
|
353
|
+
InvalidTarget,
|
354
|
+
/// Unknown target.
|
355
|
+
UnknownTarget,
|
356
|
+
/// Invalid rustc flag.
|
357
|
+
InvalidFlag,
|
358
|
+
#[cfg(feature = "parallel")]
|
359
|
+
/// jobserver helpthread failure
|
360
|
+
JobserverHelpThreadError,
|
361
|
+
/// `cc` has been disabled by an environment variable.
|
362
|
+
Disabled,
|
363
|
+
}
|
364
|
+
|
365
|
+
/// Represents an internal error that occurred, with an explanation.
|
366
|
+
#[derive(Clone, Debug)]
|
367
|
+
pub struct Error {
|
368
|
+
/// Describes the kind of error that occurred.
|
369
|
+
kind: ErrorKind,
|
370
|
+
/// More explanation of error that occurred.
|
371
|
+
message: Cow<'static, str>,
|
372
|
+
}
|
373
|
+
|
374
|
+
impl Error {
|
375
|
+
fn new(kind: ErrorKind, message: impl Into<Cow<'static, str>>) -> Error {
|
376
|
+
Error {
|
377
|
+
kind,
|
378
|
+
message: message.into(),
|
379
|
+
}
|
380
|
+
}
|
381
|
+
}
|
382
|
+
|
383
|
+
impl From<io::Error> for Error {
|
384
|
+
fn from(e: io::Error) -> Error {
|
385
|
+
Error::new(ErrorKind::IOError, format!("{}", e))
|
386
|
+
}
|
387
|
+
}
|
388
|
+
|
389
|
+
impl Display for Error {
|
390
|
+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
391
|
+
write!(f, "{:?}: {}", self.kind, self.message)
|
392
|
+
}
|
393
|
+
}
|
394
|
+
|
395
|
+
impl std::error::Error for Error {}
|
396
|
+
|
397
|
+
/// Represents an object.
|
398
|
+
///
|
399
|
+
/// This is a source file -> object file pair.
|
400
|
+
#[derive(Clone, Debug)]
|
401
|
+
struct Object {
|
402
|
+
src: PathBuf,
|
403
|
+
dst: PathBuf,
|
404
|
+
}
|
405
|
+
|
406
|
+
impl Object {
|
407
|
+
/// Create a new source file -> object file pair.
|
408
|
+
fn new(src: PathBuf, dst: PathBuf) -> Object {
|
409
|
+
Object { src, dst }
|
410
|
+
}
|
411
|
+
}
|
412
|
+
|
413
|
+
impl Build {
|
414
|
+
/// Construct a new instance of a blank set of configuration.
|
415
|
+
///
|
416
|
+
/// This builder is finished with the [`compile`] function.
|
417
|
+
///
|
418
|
+
/// [`compile`]: struct.Build.html#method.compile
|
419
|
+
pub fn new() -> Build {
|
420
|
+
Build {
|
421
|
+
include_directories: Vec::new(),
|
422
|
+
definitions: Vec::new(),
|
423
|
+
objects: Vec::new(),
|
424
|
+
flags: Vec::new(),
|
425
|
+
flags_supported: Vec::new(),
|
426
|
+
ar_flags: Vec::new(),
|
427
|
+
asm_flags: Vec::new(),
|
428
|
+
no_default_flags: false,
|
429
|
+
files: Vec::new(),
|
430
|
+
shared_flag: None,
|
431
|
+
static_flag: None,
|
432
|
+
cpp: false,
|
433
|
+
cpp_link_stdlib: None,
|
434
|
+
cpp_set_stdlib: None,
|
435
|
+
cuda: false,
|
436
|
+
cudart: None,
|
437
|
+
ccbin: true,
|
438
|
+
std: None,
|
439
|
+
target: None,
|
440
|
+
host: None,
|
441
|
+
out_dir: None,
|
442
|
+
opt_level: None,
|
443
|
+
debug: None,
|
444
|
+
force_frame_pointer: None,
|
445
|
+
env: Vec::new(),
|
446
|
+
compiler: None,
|
447
|
+
archiver: None,
|
448
|
+
ranlib: None,
|
449
|
+
cargo_output: CargoOutput::new(),
|
450
|
+
link_lib_modifiers: Vec::new(),
|
451
|
+
pic: None,
|
452
|
+
use_plt: None,
|
453
|
+
static_crt: None,
|
454
|
+
warnings: None,
|
455
|
+
extra_warnings: None,
|
456
|
+
warnings_into_errors: false,
|
457
|
+
emit_rerun_if_env_changed: true,
|
458
|
+
shell_escaped_flags: None,
|
459
|
+
build_cache: Arc::default(),
|
460
|
+
inherit_rustflags: true,
|
461
|
+
}
|
462
|
+
}
|
463
|
+
|
464
|
+
/// Add a directory to the `-I` or include path for headers
|
465
|
+
///
|
466
|
+
/// # Example
|
467
|
+
///
|
468
|
+
/// ```no_run
|
469
|
+
/// use std::path::Path;
|
470
|
+
///
|
471
|
+
/// let library_path = Path::new("/path/to/library");
|
472
|
+
///
|
473
|
+
/// cc::Build::new()
|
474
|
+
/// .file("src/foo.c")
|
475
|
+
/// .include(library_path)
|
476
|
+
/// .include("src")
|
477
|
+
/// .compile("foo");
|
478
|
+
/// ```
|
479
|
+
pub fn include<P: AsRef<Path>>(&mut self, dir: P) -> &mut Build {
|
480
|
+
self.include_directories.push(dir.as_ref().into());
|
481
|
+
self
|
482
|
+
}
|
483
|
+
|
484
|
+
/// Add multiple directories to the `-I` include path.
|
485
|
+
///
|
486
|
+
/// # Example
|
487
|
+
///
|
488
|
+
/// ```no_run
|
489
|
+
/// # use std::path::Path;
|
490
|
+
/// # let condition = true;
|
491
|
+
/// #
|
492
|
+
/// let mut extra_dir = None;
|
493
|
+
/// if condition {
|
494
|
+
/// extra_dir = Some(Path::new("/path/to"));
|
495
|
+
/// }
|
496
|
+
///
|
497
|
+
/// cc::Build::new()
|
498
|
+
/// .file("src/foo.c")
|
499
|
+
/// .includes(extra_dir)
|
500
|
+
/// .compile("foo");
|
501
|
+
/// ```
|
502
|
+
pub fn includes<P>(&mut self, dirs: P) -> &mut Build
|
503
|
+
where
|
504
|
+
P: IntoIterator,
|
505
|
+
P::Item: AsRef<Path>,
|
506
|
+
{
|
507
|
+
for dir in dirs {
|
508
|
+
self.include(dir);
|
509
|
+
}
|
510
|
+
self
|
511
|
+
}
|
512
|
+
|
513
|
+
/// Specify a `-D` variable with an optional value.
|
514
|
+
///
|
515
|
+
/// # Example
|
516
|
+
///
|
517
|
+
/// ```no_run
|
518
|
+
/// cc::Build::new()
|
519
|
+
/// .file("src/foo.c")
|
520
|
+
/// .define("FOO", "BAR")
|
521
|
+
/// .define("BAZ", None)
|
522
|
+
/// .compile("foo");
|
523
|
+
/// ```
|
524
|
+
pub fn define<'a, V: Into<Option<&'a str>>>(&mut self, var: &str, val: V) -> &mut Build {
|
525
|
+
self.definitions
|
526
|
+
.push((var.into(), val.into().map(Into::into)));
|
527
|
+
self
|
528
|
+
}
|
529
|
+
|
530
|
+
/// Add an arbitrary object file to link in
|
531
|
+
pub fn object<P: AsRef<Path>>(&mut self, obj: P) -> &mut Build {
|
532
|
+
self.objects.push(obj.as_ref().into());
|
533
|
+
self
|
534
|
+
}
|
535
|
+
|
536
|
+
/// Add arbitrary object files to link in
|
537
|
+
pub fn objects<P>(&mut self, objs: P) -> &mut Build
|
538
|
+
where
|
539
|
+
P: IntoIterator,
|
540
|
+
P::Item: AsRef<Path>,
|
541
|
+
{
|
542
|
+
for obj in objs {
|
543
|
+
self.object(obj);
|
544
|
+
}
|
545
|
+
self
|
546
|
+
}
|
547
|
+
|
548
|
+
/// Add an arbitrary flag to the invocation of the compiler
|
549
|
+
///
|
550
|
+
/// # Example
|
551
|
+
///
|
552
|
+
/// ```no_run
|
553
|
+
/// cc::Build::new()
|
554
|
+
/// .file("src/foo.c")
|
555
|
+
/// .flag("-ffunction-sections")
|
556
|
+
/// .compile("foo");
|
557
|
+
/// ```
|
558
|
+
pub fn flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
|
559
|
+
self.flags.push(flag.as_ref().into());
|
560
|
+
self
|
561
|
+
}
|
562
|
+
|
563
|
+
/// Removes a compiler flag that was added by [`Build::flag`].
|
564
|
+
///
|
565
|
+
/// Will not remove flags added by other means (default flags,
|
566
|
+
/// flags from env, and so on).
|
567
|
+
///
|
568
|
+
/// # Example
|
569
|
+
/// ```
|
570
|
+
/// cc::Build::new()
|
571
|
+
/// .file("src/foo.c")
|
572
|
+
/// .flag("unwanted_flag")
|
573
|
+
/// .remove_flag("unwanted_flag");
|
574
|
+
/// ```
|
575
|
+
pub fn remove_flag(&mut self, flag: &str) -> &mut Build {
|
576
|
+
self.flags.retain(|other_flag| &**other_flag != flag);
|
577
|
+
self
|
578
|
+
}
|
579
|
+
|
580
|
+
/// Add a flag to the invocation of the ar
|
581
|
+
///
|
582
|
+
/// # Example
|
583
|
+
///
|
584
|
+
/// ```no_run
|
585
|
+
/// cc::Build::new()
|
586
|
+
/// .file("src/foo.c")
|
587
|
+
/// .file("src/bar.c")
|
588
|
+
/// .ar_flag("/NODEFAULTLIB:libc.dll")
|
589
|
+
/// .compile("foo");
|
590
|
+
/// ```
|
591
|
+
pub fn ar_flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
|
592
|
+
self.ar_flags.push(flag.as_ref().into());
|
593
|
+
self
|
594
|
+
}
|
595
|
+
|
596
|
+
/// Add a flag that will only be used with assembly files.
|
597
|
+
///
|
598
|
+
/// The flag will be applied to input files with either a `.s` or
|
599
|
+
/// `.asm` extension (case insensitive).
|
600
|
+
///
|
601
|
+
/// # Example
|
602
|
+
///
|
603
|
+
/// ```no_run
|
604
|
+
/// cc::Build::new()
|
605
|
+
/// .asm_flag("-Wa,-defsym,abc=1")
|
606
|
+
/// .file("src/foo.S") // The asm flag will be applied here
|
607
|
+
/// .file("src/bar.c") // The asm flag will not be applied here
|
608
|
+
/// .compile("foo");
|
609
|
+
/// ```
|
610
|
+
pub fn asm_flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
|
611
|
+
self.asm_flags.push(flag.as_ref().into());
|
612
|
+
self
|
613
|
+
}
|
614
|
+
|
615
|
+
fn ensure_check_file(&self) -> Result<PathBuf, Error> {
|
616
|
+
let out_dir = self.get_out_dir()?;
|
617
|
+
let src = if self.cuda {
|
618
|
+
assert!(self.cpp);
|
619
|
+
out_dir.join("flag_check.cu")
|
620
|
+
} else if self.cpp {
|
621
|
+
out_dir.join("flag_check.cpp")
|
622
|
+
} else {
|
623
|
+
out_dir.join("flag_check.c")
|
624
|
+
};
|
625
|
+
|
626
|
+
if !src.exists() {
|
627
|
+
let mut f = fs::File::create(&src)?;
|
628
|
+
write!(f, "int main(void) {{ return 0; }}")?;
|
629
|
+
}
|
630
|
+
|
631
|
+
Ok(src)
|
632
|
+
}
|
633
|
+
|
634
|
+
/// Run the compiler to test if it accepts the given flag.
|
635
|
+
///
|
636
|
+
/// For a convenience method for setting flags conditionally,
|
637
|
+
/// see `flag_if_supported()`.
|
638
|
+
///
|
639
|
+
/// It may return error if it's unable to run the compiler with a test file
|
640
|
+
/// (e.g. the compiler is missing or a write to the `out_dir` failed).
|
641
|
+
///
|
642
|
+
/// Note: Once computed, the result of this call is stored in the
|
643
|
+
/// `known_flag_support` field. If `is_flag_supported(flag)`
|
644
|
+
/// is called again, the result will be read from the hash table.
|
645
|
+
pub fn is_flag_supported(&self, flag: impl AsRef<OsStr>) -> Result<bool, Error> {
|
646
|
+
self.is_flag_supported_inner(
|
647
|
+
flag.as_ref(),
|
648
|
+
&self.get_base_compiler()?,
|
649
|
+
&self.get_target()?,
|
650
|
+
)
|
651
|
+
}
|
652
|
+
|
653
|
+
fn is_flag_supported_inner(
|
654
|
+
&self,
|
655
|
+
flag: &OsStr,
|
656
|
+
tool: &Tool,
|
657
|
+
target: &TargetInfo<'_>,
|
658
|
+
) -> Result<bool, Error> {
|
659
|
+
let compiler_flag = CompilerFlag {
|
660
|
+
compiler: tool.path().into(),
|
661
|
+
flag: flag.into(),
|
662
|
+
};
|
663
|
+
|
664
|
+
if let Some(is_supported) = self
|
665
|
+
.build_cache
|
666
|
+
.known_flag_support_status_cache
|
667
|
+
.read()
|
668
|
+
.unwrap()
|
669
|
+
.get(&compiler_flag)
|
670
|
+
.cloned()
|
671
|
+
{
|
672
|
+
return Ok(is_supported);
|
673
|
+
}
|
674
|
+
|
675
|
+
let out_dir = self.get_out_dir()?;
|
676
|
+
let src = self.ensure_check_file()?;
|
677
|
+
let obj = out_dir.join("flag_check");
|
678
|
+
|
679
|
+
let mut compiler = {
|
680
|
+
let mut cfg = Build::new();
|
681
|
+
cfg.flag(flag)
|
682
|
+
.compiler(tool.path())
|
683
|
+
.cargo_metadata(self.cargo_output.metadata)
|
684
|
+
.opt_level(0)
|
685
|
+
.debug(false)
|
686
|
+
.cpp(self.cpp)
|
687
|
+
.cuda(self.cuda)
|
688
|
+
.inherit_rustflags(false)
|
689
|
+
.emit_rerun_if_env_changed(self.emit_rerun_if_env_changed);
|
690
|
+
if let Some(target) = &self.target {
|
691
|
+
cfg.target(target);
|
692
|
+
}
|
693
|
+
if let Some(host) = &self.host {
|
694
|
+
cfg.host(host);
|
695
|
+
}
|
696
|
+
cfg.try_get_compiler()?
|
697
|
+
};
|
698
|
+
|
699
|
+
// Clang uses stderr for verbose output, which yields a false positive
|
700
|
+
// result if the CFLAGS/CXXFLAGS include -v to aid in debugging.
|
701
|
+
if compiler.family.verbose_stderr() {
|
702
|
+
compiler.remove_arg("-v".into());
|
703
|
+
}
|
704
|
+
if compiler.is_like_clang() {
|
705
|
+
// Avoid reporting that the arg is unsupported just because the
|
706
|
+
// compiler complains that it wasn't used.
|
707
|
+
compiler.push_cc_arg("-Wno-unused-command-line-argument".into());
|
708
|
+
}
|
709
|
+
|
710
|
+
let mut cmd = compiler.to_command();
|
711
|
+
let is_arm = matches!(target.arch, "aarch64" | "arm");
|
712
|
+
let clang = compiler.is_like_clang();
|
713
|
+
let gnu = compiler.family == ToolFamily::Gnu;
|
714
|
+
command_add_output_file(
|
715
|
+
&mut cmd,
|
716
|
+
&obj,
|
717
|
+
CmdAddOutputFileArgs {
|
718
|
+
cuda: self.cuda,
|
719
|
+
is_assembler_msvc: false,
|
720
|
+
msvc: compiler.is_like_msvc(),
|
721
|
+
clang,
|
722
|
+
gnu,
|
723
|
+
is_asm: false,
|
724
|
+
is_arm,
|
725
|
+
},
|
726
|
+
);
|
727
|
+
|
728
|
+
if compiler.supports_path_delimiter() {
|
729
|
+
cmd.arg("--");
|
730
|
+
}
|
731
|
+
|
732
|
+
cmd.arg(&src);
|
733
|
+
|
734
|
+
// On MSVC skip the CRT by setting the entry point to `main`.
|
735
|
+
// This way we don't need to add the default library paths.
|
736
|
+
if compiler.is_like_msvc() {
|
737
|
+
// Flags from _LINK_ are appended to the linker arguments.
|
738
|
+
cmd.env("_LINK_", "-entry:main");
|
739
|
+
}
|
740
|
+
|
741
|
+
let output = cmd.output()?;
|
742
|
+
let is_supported = output.status.success() && output.stderr.is_empty();
|
743
|
+
|
744
|
+
self.build_cache
|
745
|
+
.known_flag_support_status_cache
|
746
|
+
.write()
|
747
|
+
.unwrap()
|
748
|
+
.insert(compiler_flag, is_supported);
|
749
|
+
|
750
|
+
Ok(is_supported)
|
751
|
+
}
|
752
|
+
|
753
|
+
/// Add an arbitrary flag to the invocation of the compiler if it supports it
|
754
|
+
///
|
755
|
+
/// # Example
|
756
|
+
///
|
757
|
+
/// ```no_run
|
758
|
+
/// cc::Build::new()
|
759
|
+
/// .file("src/foo.c")
|
760
|
+
/// .flag_if_supported("-Wlogical-op") // only supported by GCC
|
761
|
+
/// .flag_if_supported("-Wunreachable-code") // only supported by clang
|
762
|
+
/// .compile("foo");
|
763
|
+
/// ```
|
764
|
+
pub fn flag_if_supported(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
|
765
|
+
self.flags_supported.push(flag.as_ref().into());
|
766
|
+
self
|
767
|
+
}
|
768
|
+
|
769
|
+
/// Add flags from the specified environment variable.
|
770
|
+
///
|
771
|
+
/// Normally the `cc` crate will consult with the standard set of environment
|
772
|
+
/// variables (such as `CFLAGS` and `CXXFLAGS`) to construct the compiler invocation. Use of
|
773
|
+
/// this method provides additional levers for the end user to use when configuring the build
|
774
|
+
/// process.
|
775
|
+
///
|
776
|
+
/// Just like the standard variables, this method will search for an environment variable with
|
777
|
+
/// appropriate target prefixes, when appropriate.
|
778
|
+
///
|
779
|
+
/// # Examples
|
780
|
+
///
|
781
|
+
/// This method is particularly beneficial in introducing the ability to specify crate-specific
|
782
|
+
/// flags.
|
783
|
+
///
|
784
|
+
/// ```no_run
|
785
|
+
/// cc::Build::new()
|
786
|
+
/// .file("src/foo.c")
|
787
|
+
/// .try_flags_from_environment(concat!(env!("CARGO_PKG_NAME"), "_CFLAGS"))
|
788
|
+
/// .expect("the environment variable must be specified and UTF-8")
|
789
|
+
/// .compile("foo");
|
790
|
+
/// ```
|
791
|
+
///
|
792
|
+
pub fn try_flags_from_environment(&mut self, environ_key: &str) -> Result<&mut Build, Error> {
|
793
|
+
let flags = self.envflags(environ_key)?;
|
794
|
+
self.flags.extend(
|
795
|
+
flags
|
796
|
+
.into_iter()
|
797
|
+
.map(|flag| Arc::from(OsString::from(flag).as_os_str())),
|
798
|
+
);
|
799
|
+
Ok(self)
|
800
|
+
}
|
801
|
+
|
802
|
+
/// Set the `-shared` flag.
|
803
|
+
///
|
804
|
+
/// When enabled, the compiler will produce a shared object which can
|
805
|
+
/// then be linked with other objects to form an executable.
|
806
|
+
///
|
807
|
+
/// # Example
|
808
|
+
///
|
809
|
+
/// ```no_run
|
810
|
+
/// cc::Build::new()
|
811
|
+
/// .file("src/foo.c")
|
812
|
+
/// .shared_flag(true)
|
813
|
+
/// .compile("libfoo.so");
|
814
|
+
/// ```
|
815
|
+
pub fn shared_flag(&mut self, shared_flag: bool) -> &mut Build {
|
816
|
+
self.shared_flag = Some(shared_flag);
|
817
|
+
self
|
818
|
+
}
|
819
|
+
|
820
|
+
/// Set the `-static` flag.
|
821
|
+
///
|
822
|
+
/// When enabled on systems that support dynamic linking, this prevents
|
823
|
+
/// linking with the shared libraries.
|
824
|
+
///
|
825
|
+
/// # Example
|
826
|
+
///
|
827
|
+
/// ```no_run
|
828
|
+
/// cc::Build::new()
|
829
|
+
/// .file("src/foo.c")
|
830
|
+
/// .shared_flag(true)
|
831
|
+
/// .static_flag(true)
|
832
|
+
/// .compile("foo");
|
833
|
+
/// ```
|
834
|
+
pub fn static_flag(&mut self, static_flag: bool) -> &mut Build {
|
835
|
+
self.static_flag = Some(static_flag);
|
836
|
+
self
|
837
|
+
}
|
838
|
+
|
839
|
+
/// Disables the generation of default compiler flags. The default compiler
|
840
|
+
/// flags may cause conflicts in some cross compiling scenarios.
|
841
|
+
///
|
842
|
+
/// Setting the `CRATE_CC_NO_DEFAULTS` environment variable has the same
|
843
|
+
/// effect as setting this to `true`. The presence of the environment
|
844
|
+
/// variable and the value of `no_default_flags` will be OR'd together.
|
845
|
+
pub fn no_default_flags(&mut self, no_default_flags: bool) -> &mut Build {
|
846
|
+
self.no_default_flags = no_default_flags;
|
847
|
+
self
|
848
|
+
}
|
849
|
+
|
850
|
+
/// Add a file which will be compiled
|
851
|
+
pub fn file<P: AsRef<Path>>(&mut self, p: P) -> &mut Build {
|
852
|
+
self.files.push(p.as_ref().into());
|
853
|
+
self
|
854
|
+
}
|
855
|
+
|
856
|
+
/// Add files which will be compiled
|
857
|
+
pub fn files<P>(&mut self, p: P) -> &mut Build
|
858
|
+
where
|
859
|
+
P: IntoIterator,
|
860
|
+
P::Item: AsRef<Path>,
|
861
|
+
{
|
862
|
+
for file in p.into_iter() {
|
863
|
+
self.file(file);
|
864
|
+
}
|
865
|
+
self
|
866
|
+
}
|
867
|
+
|
868
|
+
/// Get the files which will be compiled
|
869
|
+
pub fn get_files(&self) -> impl Iterator<Item = &Path> {
|
870
|
+
self.files.iter().map(AsRef::as_ref)
|
871
|
+
}
|
872
|
+
|
873
|
+
/// Set C++ support.
|
874
|
+
///
|
875
|
+
/// The other `cpp_*` options will only become active if this is set to
|
876
|
+
/// `true`.
|
877
|
+
///
|
878
|
+
/// The name of the C++ standard library to link is decided by:
|
879
|
+
/// 1. If [`cpp_link_stdlib`](Build::cpp_link_stdlib) is set, use its value.
|
880
|
+
/// 2. Else if the `CXXSTDLIB` environment variable is set, use its value.
|
881
|
+
/// 3. Else the default is `c++` for OS X and BSDs, `c++_shared` for Android,
|
882
|
+
/// `None` for MSVC and `stdc++` for anything else.
|
883
|
+
pub fn cpp(&mut self, cpp: bool) -> &mut Build {
|
884
|
+
self.cpp = cpp;
|
885
|
+
self
|
886
|
+
}
|
887
|
+
|
888
|
+
/// Set CUDA C++ support.
|
889
|
+
///
|
890
|
+
/// Enabling CUDA will invoke the CUDA compiler, NVCC. While NVCC accepts
|
891
|
+
/// the most common compiler flags, e.g. `-std=c++17`, some project-specific
|
892
|
+
/// flags might have to be prefixed with "-Xcompiler" flag, for example as
|
893
|
+
/// `.flag("-Xcompiler").flag("-fpermissive")`. See the documentation for
|
894
|
+
/// `nvcc`, the CUDA compiler driver, at <https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/>
|
895
|
+
/// for more information.
|
896
|
+
///
|
897
|
+
/// If enabled, this also implicitly enables C++ support.
|
898
|
+
pub fn cuda(&mut self, cuda: bool) -> &mut Build {
|
899
|
+
self.cuda = cuda;
|
900
|
+
if cuda {
|
901
|
+
self.cpp = true;
|
902
|
+
self.cudart = Some("static".into());
|
903
|
+
}
|
904
|
+
self
|
905
|
+
}
|
906
|
+
|
907
|
+
/// Link CUDA run-time.
|
908
|
+
///
|
909
|
+
/// This option mimics the `--cudart` NVCC command-line option. Just like
|
910
|
+
/// the original it accepts `{none|shared|static}`, with default being
|
911
|
+
/// `static`. The method has to be invoked after `.cuda(true)`, or not
|
912
|
+
/// at all, if the default is right for the project.
|
913
|
+
pub fn cudart(&mut self, cudart: &str) -> &mut Build {
|
914
|
+
if self.cuda {
|
915
|
+
self.cudart = Some(cudart.into());
|
916
|
+
}
|
917
|
+
self
|
918
|
+
}
|
919
|
+
|
920
|
+
/// Set CUDA host compiler.
|
921
|
+
///
|
922
|
+
/// By default, a `-ccbin` flag will be passed to NVCC to specify the
|
923
|
+
/// underlying host compiler. The value of `-ccbin` is the same as the
|
924
|
+
/// chosen C++ compiler. This is not always desired, because NVCC might
|
925
|
+
/// not support that compiler. In this case, you can remove the `-ccbin`
|
926
|
+
/// flag so that NVCC will choose the host compiler by itself.
|
927
|
+
pub fn ccbin(&mut self, ccbin: bool) -> &mut Build {
|
928
|
+
self.ccbin = ccbin;
|
929
|
+
self
|
930
|
+
}
|
931
|
+
|
932
|
+
/// Specify the C or C++ language standard version.
|
933
|
+
///
|
934
|
+
/// These values are common to modern versions of GCC, Clang and MSVC:
|
935
|
+
/// - `c11` for ISO/IEC 9899:2011
|
936
|
+
/// - `c17` for ISO/IEC 9899:2018
|
937
|
+
/// - `c++14` for ISO/IEC 14882:2014
|
938
|
+
/// - `c++17` for ISO/IEC 14882:2017
|
939
|
+
/// - `c++20` for ISO/IEC 14882:2020
|
940
|
+
///
|
941
|
+
/// Other values have less broad support, e.g. MSVC does not support `c++11`
|
942
|
+
/// (`c++14` is the minimum), `c89` (omit the flag instead) or `c99`.
|
943
|
+
///
|
944
|
+
/// For compiling C++ code, you should also set `.cpp(true)`.
|
945
|
+
///
|
946
|
+
/// The default is that no standard flag is passed to the compiler, so the
|
947
|
+
/// language version will be the compiler's default.
|
948
|
+
///
|
949
|
+
/// # Example
|
950
|
+
///
|
951
|
+
/// ```no_run
|
952
|
+
/// cc::Build::new()
|
953
|
+
/// .file("src/modern.cpp")
|
954
|
+
/// .cpp(true)
|
955
|
+
/// .std("c++17")
|
956
|
+
/// .compile("modern");
|
957
|
+
/// ```
|
958
|
+
pub fn std(&mut self, std: &str) -> &mut Build {
|
959
|
+
self.std = Some(std.into());
|
960
|
+
self
|
961
|
+
}
|
962
|
+
|
963
|
+
/// Set warnings into errors flag.
|
964
|
+
///
|
965
|
+
/// Disabled by default.
|
966
|
+
///
|
967
|
+
/// Warning: turning warnings into errors only make sense
|
968
|
+
/// if you are a developer of the crate using cc-rs.
|
969
|
+
/// Some warnings only appear on some architecture or
|
970
|
+
/// specific version of the compiler. Any user of this crate,
|
971
|
+
/// or any other crate depending on it, could fail during
|
972
|
+
/// compile time.
|
973
|
+
///
|
974
|
+
/// # Example
|
975
|
+
///
|
976
|
+
/// ```no_run
|
977
|
+
/// cc::Build::new()
|
978
|
+
/// .file("src/foo.c")
|
979
|
+
/// .warnings_into_errors(true)
|
980
|
+
/// .compile("libfoo.a");
|
981
|
+
/// ```
|
982
|
+
pub fn warnings_into_errors(&mut self, warnings_into_errors: bool) -> &mut Build {
|
983
|
+
self.warnings_into_errors = warnings_into_errors;
|
984
|
+
self
|
985
|
+
}
|
986
|
+
|
987
|
+
/// Set warnings flags.
|
988
|
+
///
|
989
|
+
/// Adds some flags:
|
990
|
+
/// - "-Wall" for MSVC.
|
991
|
+
/// - "-Wall", "-Wextra" for GNU and Clang.
|
992
|
+
///
|
993
|
+
/// Enabled by default.
|
994
|
+
///
|
995
|
+
/// # Example
|
996
|
+
///
|
997
|
+
/// ```no_run
|
998
|
+
/// cc::Build::new()
|
999
|
+
/// .file("src/foo.c")
|
1000
|
+
/// .warnings(false)
|
1001
|
+
/// .compile("libfoo.a");
|
1002
|
+
/// ```
|
1003
|
+
pub fn warnings(&mut self, warnings: bool) -> &mut Build {
|
1004
|
+
self.warnings = Some(warnings);
|
1005
|
+
self.extra_warnings = Some(warnings);
|
1006
|
+
self
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
/// Set extra warnings flags.
|
1010
|
+
///
|
1011
|
+
/// Adds some flags:
|
1012
|
+
/// - nothing for MSVC.
|
1013
|
+
/// - "-Wextra" for GNU and Clang.
|
1014
|
+
///
|
1015
|
+
/// Enabled by default.
|
1016
|
+
///
|
1017
|
+
/// # Example
|
1018
|
+
///
|
1019
|
+
/// ```no_run
|
1020
|
+
/// // Disables -Wextra, -Wall remains enabled:
|
1021
|
+
/// cc::Build::new()
|
1022
|
+
/// .file("src/foo.c")
|
1023
|
+
/// .extra_warnings(false)
|
1024
|
+
/// .compile("libfoo.a");
|
1025
|
+
/// ```
|
1026
|
+
pub fn extra_warnings(&mut self, warnings: bool) -> &mut Build {
|
1027
|
+
self.extra_warnings = Some(warnings);
|
1028
|
+
self
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
/// Set the standard library to link against when compiling with C++
|
1032
|
+
/// support.
|
1033
|
+
///
|
1034
|
+
/// If the `CXXSTDLIB` environment variable is set, its value will
|
1035
|
+
/// override the default value, but not the value explicitly set by calling
|
1036
|
+
/// this function.
|
1037
|
+
///
|
1038
|
+
/// A value of `None` indicates that no automatic linking should happen,
|
1039
|
+
/// otherwise cargo will link against the specified library.
|
1040
|
+
///
|
1041
|
+
/// The given library name must not contain the `lib` prefix.
|
1042
|
+
///
|
1043
|
+
/// Common values:
|
1044
|
+
/// - `stdc++` for GNU
|
1045
|
+
/// - `c++` for Clang
|
1046
|
+
/// - `c++_shared` or `c++_static` for Android
|
1047
|
+
///
|
1048
|
+
/// # Example
|
1049
|
+
///
|
1050
|
+
/// ```no_run
|
1051
|
+
/// cc::Build::new()
|
1052
|
+
/// .file("src/foo.c")
|
1053
|
+
/// .shared_flag(true)
|
1054
|
+
/// .cpp_link_stdlib("stdc++")
|
1055
|
+
/// .compile("libfoo.so");
|
1056
|
+
/// ```
|
1057
|
+
pub fn cpp_link_stdlib<'a, V: Into<Option<&'a str>>>(
|
1058
|
+
&mut self,
|
1059
|
+
cpp_link_stdlib: V,
|
1060
|
+
) -> &mut Build {
|
1061
|
+
self.cpp_link_stdlib = Some(cpp_link_stdlib.into().map(Arc::from));
|
1062
|
+
self
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
/// Force the C++ compiler to use the specified standard library.
|
1066
|
+
///
|
1067
|
+
/// Setting this option will automatically set `cpp_link_stdlib` to the same
|
1068
|
+
/// value.
|
1069
|
+
///
|
1070
|
+
/// The default value of this option is always `None`.
|
1071
|
+
///
|
1072
|
+
/// This option has no effect when compiling for a Visual Studio based
|
1073
|
+
/// target.
|
1074
|
+
///
|
1075
|
+
/// This option sets the `-stdlib` flag, which is only supported by some
|
1076
|
+
/// compilers (clang, icc) but not by others (gcc). The library will not
|
1077
|
+
/// detect which compiler is used, as such it is the responsibility of the
|
1078
|
+
/// caller to ensure that this option is only used in conjunction with a
|
1079
|
+
/// compiler which supports the `-stdlib` flag.
|
1080
|
+
///
|
1081
|
+
/// A value of `None` indicates that no specific C++ standard library should
|
1082
|
+
/// be used, otherwise `-stdlib` is added to the compile invocation.
|
1083
|
+
///
|
1084
|
+
/// The given library name must not contain the `lib` prefix.
|
1085
|
+
///
|
1086
|
+
/// Common values:
|
1087
|
+
/// - `stdc++` for GNU
|
1088
|
+
/// - `c++` for Clang
|
1089
|
+
///
|
1090
|
+
/// # Example
|
1091
|
+
///
|
1092
|
+
/// ```no_run
|
1093
|
+
/// cc::Build::new()
|
1094
|
+
/// .file("src/foo.c")
|
1095
|
+
/// .cpp_set_stdlib("c++")
|
1096
|
+
/// .compile("libfoo.a");
|
1097
|
+
/// ```
|
1098
|
+
pub fn cpp_set_stdlib<'a, V: Into<Option<&'a str>>>(
|
1099
|
+
&mut self,
|
1100
|
+
cpp_set_stdlib: V,
|
1101
|
+
) -> &mut Build {
|
1102
|
+
let cpp_set_stdlib = cpp_set_stdlib.into().map(Arc::from);
|
1103
|
+
self.cpp_set_stdlib.clone_from(&cpp_set_stdlib);
|
1104
|
+
self.cpp_link_stdlib = Some(cpp_set_stdlib);
|
1105
|
+
self
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
/// Configures the `rustc` target this configuration will be compiling
|
1109
|
+
/// for.
|
1110
|
+
///
|
1111
|
+
/// This will fail if using a target not in a pre-compiled list taken from
|
1112
|
+
/// `rustc +nightly --print target-list`. The list will be updated
|
1113
|
+
/// periodically.
|
1114
|
+
///
|
1115
|
+
/// You should avoid setting this in build scripts, target information
|
1116
|
+
/// will instead be retrieved from the environment variables `TARGET` and
|
1117
|
+
/// `CARGO_CFG_TARGET_*` that Cargo sets.
|
1118
|
+
///
|
1119
|
+
/// # Example
|
1120
|
+
///
|
1121
|
+
/// ```no_run
|
1122
|
+
/// cc::Build::new()
|
1123
|
+
/// .file("src/foo.c")
|
1124
|
+
/// .target("aarch64-linux-android")
|
1125
|
+
/// .compile("foo");
|
1126
|
+
/// ```
|
1127
|
+
pub fn target(&mut self, target: &str) -> &mut Build {
|
1128
|
+
self.target = Some(target.into());
|
1129
|
+
self
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
/// Configures the host assumed by this configuration.
|
1133
|
+
///
|
1134
|
+
/// This option is automatically scraped from the `HOST` environment
|
1135
|
+
/// variable by build scripts, so it's not required to call this function.
|
1136
|
+
///
|
1137
|
+
/// # Example
|
1138
|
+
///
|
1139
|
+
/// ```no_run
|
1140
|
+
/// cc::Build::new()
|
1141
|
+
/// .file("src/foo.c")
|
1142
|
+
/// .host("arm-linux-gnueabihf")
|
1143
|
+
/// .compile("foo");
|
1144
|
+
/// ```
|
1145
|
+
pub fn host(&mut self, host: &str) -> &mut Build {
|
1146
|
+
self.host = Some(host.into());
|
1147
|
+
self
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
/// Configures the optimization level of the generated object files.
|
1151
|
+
///
|
1152
|
+
/// This option is automatically scraped from the `OPT_LEVEL` environment
|
1153
|
+
/// variable by build scripts, so it's not required to call this function.
|
1154
|
+
pub fn opt_level(&mut self, opt_level: u32) -> &mut Build {
|
1155
|
+
self.opt_level = Some(opt_level.to_string().into());
|
1156
|
+
self
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
/// Configures the optimization level of the generated object files.
|
1160
|
+
///
|
1161
|
+
/// This option is automatically scraped from the `OPT_LEVEL` environment
|
1162
|
+
/// variable by build scripts, so it's not required to call this function.
|
1163
|
+
pub fn opt_level_str(&mut self, opt_level: &str) -> &mut Build {
|
1164
|
+
self.opt_level = Some(opt_level.into());
|
1165
|
+
self
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
/// Configures whether the compiler will emit debug information when
|
1169
|
+
/// generating object files.
|
1170
|
+
///
|
1171
|
+
/// This option is automatically scraped from the `DEBUG` environment
|
1172
|
+
/// variable by build scripts, so it's not required to call this function.
|
1173
|
+
pub fn debug(&mut self, debug: bool) -> &mut Build {
|
1174
|
+
self.debug = Some(debug);
|
1175
|
+
self
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
/// Configures whether the compiler will emit instructions to store
|
1179
|
+
/// frame pointers during codegen.
|
1180
|
+
///
|
1181
|
+
/// This option is automatically enabled when debug information is emitted.
|
1182
|
+
/// Otherwise the target platform compiler's default will be used.
|
1183
|
+
/// You can use this option to force a specific setting.
|
1184
|
+
pub fn force_frame_pointer(&mut self, force: bool) -> &mut Build {
|
1185
|
+
self.force_frame_pointer = Some(force);
|
1186
|
+
self
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
/// Configures the output directory where all object files and static
|
1190
|
+
/// libraries will be located.
|
1191
|
+
///
|
1192
|
+
/// This option is automatically scraped from the `OUT_DIR` environment
|
1193
|
+
/// variable by build scripts, so it's not required to call this function.
|
1194
|
+
pub fn out_dir<P: AsRef<Path>>(&mut self, out_dir: P) -> &mut Build {
|
1195
|
+
self.out_dir = Some(out_dir.as_ref().into());
|
1196
|
+
self
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
/// Configures the compiler to be used to produce output.
|
1200
|
+
///
|
1201
|
+
/// This option is automatically determined from the target platform or a
|
1202
|
+
/// number of environment variables, so it's not required to call this
|
1203
|
+
/// function.
|
1204
|
+
pub fn compiler<P: AsRef<Path>>(&mut self, compiler: P) -> &mut Build {
|
1205
|
+
self.compiler = Some(compiler.as_ref().into());
|
1206
|
+
self
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
/// Configures the tool used to assemble archives.
|
1210
|
+
///
|
1211
|
+
/// This option is automatically determined from the target platform or a
|
1212
|
+
/// number of environment variables, so it's not required to call this
|
1213
|
+
/// function.
|
1214
|
+
pub fn archiver<P: AsRef<Path>>(&mut self, archiver: P) -> &mut Build {
|
1215
|
+
self.archiver = Some(archiver.as_ref().into());
|
1216
|
+
self
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
/// Configures the tool used to index archives.
|
1220
|
+
///
|
1221
|
+
/// This option is automatically determined from the target platform or a
|
1222
|
+
/// number of environment variables, so it's not required to call this
|
1223
|
+
/// function.
|
1224
|
+
pub fn ranlib<P: AsRef<Path>>(&mut self, ranlib: P) -> &mut Build {
|
1225
|
+
self.ranlib = Some(ranlib.as_ref().into());
|
1226
|
+
self
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
/// Define whether metadata should be emitted for cargo allowing it to
|
1230
|
+
/// automatically link the binary. Defaults to `true`.
|
1231
|
+
///
|
1232
|
+
/// The emitted metadata is:
|
1233
|
+
///
|
1234
|
+
/// - `rustc-link-lib=static=`*compiled lib*
|
1235
|
+
/// - `rustc-link-search=native=`*target folder*
|
1236
|
+
/// - When target is MSVC, the ATL-MFC libs are added via `rustc-link-search=native=`
|
1237
|
+
/// - When C++ is enabled, the C++ stdlib is added via `rustc-link-lib`
|
1238
|
+
/// - If `emit_rerun_if_env_changed` is not `false`, `rerun-if-env-changed=`*env*
|
1239
|
+
///
|
1240
|
+
pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Build {
|
1241
|
+
self.cargo_output.metadata = cargo_metadata;
|
1242
|
+
self
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
/// Define whether compile warnings should be emitted for cargo. Defaults to
|
1246
|
+
/// `true`.
|
1247
|
+
///
|
1248
|
+
/// If disabled, compiler messages will not be printed.
|
1249
|
+
/// Issues unrelated to the compilation will always produce cargo warnings regardless of this setting.
|
1250
|
+
pub fn cargo_warnings(&mut self, cargo_warnings: bool) -> &mut Build {
|
1251
|
+
self.cargo_output.warnings = cargo_warnings;
|
1252
|
+
self
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
/// Define whether debug information should be emitted for cargo. Defaults to whether
|
1256
|
+
/// or not the environment variable `CC_ENABLE_DEBUG_OUTPUT` is set.
|
1257
|
+
///
|
1258
|
+
/// If enabled, the compiler will emit debug information when generating object files,
|
1259
|
+
/// such as the command invoked and the exit status.
|
1260
|
+
pub fn cargo_debug(&mut self, cargo_debug: bool) -> &mut Build {
|
1261
|
+
self.cargo_output.debug = cargo_debug;
|
1262
|
+
self
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
/// Define whether compiler output (to stdout) should be emitted. Defaults to `true`
|
1266
|
+
/// (forward compiler stdout to this process' stdout)
|
1267
|
+
///
|
1268
|
+
/// Some compilers emit errors to stdout, so if you *really* need stdout to be clean
|
1269
|
+
/// you should also set this to `false`.
|
1270
|
+
pub fn cargo_output(&mut self, cargo_output: bool) -> &mut Build {
|
1271
|
+
self.cargo_output.output = if cargo_output {
|
1272
|
+
OutputKind::Forward
|
1273
|
+
} else {
|
1274
|
+
OutputKind::Discard
|
1275
|
+
};
|
1276
|
+
self
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
/// Adds a native library modifier that will be added to the
|
1280
|
+
/// `rustc-link-lib=static:MODIFIERS=LIBRARY_NAME` metadata line
|
1281
|
+
/// emitted for cargo if `cargo_metadata` is enabled.
|
1282
|
+
/// See <https://doc.rust-lang.org/rustc/command-line-arguments.html#-l-link-the-generated-crate-to-a-native-library>
|
1283
|
+
/// for the list of modifiers accepted by rustc.
|
1284
|
+
pub fn link_lib_modifier(&mut self, link_lib_modifier: impl AsRef<OsStr>) -> &mut Build {
|
1285
|
+
self.link_lib_modifiers
|
1286
|
+
.push(link_lib_modifier.as_ref().into());
|
1287
|
+
self
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
/// Configures whether the compiler will emit position independent code.
|
1291
|
+
///
|
1292
|
+
/// This option defaults to `false` for `windows-gnu` and bare metal targets and
|
1293
|
+
/// to `true` for all other targets.
|
1294
|
+
pub fn pic(&mut self, pic: bool) -> &mut Build {
|
1295
|
+
self.pic = Some(pic);
|
1296
|
+
self
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
/// Configures whether the Procedure Linkage Table is used for indirect
|
1300
|
+
/// calls into shared libraries.
|
1301
|
+
///
|
1302
|
+
/// The PLT is used to provide features like lazy binding, but introduces
|
1303
|
+
/// a small performance loss due to extra pointer indirection. Setting
|
1304
|
+
/// `use_plt` to `false` can provide a small performance increase.
|
1305
|
+
///
|
1306
|
+
/// Note that skipping the PLT requires a recent version of GCC/Clang.
|
1307
|
+
///
|
1308
|
+
/// This only applies to ELF targets. It has no effect on other platforms.
|
1309
|
+
pub fn use_plt(&mut self, use_plt: bool) -> &mut Build {
|
1310
|
+
self.use_plt = Some(use_plt);
|
1311
|
+
self
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
/// Define whether metadata should be emitted for cargo to detect environment
|
1315
|
+
/// changes that should trigger a rebuild.
|
1316
|
+
///
|
1317
|
+
/// NOTE that cc does not emit metadata to detect changes for `PATH`, since it could
|
1318
|
+
/// be changed every comilation yet does not affect the result of compilation
|
1319
|
+
/// (i.e. rust-analyzer adds temporary directory to `PATH`).
|
1320
|
+
///
|
1321
|
+
/// cc in general, has no way detecting changes to compiler, as there are so many ways to
|
1322
|
+
/// change it and sidestep the detection, for example the compiler might be wrapped in a script
|
1323
|
+
/// so detecting change of the file, or using checksum won't work.
|
1324
|
+
///
|
1325
|
+
/// We recommend users to decide for themselves, if they want rebuild if the compiler has been upgraded
|
1326
|
+
/// or changed, and how to detect that.
|
1327
|
+
///
|
1328
|
+
/// This has no effect if the `cargo_metadata` option is `false`.
|
1329
|
+
///
|
1330
|
+
/// This option defaults to `true`.
|
1331
|
+
pub fn emit_rerun_if_env_changed(&mut self, emit_rerun_if_env_changed: bool) -> &mut Build {
|
1332
|
+
self.emit_rerun_if_env_changed = emit_rerun_if_env_changed;
|
1333
|
+
self
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
/// Configures whether the /MT flag or the /MD flag will be passed to msvc build tools.
|
1337
|
+
///
|
1338
|
+
/// This option defaults to `false`, and affect only msvc targets.
|
1339
|
+
pub fn static_crt(&mut self, static_crt: bool) -> &mut Build {
|
1340
|
+
self.static_crt = Some(static_crt);
|
1341
|
+
self
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
/// Configure whether *FLAGS variables are parsed using `shlex`, similarly to `make` and
|
1345
|
+
/// `cmake`.
|
1346
|
+
///
|
1347
|
+
/// This option defaults to `false`.
|
1348
|
+
pub fn shell_escaped_flags(&mut self, shell_escaped_flags: bool) -> &mut Build {
|
1349
|
+
self.shell_escaped_flags = Some(shell_escaped_flags);
|
1350
|
+
self
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
/// Configure whether cc should automatically inherit compatible flags passed to rustc
|
1354
|
+
/// from `CARGO_ENCODED_RUSTFLAGS`.
|
1355
|
+
///
|
1356
|
+
/// This option defaults to `true`.
|
1357
|
+
pub fn inherit_rustflags(&mut self, inherit_rustflags: bool) -> &mut Build {
|
1358
|
+
self.inherit_rustflags = inherit_rustflags;
|
1359
|
+
self
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
#[doc(hidden)]
|
1363
|
+
pub fn __set_env<A, B>(&mut self, a: A, b: B) -> &mut Build
|
1364
|
+
where
|
1365
|
+
A: AsRef<OsStr>,
|
1366
|
+
B: AsRef<OsStr>,
|
1367
|
+
{
|
1368
|
+
self.env.push((a.as_ref().into(), b.as_ref().into()));
|
1369
|
+
self
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
/// Run the compiler, generating the file `output`
|
1373
|
+
///
|
1374
|
+
/// This will return a result instead of panicking; see [`Self::compile()`] for
|
1375
|
+
/// the complete description.
|
1376
|
+
pub fn try_compile(&self, output: &str) -> Result<(), Error> {
|
1377
|
+
let mut output_components = Path::new(output).components();
|
1378
|
+
match (output_components.next(), output_components.next()) {
|
1379
|
+
(Some(Component::Normal(_)), None) => {}
|
1380
|
+
_ => {
|
1381
|
+
return Err(Error::new(
|
1382
|
+
ErrorKind::InvalidArgument,
|
1383
|
+
"argument of `compile` must be a single normal path component",
|
1384
|
+
));
|
1385
|
+
}
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
let (lib_name, gnu_lib_name) = if output.starts_with("lib") && output.ends_with(".a") {
|
1389
|
+
(&output[3..output.len() - 2], output.to_owned())
|
1390
|
+
} else {
|
1391
|
+
let mut gnu = String::with_capacity(5 + output.len());
|
1392
|
+
gnu.push_str("lib");
|
1393
|
+
gnu.push_str(output);
|
1394
|
+
gnu.push_str(".a");
|
1395
|
+
(output, gnu)
|
1396
|
+
};
|
1397
|
+
let dst = self.get_out_dir()?;
|
1398
|
+
|
1399
|
+
let objects = objects_from_files(&self.files, &dst)?;
|
1400
|
+
|
1401
|
+
self.compile_objects(&objects)?;
|
1402
|
+
self.assemble(lib_name, &dst.join(gnu_lib_name), &objects)?;
|
1403
|
+
|
1404
|
+
let target = self.get_target()?;
|
1405
|
+
if target.env == "msvc" {
|
1406
|
+
let compiler = self.get_base_compiler()?;
|
1407
|
+
let atlmfc_lib = compiler
|
1408
|
+
.env()
|
1409
|
+
.iter()
|
1410
|
+
.find(|&(var, _)| var.as_os_str() == OsStr::new("LIB"))
|
1411
|
+
.and_then(|(_, lib_paths)| {
|
1412
|
+
env::split_paths(lib_paths).find(|path| {
|
1413
|
+
let sub = Path::new("atlmfc/lib");
|
1414
|
+
path.ends_with(sub) || path.parent().map_or(false, |p| p.ends_with(sub))
|
1415
|
+
})
|
1416
|
+
});
|
1417
|
+
|
1418
|
+
if let Some(atlmfc_lib) = atlmfc_lib {
|
1419
|
+
self.cargo_output.print_metadata(&format_args!(
|
1420
|
+
"cargo:rustc-link-search=native={}",
|
1421
|
+
atlmfc_lib.display()
|
1422
|
+
));
|
1423
|
+
}
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
if self.link_lib_modifiers.is_empty() {
|
1427
|
+
self.cargo_output
|
1428
|
+
.print_metadata(&format_args!("cargo:rustc-link-lib=static={}", lib_name));
|
1429
|
+
} else {
|
1430
|
+
self.cargo_output.print_metadata(&format_args!(
|
1431
|
+
"cargo:rustc-link-lib=static:{}={}",
|
1432
|
+
JoinOsStrs {
|
1433
|
+
slice: &self.link_lib_modifiers,
|
1434
|
+
delimiter: ','
|
1435
|
+
},
|
1436
|
+
lib_name
|
1437
|
+
));
|
1438
|
+
}
|
1439
|
+
self.cargo_output.print_metadata(&format_args!(
|
1440
|
+
"cargo:rustc-link-search=native={}",
|
1441
|
+
dst.display()
|
1442
|
+
));
|
1443
|
+
|
1444
|
+
// Add specific C++ libraries, if enabled.
|
1445
|
+
if self.cpp {
|
1446
|
+
if let Some(stdlib) = self.get_cpp_link_stdlib()? {
|
1447
|
+
self.cargo_output
|
1448
|
+
.print_metadata(&format_args!("cargo:rustc-link-lib={}", stdlib.display()));
|
1449
|
+
}
|
1450
|
+
// Link c++ lib from WASI sysroot
|
1451
|
+
if target.os == "wasi" {
|
1452
|
+
if let Ok(wasi_sysroot) = self.wasi_sysroot() {
|
1453
|
+
self.cargo_output.print_metadata(&format_args!(
|
1454
|
+
"cargo:rustc-flags=-L {}/lib/{} -lstatic=c++ -lstatic=c++abi",
|
1455
|
+
Path::new(&wasi_sysroot).display(),
|
1456
|
+
self.get_raw_target()?
|
1457
|
+
));
|
1458
|
+
}
|
1459
|
+
}
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
let cudart = match &self.cudart {
|
1463
|
+
Some(opt) => opt, // {none|shared|static}
|
1464
|
+
None => "none",
|
1465
|
+
};
|
1466
|
+
if cudart != "none" {
|
1467
|
+
if let Some(nvcc) = self.which(&self.get_compiler().path, None) {
|
1468
|
+
// Try to figure out the -L search path. If it fails,
|
1469
|
+
// it's on user to specify one by passing it through
|
1470
|
+
// RUSTFLAGS environment variable.
|
1471
|
+
let mut libtst = false;
|
1472
|
+
let mut libdir = nvcc;
|
1473
|
+
libdir.pop(); // remove 'nvcc'
|
1474
|
+
libdir.push("..");
|
1475
|
+
if cfg!(target_os = "linux") {
|
1476
|
+
libdir.push("targets");
|
1477
|
+
libdir.push(format!("{}-linux", target.arch));
|
1478
|
+
libdir.push("lib");
|
1479
|
+
libtst = true;
|
1480
|
+
} else if cfg!(target_env = "msvc") {
|
1481
|
+
libdir.push("lib");
|
1482
|
+
match target.arch {
|
1483
|
+
"x86_64" => {
|
1484
|
+
libdir.push("x64");
|
1485
|
+
libtst = true;
|
1486
|
+
}
|
1487
|
+
"x86" => {
|
1488
|
+
libdir.push("Win32");
|
1489
|
+
libtst = true;
|
1490
|
+
}
|
1491
|
+
_ => libtst = false,
|
1492
|
+
}
|
1493
|
+
}
|
1494
|
+
if libtst && libdir.is_dir() {
|
1495
|
+
self.cargo_output.print_metadata(&format_args!(
|
1496
|
+
"cargo:rustc-link-search=native={}",
|
1497
|
+
libdir.to_str().unwrap()
|
1498
|
+
));
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
// And now the -l flag.
|
1502
|
+
let lib = match cudart {
|
1503
|
+
"shared" => "cudart",
|
1504
|
+
"static" => "cudart_static",
|
1505
|
+
bad => panic!("unsupported cudart option: {}", bad),
|
1506
|
+
};
|
1507
|
+
self.cargo_output
|
1508
|
+
.print_metadata(&format_args!("cargo:rustc-link-lib={}", lib));
|
1509
|
+
}
|
1510
|
+
}
|
1511
|
+
|
1512
|
+
Ok(())
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
/// Run the compiler, generating the file `output`
|
1516
|
+
///
|
1517
|
+
/// # Library name
|
1518
|
+
///
|
1519
|
+
/// The `output` string argument determines the file name for the compiled
|
1520
|
+
/// library. The Rust compiler will create an assembly named "lib"+output+".a".
|
1521
|
+
/// MSVC will create a file named output+".lib".
|
1522
|
+
///
|
1523
|
+
/// The choice of `output` is close to arbitrary, but:
|
1524
|
+
///
|
1525
|
+
/// - must be nonempty,
|
1526
|
+
/// - must not contain a path separator (`/`),
|
1527
|
+
/// - must be unique across all `compile` invocations made by the same build
|
1528
|
+
/// script.
|
1529
|
+
///
|
1530
|
+
/// If your build script compiles a single source file, the base name of
|
1531
|
+
/// that source file would usually be reasonable:
|
1532
|
+
///
|
1533
|
+
/// ```no_run
|
1534
|
+
/// cc::Build::new().file("blobstore.c").compile("blobstore");
|
1535
|
+
/// ```
|
1536
|
+
///
|
1537
|
+
/// Compiling multiple source files, some people use their crate's name, or
|
1538
|
+
/// their crate's name + "-cc".
|
1539
|
+
///
|
1540
|
+
/// Otherwise, please use your imagination.
|
1541
|
+
///
|
1542
|
+
/// For backwards compatibility, if `output` starts with "lib" *and* ends
|
1543
|
+
/// with ".a", a second "lib" prefix and ".a" suffix do not get added on,
|
1544
|
+
/// but this usage is deprecated; please omit `lib` and `.a` in the argument
|
1545
|
+
/// that you pass.
|
1546
|
+
///
|
1547
|
+
/// # Panics
|
1548
|
+
///
|
1549
|
+
/// Panics if `output` is not formatted correctly or if one of the underlying
|
1550
|
+
/// compiler commands fails. It can also panic if it fails reading file names
|
1551
|
+
/// or creating directories.
|
1552
|
+
pub fn compile(&self, output: &str) {
|
1553
|
+
if let Err(e) = self.try_compile(output) {
|
1554
|
+
fail(&e.message);
|
1555
|
+
}
|
1556
|
+
}
|
1557
|
+
|
1558
|
+
/// Run the compiler, generating intermediate files, but without linking
|
1559
|
+
/// them into an archive file.
|
1560
|
+
///
|
1561
|
+
/// This will return a list of compiled object files, in the same order
|
1562
|
+
/// as they were passed in as `file`/`files` methods.
|
1563
|
+
pub fn compile_intermediates(&self) -> Vec<PathBuf> {
|
1564
|
+
match self.try_compile_intermediates() {
|
1565
|
+
Ok(v) => v,
|
1566
|
+
Err(e) => fail(&e.message),
|
1567
|
+
}
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
/// Run the compiler, generating intermediate files, but without linking
|
1571
|
+
/// them into an archive file.
|
1572
|
+
///
|
1573
|
+
/// This will return a result instead of panicking; see `compile_intermediates()` for the complete description.
|
1574
|
+
pub fn try_compile_intermediates(&self) -> Result<Vec<PathBuf>, Error> {
|
1575
|
+
let dst = self.get_out_dir()?;
|
1576
|
+
let objects = objects_from_files(&self.files, &dst)?;
|
1577
|
+
|
1578
|
+
self.compile_objects(&objects)?;
|
1579
|
+
|
1580
|
+
Ok(objects.into_iter().map(|v| v.dst).collect())
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
#[cfg(feature = "parallel")]
|
1584
|
+
fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {
|
1585
|
+
use std::cell::Cell;
|
1586
|
+
|
1587
|
+
use parallel::async_executor::{block_on, YieldOnce};
|
1588
|
+
|
1589
|
+
check_disabled()?;
|
1590
|
+
|
1591
|
+
if objs.len() <= 1 {
|
1592
|
+
for obj in objs {
|
1593
|
+
let (mut cmd, name) = self.create_compile_object_cmd(obj)?;
|
1594
|
+
run(&mut cmd, &name, &self.cargo_output)?;
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
return Ok(());
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
// Limit our parallelism globally with a jobserver.
|
1601
|
+
let mut tokens = parallel::job_token::ActiveJobTokenServer::new();
|
1602
|
+
|
1603
|
+
// When compiling objects in parallel we do a few dirty tricks to speed
|
1604
|
+
// things up:
|
1605
|
+
//
|
1606
|
+
// * First is that we use the `jobserver` crate to limit the parallelism
|
1607
|
+
// of this build script. The `jobserver` crate will use a jobserver
|
1608
|
+
// configured by Cargo for build scripts to ensure that parallelism is
|
1609
|
+
// coordinated across C compilations and Rust compilations. Before we
|
1610
|
+
// compile anything we make sure to wait until we acquire a token.
|
1611
|
+
//
|
1612
|
+
// Note that this jobserver is cached globally so we only used one per
|
1613
|
+
// process and only worry about creating it once.
|
1614
|
+
//
|
1615
|
+
// * Next we use spawn the process to actually compile objects in
|
1616
|
+
// parallel after we've acquired a token to perform some work
|
1617
|
+
//
|
1618
|
+
// With all that in mind we compile all objects in a loop here, after we
|
1619
|
+
// acquire the appropriate tokens, Once all objects have been compiled
|
1620
|
+
// we wait on all the processes and propagate the results of compilation.
|
1621
|
+
|
1622
|
+
let pendings = Cell::new(Vec::<(
|
1623
|
+
Command,
|
1624
|
+
Cow<'static, Path>,
|
1625
|
+
KillOnDrop,
|
1626
|
+
parallel::job_token::JobToken,
|
1627
|
+
)>::new());
|
1628
|
+
let is_disconnected = Cell::new(false);
|
1629
|
+
let has_made_progress = Cell::new(false);
|
1630
|
+
|
1631
|
+
let wait_future = async {
|
1632
|
+
let mut error = None;
|
1633
|
+
// Buffer the stdout
|
1634
|
+
let mut stdout = io::BufWriter::with_capacity(128, io::stdout());
|
1635
|
+
|
1636
|
+
loop {
|
1637
|
+
// If the other end of the pipe is already disconnected, then we're not gonna get any new jobs,
|
1638
|
+
// so it doesn't make sense to reuse the tokens; in fact,
|
1639
|
+
// releasing them as soon as possible (once we know that the other end is disconnected) is beneficial.
|
1640
|
+
// Imagine that the last file built takes an hour to finish; in this scenario,
|
1641
|
+
// by not releasing the tokens before that last file is done we would effectively block other processes from
|
1642
|
+
// starting sooner - even though we only need one token for that last file, not N others that were acquired.
|
1643
|
+
|
1644
|
+
let mut pendings_is_empty = false;
|
1645
|
+
|
1646
|
+
cell_update(&pendings, |mut pendings| {
|
1647
|
+
// Try waiting on them.
|
1648
|
+
pendings.retain_mut(|(cmd, program, child, _token)| {
|
1649
|
+
match try_wait_on_child(
|
1650
|
+
cmd,
|
1651
|
+
program,
|
1652
|
+
&mut child.0,
|
1653
|
+
&mut stdout,
|
1654
|
+
&mut child.1,
|
1655
|
+
) {
|
1656
|
+
Ok(Some(())) => {
|
1657
|
+
// Task done, remove the entry
|
1658
|
+
has_made_progress.set(true);
|
1659
|
+
false
|
1660
|
+
}
|
1661
|
+
Ok(None) => true, // Task still not finished, keep the entry
|
1662
|
+
Err(err) => {
|
1663
|
+
// Task fail, remove the entry.
|
1664
|
+
// Since we can only return one error, log the error to make
|
1665
|
+
// sure users always see all the compilation failures.
|
1666
|
+
has_made_progress.set(true);
|
1667
|
+
|
1668
|
+
if self.cargo_output.warnings {
|
1669
|
+
let _ = writeln!(stdout, "cargo:warning={}", err);
|
1670
|
+
}
|
1671
|
+
error = Some(err);
|
1672
|
+
|
1673
|
+
false
|
1674
|
+
}
|
1675
|
+
}
|
1676
|
+
});
|
1677
|
+
pendings_is_empty = pendings.is_empty();
|
1678
|
+
pendings
|
1679
|
+
});
|
1680
|
+
|
1681
|
+
if pendings_is_empty && is_disconnected.get() {
|
1682
|
+
break if let Some(err) = error {
|
1683
|
+
Err(err)
|
1684
|
+
} else {
|
1685
|
+
Ok(())
|
1686
|
+
};
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
YieldOnce::default().await;
|
1690
|
+
}
|
1691
|
+
};
|
1692
|
+
let spawn_future = async {
|
1693
|
+
for obj in objs {
|
1694
|
+
let (mut cmd, program) = self.create_compile_object_cmd(obj)?;
|
1695
|
+
let token = tokens.acquire().await?;
|
1696
|
+
let mut child = spawn(&mut cmd, &program, &self.cargo_output)?;
|
1697
|
+
let mut stderr_forwarder = StderrForwarder::new(&mut child);
|
1698
|
+
stderr_forwarder.set_non_blocking()?;
|
1699
|
+
|
1700
|
+
cell_update(&pendings, |mut pendings| {
|
1701
|
+
pendings.push((cmd, program, KillOnDrop(child, stderr_forwarder), token));
|
1702
|
+
pendings
|
1703
|
+
});
|
1704
|
+
|
1705
|
+
has_made_progress.set(true);
|
1706
|
+
}
|
1707
|
+
is_disconnected.set(true);
|
1708
|
+
|
1709
|
+
Ok::<_, Error>(())
|
1710
|
+
};
|
1711
|
+
|
1712
|
+
return block_on(wait_future, spawn_future, &has_made_progress);
|
1713
|
+
|
1714
|
+
struct KillOnDrop(Child, StderrForwarder);
|
1715
|
+
|
1716
|
+
impl Drop for KillOnDrop {
|
1717
|
+
fn drop(&mut self) {
|
1718
|
+
let child = &mut self.0;
|
1719
|
+
|
1720
|
+
child.kill().ok();
|
1721
|
+
}
|
1722
|
+
}
|
1723
|
+
|
1724
|
+
fn cell_update<T, F>(cell: &Cell<T>, f: F)
|
1725
|
+
where
|
1726
|
+
T: Default,
|
1727
|
+
F: FnOnce(T) -> T,
|
1728
|
+
{
|
1729
|
+
let old = cell.take();
|
1730
|
+
let new = f(old);
|
1731
|
+
cell.set(new);
|
1732
|
+
}
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
#[cfg(not(feature = "parallel"))]
|
1736
|
+
fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {
|
1737
|
+
check_disabled()?;
|
1738
|
+
|
1739
|
+
for obj in objs {
|
1740
|
+
let (mut cmd, name) = self.create_compile_object_cmd(obj)?;
|
1741
|
+
run(&mut cmd, &name, &self.cargo_output)?;
|
1742
|
+
}
|
1743
|
+
|
1744
|
+
Ok(())
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
fn create_compile_object_cmd(
|
1748
|
+
&self,
|
1749
|
+
obj: &Object,
|
1750
|
+
) -> Result<(Command, Cow<'static, Path>), Error> {
|
1751
|
+
let asm_ext = AsmFileExt::from_path(&obj.src);
|
1752
|
+
let is_asm = asm_ext.is_some();
|
1753
|
+
let target = self.get_target()?;
|
1754
|
+
let msvc = target.env == "msvc";
|
1755
|
+
let compiler = self.try_get_compiler()?;
|
1756
|
+
let clang = compiler.is_like_clang();
|
1757
|
+
let gnu = compiler.family == ToolFamily::Gnu;
|
1758
|
+
|
1759
|
+
let is_assembler_msvc = msvc && asm_ext == Some(AsmFileExt::DotAsm);
|
1760
|
+
let (mut cmd, name) = if is_assembler_msvc {
|
1761
|
+
let (cmd, name) = self.msvc_macro_assembler()?;
|
1762
|
+
(cmd, Cow::Borrowed(Path::new(name)))
|
1763
|
+
} else {
|
1764
|
+
let mut cmd = compiler.to_command();
|
1765
|
+
for (a, b) in self.env.iter() {
|
1766
|
+
cmd.env(a, b);
|
1767
|
+
}
|
1768
|
+
(
|
1769
|
+
cmd,
|
1770
|
+
compiler
|
1771
|
+
.path
|
1772
|
+
.file_name()
|
1773
|
+
.ok_or_else(|| Error::new(ErrorKind::IOError, "Failed to get compiler path."))
|
1774
|
+
.map(PathBuf::from)
|
1775
|
+
.map(Cow::Owned)?,
|
1776
|
+
)
|
1777
|
+
};
|
1778
|
+
let is_arm = matches!(target.arch, "aarch64" | "arm");
|
1779
|
+
command_add_output_file(
|
1780
|
+
&mut cmd,
|
1781
|
+
&obj.dst,
|
1782
|
+
CmdAddOutputFileArgs {
|
1783
|
+
cuda: self.cuda,
|
1784
|
+
is_assembler_msvc,
|
1785
|
+
msvc: compiler.is_like_msvc(),
|
1786
|
+
clang,
|
1787
|
+
gnu,
|
1788
|
+
is_asm,
|
1789
|
+
is_arm,
|
1790
|
+
},
|
1791
|
+
);
|
1792
|
+
// armasm and armasm64 don't requrie -c option
|
1793
|
+
if !is_assembler_msvc || !is_arm {
|
1794
|
+
cmd.arg("-c");
|
1795
|
+
}
|
1796
|
+
if self.cuda && self.cuda_file_count() > 1 {
|
1797
|
+
cmd.arg("--device-c");
|
1798
|
+
}
|
1799
|
+
if is_asm {
|
1800
|
+
cmd.args(self.asm_flags.iter().map(std::ops::Deref::deref));
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
if compiler.supports_path_delimiter() && !is_assembler_msvc {
|
1804
|
+
// #513: For `clang-cl`, separate flags/options from the input file.
|
1805
|
+
// When cross-compiling macOS -> Windows, this avoids interpreting
|
1806
|
+
// common `/Users/...` paths as the `/U` flag and triggering
|
1807
|
+
// `-Wslash-u-filename` warning.
|
1808
|
+
cmd.arg("--");
|
1809
|
+
}
|
1810
|
+
cmd.arg(&obj.src);
|
1811
|
+
|
1812
|
+
if cfg!(target_os = "macos") {
|
1813
|
+
self.fix_env_for_apple_os(&mut cmd)?;
|
1814
|
+
}
|
1815
|
+
|
1816
|
+
Ok((cmd, name))
|
1817
|
+
}
|
1818
|
+
|
1819
|
+
/// This will return a result instead of panicking; see [`Self::expand()`] for
|
1820
|
+
/// the complete description.
|
1821
|
+
pub fn try_expand(&self) -> Result<Vec<u8>, Error> {
|
1822
|
+
let compiler = self.try_get_compiler()?;
|
1823
|
+
let mut cmd = compiler.to_command();
|
1824
|
+
for (a, b) in self.env.iter() {
|
1825
|
+
cmd.env(a, b);
|
1826
|
+
}
|
1827
|
+
cmd.arg("-E");
|
1828
|
+
|
1829
|
+
assert!(
|
1830
|
+
self.files.len() <= 1,
|
1831
|
+
"Expand may only be called for a single file"
|
1832
|
+
);
|
1833
|
+
|
1834
|
+
let is_asm = self
|
1835
|
+
.files
|
1836
|
+
.iter()
|
1837
|
+
.map(std::ops::Deref::deref)
|
1838
|
+
.find_map(AsmFileExt::from_path)
|
1839
|
+
.is_some();
|
1840
|
+
|
1841
|
+
if compiler.family == (ToolFamily::Msvc { clang_cl: true }) && !is_asm {
|
1842
|
+
// #513: For `clang-cl`, separate flags/options from the input file.
|
1843
|
+
// When cross-compiling macOS -> Windows, this avoids interpreting
|
1844
|
+
// common `/Users/...` paths as the `/U` flag and triggering
|
1845
|
+
// `-Wslash-u-filename` warning.
|
1846
|
+
cmd.arg("--");
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
cmd.args(self.files.iter().map(std::ops::Deref::deref));
|
1850
|
+
|
1851
|
+
let name = compiler
|
1852
|
+
.path
|
1853
|
+
.file_name()
|
1854
|
+
.ok_or_else(|| Error::new(ErrorKind::IOError, "Failed to get compiler path."))?;
|
1855
|
+
|
1856
|
+
run_output(&mut cmd, name, &self.cargo_output)
|
1857
|
+
}
|
1858
|
+
|
1859
|
+
/// Run the compiler, returning the macro-expanded version of the input files.
|
1860
|
+
///
|
1861
|
+
/// This is only relevant for C and C++ files.
|
1862
|
+
///
|
1863
|
+
/// # Panics
|
1864
|
+
/// Panics if more than one file is present in the config, or if compiler
|
1865
|
+
/// path has an invalid file name.
|
1866
|
+
///
|
1867
|
+
/// # Example
|
1868
|
+
/// ```no_run
|
1869
|
+
/// let out = cc::Build::new().file("src/foo.c").expand();
|
1870
|
+
/// ```
|
1871
|
+
pub fn expand(&self) -> Vec<u8> {
|
1872
|
+
match self.try_expand() {
|
1873
|
+
Err(e) => fail(&e.message),
|
1874
|
+
Ok(v) => v,
|
1875
|
+
}
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
/// Get the compiler that's in use for this configuration.
|
1879
|
+
///
|
1880
|
+
/// This function will return a `Tool` which represents the culmination
|
1881
|
+
/// of this configuration at a snapshot in time. The returned compiler can
|
1882
|
+
/// be inspected (e.g. the path, arguments, environment) to forward along to
|
1883
|
+
/// other tools, or the `to_command` method can be used to invoke the
|
1884
|
+
/// compiler itself.
|
1885
|
+
///
|
1886
|
+
/// This method will take into account all configuration such as debug
|
1887
|
+
/// information, optimization level, include directories, defines, etc.
|
1888
|
+
/// Additionally, the compiler binary in use follows the standard
|
1889
|
+
/// conventions for this path, e.g. looking at the explicitly set compiler,
|
1890
|
+
/// environment variables (a number of which are inspected here), and then
|
1891
|
+
/// falling back to the default configuration.
|
1892
|
+
///
|
1893
|
+
/// # Panics
|
1894
|
+
///
|
1895
|
+
/// Panics if an error occurred while determining the architecture.
|
1896
|
+
pub fn get_compiler(&self) -> Tool {
|
1897
|
+
match self.try_get_compiler() {
|
1898
|
+
Ok(tool) => tool,
|
1899
|
+
Err(e) => fail(&e.message),
|
1900
|
+
}
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
/// Get the compiler that's in use for this configuration.
|
1904
|
+
///
|
1905
|
+
/// This will return a result instead of panicking; see
|
1906
|
+
/// [`get_compiler()`](Self::get_compiler) for the complete description.
|
1907
|
+
pub fn try_get_compiler(&self) -> Result<Tool, Error> {
|
1908
|
+
let opt_level = self.get_opt_level()?;
|
1909
|
+
let target = self.get_target()?;
|
1910
|
+
|
1911
|
+
let mut cmd = self.get_base_compiler()?;
|
1912
|
+
|
1913
|
+
// Disable default flag generation via `no_default_flags` or environment variable
|
1914
|
+
let no_defaults = self.no_default_flags || self.getenv_boolean("CRATE_CC_NO_DEFAULTS");
|
1915
|
+
|
1916
|
+
if !no_defaults {
|
1917
|
+
self.add_default_flags(&mut cmd, &target, &opt_level)?;
|
1918
|
+
}
|
1919
|
+
|
1920
|
+
if let Some(ref std) = self.std {
|
1921
|
+
let separator = match cmd.family {
|
1922
|
+
ToolFamily::Msvc { .. } => ':',
|
1923
|
+
ToolFamily::Gnu | ToolFamily::Clang { .. } => '=',
|
1924
|
+
};
|
1925
|
+
cmd.push_cc_arg(format!("-std{}{}", separator, std).into());
|
1926
|
+
}
|
1927
|
+
|
1928
|
+
for directory in self.include_directories.iter() {
|
1929
|
+
cmd.args.push("-I".into());
|
1930
|
+
cmd.args.push(directory.as_os_str().into());
|
1931
|
+
}
|
1932
|
+
|
1933
|
+
if let Ok(flags) = self.envflags(if self.cpp { "CXXFLAGS" } else { "CFLAGS" }) {
|
1934
|
+
for arg in flags {
|
1935
|
+
cmd.push_cc_arg(arg.into());
|
1936
|
+
}
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
// If warnings and/or extra_warnings haven't been explicitly set,
|
1940
|
+
// then we set them only if the environment doesn't already have
|
1941
|
+
// CFLAGS/CXXFLAGS, since those variables presumably already contain
|
1942
|
+
// the desired set of warnings flags.
|
1943
|
+
|
1944
|
+
if self.warnings.unwrap_or(!self.has_flags()) {
|
1945
|
+
let wflags = cmd.family.warnings_flags().into();
|
1946
|
+
cmd.push_cc_arg(wflags);
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
if self.extra_warnings.unwrap_or(!self.has_flags()) {
|
1950
|
+
if let Some(wflags) = cmd.family.extra_warnings_flags() {
|
1951
|
+
cmd.push_cc_arg(wflags.into());
|
1952
|
+
}
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
for flag in self.flags.iter() {
|
1956
|
+
cmd.args.push((**flag).into());
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
// Add cc flags inherited from matching rustc flags
|
1960
|
+
if self.inherit_rustflags {
|
1961
|
+
self.add_inherited_rustflags(&mut cmd, &target)?;
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
for flag in self.flags_supported.iter() {
|
1965
|
+
if self
|
1966
|
+
.is_flag_supported_inner(flag, &cmd, &target)
|
1967
|
+
.unwrap_or(false)
|
1968
|
+
{
|
1969
|
+
cmd.push_cc_arg((**flag).into());
|
1970
|
+
}
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
for (key, value) in self.definitions.iter() {
|
1974
|
+
if let Some(ref value) = *value {
|
1975
|
+
cmd.args.push(format!("-D{}={}", key, value).into());
|
1976
|
+
} else {
|
1977
|
+
cmd.args.push(format!("-D{}", key).into());
|
1978
|
+
}
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
if self.warnings_into_errors {
|
1982
|
+
let warnings_to_errors_flag = cmd.family.warnings_to_errors_flag().into();
|
1983
|
+
cmd.push_cc_arg(warnings_to_errors_flag);
|
1984
|
+
}
|
1985
|
+
|
1986
|
+
// Copied from <https://github.com/rust-lang/rust/blob/5db81020006d2920fc9c62ffc0f4322f90bffa04/compiler/rustc_codegen_ssa/src/back/linker.rs#L27-L38>
|
1987
|
+
//
|
1988
|
+
// Disables non-English messages from localized linkers.
|
1989
|
+
// Such messages may cause issues with text encoding on Windows
|
1990
|
+
// and prevent inspection of msvc output in case of errors, which we occasionally do.
|
1991
|
+
// This should be acceptable because other messages from rustc are in English anyway,
|
1992
|
+
// and may also be desirable to improve searchability of the compiler diagnostics.
|
1993
|
+
if matches!(cmd.family, ToolFamily::Msvc { clang_cl: false }) {
|
1994
|
+
cmd.env.push(("VSLANG".into(), "1033".into()));
|
1995
|
+
} else {
|
1996
|
+
cmd.env.push(("LC_ALL".into(), "C".into()));
|
1997
|
+
}
|
1998
|
+
|
1999
|
+
Ok(cmd)
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
fn add_default_flags(
|
2003
|
+
&self,
|
2004
|
+
cmd: &mut Tool,
|
2005
|
+
target: &TargetInfo<'_>,
|
2006
|
+
opt_level: &str,
|
2007
|
+
) -> Result<(), Error> {
|
2008
|
+
let raw_target = self.get_raw_target()?;
|
2009
|
+
// Non-target flags
|
2010
|
+
// If the flag is not conditioned on target variable, it belongs here :)
|
2011
|
+
match cmd.family {
|
2012
|
+
ToolFamily::Msvc { .. } => {
|
2013
|
+
cmd.push_cc_arg("-nologo".into());
|
2014
|
+
|
2015
|
+
let crt_flag = match self.static_crt {
|
2016
|
+
Some(true) => "-MT",
|
2017
|
+
Some(false) => "-MD",
|
2018
|
+
None => {
|
2019
|
+
let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
|
2020
|
+
let features = features.as_deref().unwrap_or_default();
|
2021
|
+
if features.to_string_lossy().contains("crt-static") {
|
2022
|
+
"-MT"
|
2023
|
+
} else {
|
2024
|
+
"-MD"
|
2025
|
+
}
|
2026
|
+
}
|
2027
|
+
};
|
2028
|
+
cmd.push_cc_arg(crt_flag.into());
|
2029
|
+
|
2030
|
+
match opt_level {
|
2031
|
+
// Msvc uses /O1 to enable all optimizations that minimize code size.
|
2032
|
+
"z" | "s" | "1" => cmd.push_opt_unless_duplicate("-O1".into()),
|
2033
|
+
// -O3 is a valid value for gcc and clang compilers, but not msvc. Cap to /O2.
|
2034
|
+
"2" | "3" => cmd.push_opt_unless_duplicate("-O2".into()),
|
2035
|
+
_ => {}
|
2036
|
+
}
|
2037
|
+
}
|
2038
|
+
ToolFamily::Gnu | ToolFamily::Clang { .. } => {
|
2039
|
+
// arm-linux-androideabi-gcc 4.8 shipped with Android NDK does
|
2040
|
+
// not support '-Oz'
|
2041
|
+
if opt_level == "z" && !cmd.is_like_clang() {
|
2042
|
+
cmd.push_opt_unless_duplicate("-Os".into());
|
2043
|
+
} else {
|
2044
|
+
cmd.push_opt_unless_duplicate(format!("-O{}", opt_level).into());
|
2045
|
+
}
|
2046
|
+
|
2047
|
+
if cmd.is_like_clang() && target.os == "android" {
|
2048
|
+
// For compatibility with code that doesn't use pre-defined `__ANDROID__` macro.
|
2049
|
+
// If compiler used via ndk-build or cmake (officially supported build methods)
|
2050
|
+
// this macros is defined.
|
2051
|
+
// See https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/cmake/android.toolchain.cmake#456
|
2052
|
+
// https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/core/build-binary.mk#141
|
2053
|
+
cmd.push_opt_unless_duplicate("-DANDROID".into());
|
2054
|
+
}
|
2055
|
+
|
2056
|
+
if target.os != "ios"
|
2057
|
+
&& target.os != "watchos"
|
2058
|
+
&& target.os != "tvos"
|
2059
|
+
&& target.os != "visionos"
|
2060
|
+
{
|
2061
|
+
cmd.push_cc_arg("-ffunction-sections".into());
|
2062
|
+
cmd.push_cc_arg("-fdata-sections".into());
|
2063
|
+
}
|
2064
|
+
// Disable generation of PIC on bare-metal for now: rust-lld doesn't support this yet
|
2065
|
+
//
|
2066
|
+
// `rustc` also defaults to disable PIC on WASM:
|
2067
|
+
// <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L101-L108>
|
2068
|
+
if self.pic.unwrap_or(
|
2069
|
+
target.os != "windows"
|
2070
|
+
&& target.os != "none"
|
2071
|
+
&& target.os != "uefi"
|
2072
|
+
&& target.arch != "wasm32"
|
2073
|
+
&& target.arch != "wasm64",
|
2074
|
+
) {
|
2075
|
+
cmd.push_cc_arg("-fPIC".into());
|
2076
|
+
// PLT only applies if code is compiled with PIC support,
|
2077
|
+
// and only for ELF targets.
|
2078
|
+
if (target.os == "linux" || target.os == "android")
|
2079
|
+
&& !self.use_plt.unwrap_or(true)
|
2080
|
+
{
|
2081
|
+
cmd.push_cc_arg("-fno-plt".into());
|
2082
|
+
}
|
2083
|
+
}
|
2084
|
+
if target.arch == "wasm32" || target.arch == "wasm64" {
|
2085
|
+
// WASI does not support exceptions yet.
|
2086
|
+
// https://github.com/WebAssembly/exception-handling
|
2087
|
+
//
|
2088
|
+
// `rustc` also defaults to (currently) disable exceptions
|
2089
|
+
// on all WASM targets:
|
2090
|
+
// <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L72-L77>
|
2091
|
+
cmd.push_cc_arg("-fno-exceptions".into());
|
2092
|
+
}
|
2093
|
+
|
2094
|
+
if target.os == "wasi" {
|
2095
|
+
// Link clang sysroot
|
2096
|
+
if let Ok(wasi_sysroot) = self.wasi_sysroot() {
|
2097
|
+
cmd.push_cc_arg(
|
2098
|
+
format!("--sysroot={}", Path::new(&wasi_sysroot).display()).into(),
|
2099
|
+
);
|
2100
|
+
}
|
2101
|
+
|
2102
|
+
// FIXME(madsmtm): Read from `target_features` instead?
|
2103
|
+
if raw_target.contains("threads") {
|
2104
|
+
cmd.push_cc_arg("-pthread".into());
|
2105
|
+
}
|
2106
|
+
}
|
2107
|
+
|
2108
|
+
if target.os == "nto" {
|
2109
|
+
// Select the target with `-V`, see qcc documentation:
|
2110
|
+
// QNX 7.1: https://www.qnx.com/developers/docs/7.1/index.html#com.qnx.doc.neutrino.utilities/topic/q/qcc.html
|
2111
|
+
// QNX 8.0: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/q/qcc.html
|
2112
|
+
// This assumes qcc/q++ as compiler, which is currently the only supported compiler for QNX.
|
2113
|
+
// See for details: https://github.com/rust-lang/cc-rs/pull/1319
|
2114
|
+
let arg = match target.arch {
|
2115
|
+
"i586" => "-Vgcc_ntox86_cxx",
|
2116
|
+
"aarch64" => "-Vgcc_ntoaarch64le_cxx",
|
2117
|
+
"x86_64" => "-Vgcc_ntox86_64_cxx",
|
2118
|
+
_ => {
|
2119
|
+
return Err(Error::new(
|
2120
|
+
ErrorKind::InvalidTarget,
|
2121
|
+
format!("Unknown architecture for Neutrino QNX: {}", target.arch),
|
2122
|
+
))
|
2123
|
+
}
|
2124
|
+
};
|
2125
|
+
cmd.push_cc_arg(arg.into());
|
2126
|
+
}
|
2127
|
+
}
|
2128
|
+
}
|
2129
|
+
|
2130
|
+
if self.get_debug() {
|
2131
|
+
if self.cuda {
|
2132
|
+
// NVCC debug flag
|
2133
|
+
cmd.args.push("-G".into());
|
2134
|
+
}
|
2135
|
+
let family = cmd.family;
|
2136
|
+
family.add_debug_flags(cmd, self.get_dwarf_version());
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
if self.get_force_frame_pointer() {
|
2140
|
+
let family = cmd.family;
|
2141
|
+
family.add_force_frame_pointer(cmd);
|
2142
|
+
}
|
2143
|
+
|
2144
|
+
if !cmd.is_like_msvc() {
|
2145
|
+
if target.arch == "x86" {
|
2146
|
+
cmd.args.push("-m32".into());
|
2147
|
+
} else if target.abi == "x32" {
|
2148
|
+
cmd.args.push("-mx32".into());
|
2149
|
+
} else if target.os == "aix" {
|
2150
|
+
if cmd.family == ToolFamily::Gnu {
|
2151
|
+
cmd.args.push("-maix64".into());
|
2152
|
+
} else {
|
2153
|
+
cmd.args.push("-m64".into());
|
2154
|
+
}
|
2155
|
+
} else if target.arch == "x86_64" || target.arch == "powerpc64" {
|
2156
|
+
cmd.args.push("-m64".into());
|
2157
|
+
}
|
2158
|
+
}
|
2159
|
+
|
2160
|
+
// Target flags
|
2161
|
+
match cmd.family {
|
2162
|
+
ToolFamily::Clang { .. } => {
|
2163
|
+
if !(cmd.has_internal_target_arg
|
2164
|
+
|| (target.os == "android"
|
2165
|
+
&& android_clang_compiler_uses_target_arg_internally(&cmd.path)))
|
2166
|
+
{
|
2167
|
+
if target.os == "freebsd" {
|
2168
|
+
// FreeBSD only supports C++11 and above when compiling against libc++
|
2169
|
+
// (available from FreeBSD 10 onwards). Under FreeBSD, clang uses libc++ by
|
2170
|
+
// default on FreeBSD 10 and newer unless `--target` is manually passed to
|
2171
|
+
// the compiler, in which case its default behavior differs:
|
2172
|
+
// * If --target=xxx-unknown-freebsdX(.Y) is specified and X is greater than
|
2173
|
+
// or equal to 10, clang++ uses libc++
|
2174
|
+
// * If --target=xxx-unknown-freebsd is specified (without a version),
|
2175
|
+
// clang++ cannot assume libc++ is available and reverts to a default of
|
2176
|
+
// libstdc++ (this behavior was changed in llvm 14).
|
2177
|
+
//
|
2178
|
+
// This breaks C++11 (or greater) builds if targeting FreeBSD with the
|
2179
|
+
// generic xxx-unknown-freebsd triple on clang 13 or below *without*
|
2180
|
+
// explicitly specifying that libc++ should be used.
|
2181
|
+
// When cross-compiling, we can't infer from the rust/cargo target triple
|
2182
|
+
// which major version of FreeBSD we are targeting, so we need to make sure
|
2183
|
+
// that libc++ is used (unless the user has explicitly specified otherwise).
|
2184
|
+
// There's no compelling reason to use a different approach when compiling
|
2185
|
+
// natively.
|
2186
|
+
if self.cpp && self.cpp_set_stdlib.is_none() {
|
2187
|
+
cmd.push_cc_arg("-stdlib=libc++".into());
|
2188
|
+
}
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
// Add version information to the target.
|
2192
|
+
let llvm_target = if target.vendor == "apple" {
|
2193
|
+
let deployment_target = self.apple_deployment_target(target);
|
2194
|
+
target.versioned_llvm_target(Some(&deployment_target))
|
2195
|
+
} else {
|
2196
|
+
target.versioned_llvm_target(None)
|
2197
|
+
};
|
2198
|
+
|
2199
|
+
// Pass `--target` with the LLVM target to properly
|
2200
|
+
// configure Clang even when cross-compiling.
|
2201
|
+
cmd.push_cc_arg(format!("--target={llvm_target}").into());
|
2202
|
+
}
|
2203
|
+
}
|
2204
|
+
ToolFamily::Msvc { clang_cl } => {
|
2205
|
+
// This is an undocumented flag from MSVC but helps with making
|
2206
|
+
// builds more reproducible by avoiding putting timestamps into
|
2207
|
+
// files.
|
2208
|
+
cmd.push_cc_arg("-Brepro".into());
|
2209
|
+
|
2210
|
+
if clang_cl {
|
2211
|
+
if target.arch == "x86_64" {
|
2212
|
+
cmd.push_cc_arg("-m64".into());
|
2213
|
+
} else if target.arch == "x86" {
|
2214
|
+
cmd.push_cc_arg("-m32".into());
|
2215
|
+
cmd.push_cc_arg("-arch:IA32".into());
|
2216
|
+
} else {
|
2217
|
+
let llvm_target = target.versioned_llvm_target(None);
|
2218
|
+
cmd.push_cc_arg(format!("--target={llvm_target}").into());
|
2219
|
+
}
|
2220
|
+
} else if target.full_arch == "i586" {
|
2221
|
+
cmd.push_cc_arg("-arch:IA32".into());
|
2222
|
+
} else if target.full_arch == "arm64ec" {
|
2223
|
+
cmd.push_cc_arg("-arm64EC".into());
|
2224
|
+
}
|
2225
|
+
// There is a check in corecrt.h that will generate a
|
2226
|
+
// compilation error if
|
2227
|
+
// _ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE is
|
2228
|
+
// not defined to 1. The check was added in Windows
|
2229
|
+
// 8 days because only store apps were allowed on ARM.
|
2230
|
+
// This changed with the release of Windows 10 IoT Core.
|
2231
|
+
// The check will be going away in future versions of
|
2232
|
+
// the SDK, but for all released versions of the
|
2233
|
+
// Windows SDK it is required.
|
2234
|
+
if target.arch == "arm" {
|
2235
|
+
cmd.args
|
2236
|
+
.push("-D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1".into());
|
2237
|
+
}
|
2238
|
+
}
|
2239
|
+
ToolFamily::Gnu => {
|
2240
|
+
if target.vendor == "apple" {
|
2241
|
+
let arch = map_darwin_target_from_rust_to_compiler_architecture(target);
|
2242
|
+
cmd.args.push("-arch".into());
|
2243
|
+
cmd.args.push(arch.into());
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
if target.vendor == "kmc" {
|
2247
|
+
cmd.args.push("-finput-charset=utf-8".into());
|
2248
|
+
}
|
2249
|
+
|
2250
|
+
if self.static_flag.is_none() {
|
2251
|
+
let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
|
2252
|
+
let features = features.as_deref().unwrap_or_default();
|
2253
|
+
if features.to_string_lossy().contains("crt-static") {
|
2254
|
+
cmd.args.push("-static".into());
|
2255
|
+
}
|
2256
|
+
}
|
2257
|
+
|
2258
|
+
// armv7 targets get to use armv7 instructions
|
2259
|
+
if (target.full_arch.starts_with("armv7")
|
2260
|
+
|| target.full_arch.starts_with("thumbv7"))
|
2261
|
+
&& (target.os == "linux" || target.vendor == "kmc")
|
2262
|
+
{
|
2263
|
+
cmd.args.push("-march=armv7-a".into());
|
2264
|
+
|
2265
|
+
if target.abi == "eabihf" {
|
2266
|
+
// lowest common denominator FPU
|
2267
|
+
cmd.args.push("-mfpu=vfpv3-d16".into());
|
2268
|
+
cmd.args.push("-mfloat-abi=hard".into());
|
2269
|
+
}
|
2270
|
+
}
|
2271
|
+
|
2272
|
+
// (x86 Android doesn't say "eabi")
|
2273
|
+
if target.os == "android" && target.full_arch.contains("v7") {
|
2274
|
+
cmd.args.push("-march=armv7-a".into());
|
2275
|
+
cmd.args.push("-mthumb".into());
|
2276
|
+
if !target.full_arch.contains("neon") {
|
2277
|
+
// On android we can guarantee some extra float instructions
|
2278
|
+
// (specified in the android spec online)
|
2279
|
+
// NEON guarantees even more; see below.
|
2280
|
+
cmd.args.push("-mfpu=vfpv3-d16".into());
|
2281
|
+
}
|
2282
|
+
cmd.args.push("-mfloat-abi=softfp".into());
|
2283
|
+
}
|
2284
|
+
|
2285
|
+
if target.full_arch.contains("neon") {
|
2286
|
+
cmd.args.push("-mfpu=neon-vfpv4".into());
|
2287
|
+
}
|
2288
|
+
|
2289
|
+
if target.full_arch == "armv4t" && target.os == "linux" {
|
2290
|
+
cmd.args.push("-march=armv4t".into());
|
2291
|
+
cmd.args.push("-marm".into());
|
2292
|
+
cmd.args.push("-mfloat-abi=soft".into());
|
2293
|
+
}
|
2294
|
+
|
2295
|
+
if target.full_arch == "armv5te" && target.os == "linux" {
|
2296
|
+
cmd.args.push("-march=armv5te".into());
|
2297
|
+
cmd.args.push("-marm".into());
|
2298
|
+
cmd.args.push("-mfloat-abi=soft".into());
|
2299
|
+
}
|
2300
|
+
|
2301
|
+
// For us arm == armv6 by default
|
2302
|
+
if target.full_arch == "arm" && target.os == "linux" {
|
2303
|
+
cmd.args.push("-march=armv6".into());
|
2304
|
+
cmd.args.push("-marm".into());
|
2305
|
+
if target.abi == "eabihf" {
|
2306
|
+
cmd.args.push("-mfpu=vfp".into());
|
2307
|
+
} else {
|
2308
|
+
cmd.args.push("-mfloat-abi=soft".into());
|
2309
|
+
}
|
2310
|
+
}
|
2311
|
+
|
2312
|
+
// Turn codegen down on i586 to avoid some instructions.
|
2313
|
+
if target.full_arch == "i586" && target.os == "linux" {
|
2314
|
+
cmd.args.push("-march=pentium".into());
|
2315
|
+
}
|
2316
|
+
|
2317
|
+
// Set codegen level for i686 correctly
|
2318
|
+
if target.full_arch == "i686" && target.os == "linux" {
|
2319
|
+
cmd.args.push("-march=i686".into());
|
2320
|
+
}
|
2321
|
+
|
2322
|
+
// Looks like `musl-gcc` makes it hard for `-m32` to make its way
|
2323
|
+
// all the way to the linker, so we need to actually instruct the
|
2324
|
+
// linker that we're generating 32-bit executables as well. This'll
|
2325
|
+
// typically only be used for build scripts which transitively use
|
2326
|
+
// these flags that try to compile executables.
|
2327
|
+
if target.arch == "x86" && target.env == "musl" {
|
2328
|
+
cmd.args.push("-Wl,-melf_i386".into());
|
2329
|
+
}
|
2330
|
+
|
2331
|
+
if target.arch == "arm" && target.os == "none" && target.abi == "eabihf" {
|
2332
|
+
cmd.args.push("-mfloat-abi=hard".into())
|
2333
|
+
}
|
2334
|
+
if target.full_arch.starts_with("thumb") {
|
2335
|
+
cmd.args.push("-mthumb".into());
|
2336
|
+
}
|
2337
|
+
if target.full_arch.starts_with("thumbv6m") {
|
2338
|
+
cmd.args.push("-march=armv6s-m".into());
|
2339
|
+
}
|
2340
|
+
if target.full_arch.starts_with("thumbv7em") {
|
2341
|
+
cmd.args.push("-march=armv7e-m".into());
|
2342
|
+
|
2343
|
+
if target.abi == "eabihf" {
|
2344
|
+
cmd.args.push("-mfpu=fpv4-sp-d16".into())
|
2345
|
+
}
|
2346
|
+
}
|
2347
|
+
if target.full_arch.starts_with("thumbv7m") {
|
2348
|
+
cmd.args.push("-march=armv7-m".into());
|
2349
|
+
}
|
2350
|
+
if target.full_arch.starts_with("thumbv8m.base") {
|
2351
|
+
cmd.args.push("-march=armv8-m.base".into());
|
2352
|
+
}
|
2353
|
+
if target.full_arch.starts_with("thumbv8m.main") {
|
2354
|
+
cmd.args.push("-march=armv8-m.main".into());
|
2355
|
+
|
2356
|
+
if target.abi == "eabihf" {
|
2357
|
+
cmd.args.push("-mfpu=fpv5-sp-d16".into())
|
2358
|
+
}
|
2359
|
+
}
|
2360
|
+
if target.full_arch.starts_with("armebv7r") | target.full_arch.starts_with("armv7r")
|
2361
|
+
{
|
2362
|
+
if target.full_arch.starts_with("armeb") {
|
2363
|
+
cmd.args.push("-mbig-endian".into());
|
2364
|
+
} else {
|
2365
|
+
cmd.args.push("-mlittle-endian".into());
|
2366
|
+
}
|
2367
|
+
|
2368
|
+
// ARM mode
|
2369
|
+
cmd.args.push("-marm".into());
|
2370
|
+
|
2371
|
+
// R Profile
|
2372
|
+
cmd.args.push("-march=armv7-r".into());
|
2373
|
+
|
2374
|
+
if target.abi == "eabihf" {
|
2375
|
+
// lowest common denominator FPU
|
2376
|
+
// (see Cortex-R4 technical reference manual)
|
2377
|
+
cmd.args.push("-mfpu=vfpv3-d16".into())
|
2378
|
+
}
|
2379
|
+
}
|
2380
|
+
if target.full_arch.starts_with("armv7a") {
|
2381
|
+
cmd.args.push("-march=armv7-a".into());
|
2382
|
+
|
2383
|
+
if target.abi == "eabihf" {
|
2384
|
+
// lowest common denominator FPU
|
2385
|
+
cmd.args.push("-mfpu=vfpv3-d16".into());
|
2386
|
+
}
|
2387
|
+
}
|
2388
|
+
if target.arch == "riscv32" || target.arch == "riscv64" {
|
2389
|
+
// get the 32i/32imac/32imc/64gc/64imac/... part
|
2390
|
+
let arch = &target.full_arch[5..];
|
2391
|
+
if arch.starts_with("64") {
|
2392
|
+
if matches!(target.os, "linux" | "freebsd" | "netbsd") {
|
2393
|
+
cmd.args.push(("-march=rv64gc").into());
|
2394
|
+
cmd.args.push("-mabi=lp64d".into());
|
2395
|
+
} else {
|
2396
|
+
cmd.args.push(("-march=rv".to_owned() + arch).into());
|
2397
|
+
cmd.args.push("-mabi=lp64".into());
|
2398
|
+
}
|
2399
|
+
} else if arch.starts_with("32") {
|
2400
|
+
if target.os == "linux" {
|
2401
|
+
cmd.args.push(("-march=rv32gc").into());
|
2402
|
+
cmd.args.push("-mabi=ilp32d".into());
|
2403
|
+
} else {
|
2404
|
+
cmd.args.push(("-march=rv".to_owned() + arch).into());
|
2405
|
+
cmd.args.push("-mabi=ilp32".into());
|
2406
|
+
}
|
2407
|
+
} else {
|
2408
|
+
cmd.args.push("-mcmodel=medany".into());
|
2409
|
+
}
|
2410
|
+
}
|
2411
|
+
}
|
2412
|
+
}
|
2413
|
+
|
2414
|
+
if target.vendor == "apple" {
|
2415
|
+
self.apple_flags(cmd)?;
|
2416
|
+
}
|
2417
|
+
|
2418
|
+
if self.static_flag.unwrap_or(false) {
|
2419
|
+
cmd.args.push("-static".into());
|
2420
|
+
}
|
2421
|
+
if self.shared_flag.unwrap_or(false) {
|
2422
|
+
cmd.args.push("-shared".into());
|
2423
|
+
}
|
2424
|
+
|
2425
|
+
if self.cpp {
|
2426
|
+
match (self.cpp_set_stdlib.as_ref(), cmd.family) {
|
2427
|
+
(None, _) => {}
|
2428
|
+
(Some(stdlib), ToolFamily::Gnu) | (Some(stdlib), ToolFamily::Clang { .. }) => {
|
2429
|
+
cmd.push_cc_arg(format!("-stdlib=lib{}", stdlib).into());
|
2430
|
+
}
|
2431
|
+
_ => {
|
2432
|
+
self.cargo_output.print_warning(&format_args!("cpp_set_stdlib is specified, but the {:?} compiler does not support this option, ignored", cmd.family));
|
2433
|
+
}
|
2434
|
+
}
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
Ok(())
|
2438
|
+
}
|
2439
|
+
|
2440
|
+
fn add_inherited_rustflags(
|
2441
|
+
&self,
|
2442
|
+
cmd: &mut Tool,
|
2443
|
+
target: &TargetInfo<'_>,
|
2444
|
+
) -> Result<(), Error> {
|
2445
|
+
let env_os = match self.getenv("CARGO_ENCODED_RUSTFLAGS") {
|
2446
|
+
Some(env) => env,
|
2447
|
+
// No encoded RUSTFLAGS -> nothing to do
|
2448
|
+
None => return Ok(()),
|
2449
|
+
};
|
2450
|
+
|
2451
|
+
let env = env_os.to_string_lossy();
|
2452
|
+
let codegen_flags = RustcCodegenFlags::parse(&env)?;
|
2453
|
+
codegen_flags.cc_flags(self, cmd, target);
|
2454
|
+
Ok(())
|
2455
|
+
}
|
2456
|
+
|
2457
|
+
fn has_flags(&self) -> bool {
|
2458
|
+
let flags_env_var_name = if self.cpp { "CXXFLAGS" } else { "CFLAGS" };
|
2459
|
+
let flags_env_var_value = self.getenv_with_target_prefixes(flags_env_var_name);
|
2460
|
+
flags_env_var_value.is_ok()
|
2461
|
+
}
|
2462
|
+
|
2463
|
+
fn msvc_macro_assembler(&self) -> Result<(Command, &'static str), Error> {
|
2464
|
+
let target = self.get_target()?;
|
2465
|
+
let tool = if target.arch == "x86_64" {
|
2466
|
+
"ml64.exe"
|
2467
|
+
} else if target.arch == "arm" {
|
2468
|
+
"armasm.exe"
|
2469
|
+
} else if target.arch == "aarch64" {
|
2470
|
+
"armasm64.exe"
|
2471
|
+
} else {
|
2472
|
+
"ml.exe"
|
2473
|
+
};
|
2474
|
+
let mut cmd = self
|
2475
|
+
.windows_registry_find(&target, tool)
|
2476
|
+
.unwrap_or_else(|| self.cmd(tool));
|
2477
|
+
cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
|
2478
|
+
for directory in self.include_directories.iter() {
|
2479
|
+
cmd.arg("-I").arg(&**directory);
|
2480
|
+
}
|
2481
|
+
if target.arch == "aarch64" || target.arch == "arm" {
|
2482
|
+
if self.get_debug() {
|
2483
|
+
cmd.arg("-g");
|
2484
|
+
}
|
2485
|
+
|
2486
|
+
for (key, value) in self.definitions.iter() {
|
2487
|
+
cmd.arg("-PreDefine");
|
2488
|
+
if let Some(ref value) = *value {
|
2489
|
+
if let Ok(i) = value.parse::<i32>() {
|
2490
|
+
cmd.arg(format!("{} SETA {}", key, i));
|
2491
|
+
} else if value.starts_with('"') && value.ends_with('"') {
|
2492
|
+
cmd.arg(format!("{} SETS {}", key, value));
|
2493
|
+
} else {
|
2494
|
+
cmd.arg(format!("{} SETS \"{}\"", key, value));
|
2495
|
+
}
|
2496
|
+
} else {
|
2497
|
+
cmd.arg(format!("{} SETL {}", key, "{TRUE}"));
|
2498
|
+
}
|
2499
|
+
}
|
2500
|
+
} else {
|
2501
|
+
if self.get_debug() {
|
2502
|
+
cmd.arg("-Zi");
|
2503
|
+
}
|
2504
|
+
|
2505
|
+
for (key, value) in self.definitions.iter() {
|
2506
|
+
if let Some(ref value) = *value {
|
2507
|
+
cmd.arg(format!("-D{}={}", key, value));
|
2508
|
+
} else {
|
2509
|
+
cmd.arg(format!("-D{}", key));
|
2510
|
+
}
|
2511
|
+
}
|
2512
|
+
}
|
2513
|
+
|
2514
|
+
if target.arch == "x86" {
|
2515
|
+
cmd.arg("-safeseh");
|
2516
|
+
}
|
2517
|
+
|
2518
|
+
Ok((cmd, tool))
|
2519
|
+
}
|
2520
|
+
|
2521
|
+
fn assemble(&self, lib_name: &str, dst: &Path, objs: &[Object]) -> Result<(), Error> {
|
2522
|
+
// Delete the destination if it exists as we want to
|
2523
|
+
// create on the first iteration instead of appending.
|
2524
|
+
let _ = fs::remove_file(dst);
|
2525
|
+
|
2526
|
+
// Add objects to the archive in limited-length batches. This helps keep
|
2527
|
+
// the length of the command line within a reasonable length to avoid
|
2528
|
+
// blowing system limits on limiting platforms like Windows.
|
2529
|
+
let objs: Vec<_> = objs
|
2530
|
+
.iter()
|
2531
|
+
.map(|o| o.dst.as_path())
|
2532
|
+
.chain(self.objects.iter().map(std::ops::Deref::deref))
|
2533
|
+
.collect();
|
2534
|
+
for chunk in objs.chunks(100) {
|
2535
|
+
self.assemble_progressive(dst, chunk)?;
|
2536
|
+
}
|
2537
|
+
|
2538
|
+
if self.cuda && self.cuda_file_count() > 0 {
|
2539
|
+
// Link the device-side code and add it to the target library,
|
2540
|
+
// so that non-CUDA linker can link the final binary.
|
2541
|
+
|
2542
|
+
let out_dir = self.get_out_dir()?;
|
2543
|
+
let dlink = out_dir.join(lib_name.to_owned() + "_dlink.o");
|
2544
|
+
let mut nvcc = self.get_compiler().to_command();
|
2545
|
+
nvcc.arg("--device-link").arg("-o").arg(&dlink).arg(dst);
|
2546
|
+
run(&mut nvcc, "nvcc", &self.cargo_output)?;
|
2547
|
+
self.assemble_progressive(dst, &[dlink.as_path()])?;
|
2548
|
+
}
|
2549
|
+
|
2550
|
+
let target = self.get_target()?;
|
2551
|
+
if target.env == "msvc" {
|
2552
|
+
// The Rust compiler will look for libfoo.a and foo.lib, but the
|
2553
|
+
// MSVC linker will also be passed foo.lib, so be sure that both
|
2554
|
+
// exist for now.
|
2555
|
+
|
2556
|
+
let lib_dst = dst.with_file_name(format!("{}.lib", lib_name));
|
2557
|
+
let _ = fs::remove_file(&lib_dst);
|
2558
|
+
match fs::hard_link(dst, &lib_dst).or_else(|_| {
|
2559
|
+
// if hard-link fails, just copy (ignoring the number of bytes written)
|
2560
|
+
fs::copy(dst, &lib_dst).map(|_| ())
|
2561
|
+
}) {
|
2562
|
+
Ok(_) => (),
|
2563
|
+
Err(_) => {
|
2564
|
+
return Err(Error::new(
|
2565
|
+
ErrorKind::IOError,
|
2566
|
+
"Could not copy or create a hard-link to the generated lib file.",
|
2567
|
+
));
|
2568
|
+
}
|
2569
|
+
};
|
2570
|
+
} else {
|
2571
|
+
// Non-msvc targets (those using `ar`) need a separate step to add
|
2572
|
+
// the symbol table to archives since our construction command of
|
2573
|
+
// `cq` doesn't add it for us.
|
2574
|
+
let (mut ar, cmd, _any_flags) = self.get_ar()?;
|
2575
|
+
|
2576
|
+
// NOTE: We add `s` even if flags were passed using $ARFLAGS/ar_flag, because `s`
|
2577
|
+
// here represents a _mode_, not an arbitrary flag. Further discussion of this choice
|
2578
|
+
// can be seen in https://github.com/rust-lang/cc-rs/pull/763.
|
2579
|
+
run(ar.arg("s").arg(dst), &cmd, &self.cargo_output)?;
|
2580
|
+
}
|
2581
|
+
|
2582
|
+
Ok(())
|
2583
|
+
}
|
2584
|
+
|
2585
|
+
fn assemble_progressive(&self, dst: &Path, objs: &[&Path]) -> Result<(), Error> {
|
2586
|
+
let target = self.get_target()?;
|
2587
|
+
|
2588
|
+
let (mut cmd, program, any_flags) = self.get_ar()?;
|
2589
|
+
if target.env == "msvc" && !program.to_string_lossy().contains("llvm-ar") {
|
2590
|
+
// NOTE: -out: here is an I/O flag, and so must be included even if $ARFLAGS/ar_flag is
|
2591
|
+
// in use. -nologo on the other hand is just a regular flag, and one that we'll skip if
|
2592
|
+
// the caller has explicitly dictated the flags they want. See
|
2593
|
+
// https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
|
2594
|
+
let mut out = OsString::from("-out:");
|
2595
|
+
out.push(dst);
|
2596
|
+
cmd.arg(out);
|
2597
|
+
if !any_flags {
|
2598
|
+
cmd.arg("-nologo");
|
2599
|
+
}
|
2600
|
+
// If the library file already exists, add the library name
|
2601
|
+
// as an argument to let lib.exe know we are appending the objs.
|
2602
|
+
if dst.exists() {
|
2603
|
+
cmd.arg(dst);
|
2604
|
+
}
|
2605
|
+
cmd.args(objs);
|
2606
|
+
run(&mut cmd, &program, &self.cargo_output)?;
|
2607
|
+
} else {
|
2608
|
+
// Set an environment variable to tell the OSX archiver to ensure
|
2609
|
+
// that all dates listed in the archive are zero, improving
|
2610
|
+
// determinism of builds. AFAIK there's not really official
|
2611
|
+
// documentation of this but there's a lot of references to it if
|
2612
|
+
// you search google.
|
2613
|
+
//
|
2614
|
+
// You can reproduce this locally on a mac with:
|
2615
|
+
//
|
2616
|
+
// $ touch foo.c
|
2617
|
+
// $ cc -c foo.c -o foo.o
|
2618
|
+
//
|
2619
|
+
// # Notice that these two checksums are different
|
2620
|
+
// $ ar crus libfoo1.a foo.o && sleep 2 && ar crus libfoo2.a foo.o
|
2621
|
+
// $ md5sum libfoo*.a
|
2622
|
+
//
|
2623
|
+
// # Notice that these two checksums are the same
|
2624
|
+
// $ export ZERO_AR_DATE=1
|
2625
|
+
// $ ar crus libfoo1.a foo.o && sleep 2 && touch foo.o && ar crus libfoo2.a foo.o
|
2626
|
+
// $ md5sum libfoo*.a
|
2627
|
+
//
|
2628
|
+
// In any case if this doesn't end up getting read, it shouldn't
|
2629
|
+
// cause that many issues!
|
2630
|
+
cmd.env("ZERO_AR_DATE", "1");
|
2631
|
+
|
2632
|
+
// NOTE: We add cq here regardless of whether $ARFLAGS/ar_flag have been used because
|
2633
|
+
// it dictates the _mode_ ar runs in, which the setter of $ARFLAGS/ar_flag can't
|
2634
|
+
// dictate. See https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
|
2635
|
+
run(
|
2636
|
+
cmd.arg("cq").arg(dst).args(objs),
|
2637
|
+
&program,
|
2638
|
+
&self.cargo_output,
|
2639
|
+
)?;
|
2640
|
+
}
|
2641
|
+
|
2642
|
+
Ok(())
|
2643
|
+
}
|
2644
|
+
|
2645
|
+
fn apple_flags(&self, cmd: &mut Tool) -> Result<(), Error> {
|
2646
|
+
let target = self.get_target()?;
|
2647
|
+
|
2648
|
+
// If the compiler is Clang, then we've already specifed the target
|
2649
|
+
// information (including the deployment target) with the `--target`
|
2650
|
+
// option, so we don't need to do anything further here.
|
2651
|
+
//
|
2652
|
+
// If the compiler is GCC, then we need to specify
|
2653
|
+
// `-mmacosx-version-min` to set the deployment target, as well
|
2654
|
+
// as to say that the target OS is macOS.
|
2655
|
+
//
|
2656
|
+
// NOTE: GCC does not support `-miphoneos-version-min=` etc. (because
|
2657
|
+
// it does not support iOS in general), but we specify them anyhow in
|
2658
|
+
// case we actually have a Clang-like compiler disguised as a GNU-like
|
2659
|
+
// compiler, or in case GCC adds support for these in the future.
|
2660
|
+
if !cmd.is_like_clang() {
|
2661
|
+
let min_version = self.apple_deployment_target(&target);
|
2662
|
+
cmd.args
|
2663
|
+
.push(target.apple_version_flag(&min_version).into());
|
2664
|
+
}
|
2665
|
+
|
2666
|
+
// AppleClang sometimes requires sysroot even on macOS
|
2667
|
+
if cmd.is_xctoolchain_clang() || target.os != "macos" {
|
2668
|
+
self.cargo_output.print_metadata(&format_args!(
|
2669
|
+
"Detecting {:?} SDK path for {}",
|
2670
|
+
target.os,
|
2671
|
+
target.apple_sdk_name(),
|
2672
|
+
));
|
2673
|
+
let sdk_path = self.apple_sdk_root(&target)?;
|
2674
|
+
|
2675
|
+
cmd.args.push("-isysroot".into());
|
2676
|
+
cmd.args.push(OsStr::new(&sdk_path).to_owned());
|
2677
|
+
|
2678
|
+
if target.abi == "macabi" {
|
2679
|
+
// Mac Catalyst uses the macOS SDK, but to compile against and
|
2680
|
+
// link to iOS-specific frameworks, we should have the support
|
2681
|
+
// library stubs in the include and library search path.
|
2682
|
+
let ios_support = Path::new(&sdk_path).join("System/iOSSupport");
|
2683
|
+
|
2684
|
+
cmd.args.extend([
|
2685
|
+
// Header search path
|
2686
|
+
OsString::from("-isystem"),
|
2687
|
+
ios_support.join("usr/include").into(),
|
2688
|
+
// Framework header search path
|
2689
|
+
OsString::from("-iframework"),
|
2690
|
+
ios_support.join("System/Library/Frameworks").into(),
|
2691
|
+
// Library search path
|
2692
|
+
{
|
2693
|
+
let mut s = OsString::from("-L");
|
2694
|
+
s.push(ios_support.join("usr/lib"));
|
2695
|
+
s
|
2696
|
+
},
|
2697
|
+
// Framework linker search path
|
2698
|
+
{
|
2699
|
+
// Technically, we _could_ avoid emitting `-F`, as
|
2700
|
+
// `-iframework` implies it, but let's keep it in for
|
2701
|
+
// clarity.
|
2702
|
+
let mut s = OsString::from("-F");
|
2703
|
+
s.push(ios_support.join("System/Library/Frameworks"));
|
2704
|
+
s
|
2705
|
+
},
|
2706
|
+
]);
|
2707
|
+
}
|
2708
|
+
}
|
2709
|
+
|
2710
|
+
Ok(())
|
2711
|
+
}
|
2712
|
+
|
2713
|
+
fn cmd<P: AsRef<OsStr>>(&self, prog: P) -> Command {
|
2714
|
+
let mut cmd = Command::new(prog);
|
2715
|
+
for (a, b) in self.env.iter() {
|
2716
|
+
cmd.env(a, b);
|
2717
|
+
}
|
2718
|
+
cmd
|
2719
|
+
}
|
2720
|
+
|
2721
|
+
fn get_base_compiler(&self) -> Result<Tool, Error> {
|
2722
|
+
let out_dir = self.get_out_dir().ok();
|
2723
|
+
let out_dir = out_dir.as_deref();
|
2724
|
+
|
2725
|
+
if let Some(c) = &self.compiler {
|
2726
|
+
return Ok(Tool::new(
|
2727
|
+
(**c).to_owned(),
|
2728
|
+
&self.build_cache.cached_compiler_family,
|
2729
|
+
&self.cargo_output,
|
2730
|
+
out_dir,
|
2731
|
+
));
|
2732
|
+
}
|
2733
|
+
let target = self.get_target()?;
|
2734
|
+
let raw_target = self.get_raw_target()?;
|
2735
|
+
let (env, msvc, gnu, traditional, clang) = if self.cpp {
|
2736
|
+
("CXX", "cl.exe", "g++", "c++", "clang++")
|
2737
|
+
} else {
|
2738
|
+
("CC", "cl.exe", "gcc", "cc", "clang")
|
2739
|
+
};
|
2740
|
+
|
2741
|
+
// On historical Solaris systems, "cc" may have been Sun Studio, which
|
2742
|
+
// is not flag-compatible with "gcc". This history casts a long shadow,
|
2743
|
+
// and many modern illumos distributions today ship GCC as "gcc" without
|
2744
|
+
// also making it available as "cc".
|
2745
|
+
let default = if cfg!(target_os = "solaris") || cfg!(target_os = "illumos") {
|
2746
|
+
gnu
|
2747
|
+
} else {
|
2748
|
+
traditional
|
2749
|
+
};
|
2750
|
+
|
2751
|
+
let cl_exe = self.windows_registry_find_tool(&target, "cl.exe");
|
2752
|
+
|
2753
|
+
let tool_opt: Option<Tool> = self
|
2754
|
+
.env_tool(env)
|
2755
|
+
.map(|(tool, wrapper, args)| {
|
2756
|
+
// find the driver mode, if any
|
2757
|
+
const DRIVER_MODE: &str = "--driver-mode=";
|
2758
|
+
let driver_mode = args
|
2759
|
+
.iter()
|
2760
|
+
.find(|a| a.starts_with(DRIVER_MODE))
|
2761
|
+
.map(|a| &a[DRIVER_MODE.len()..]);
|
2762
|
+
// Chop off leading/trailing whitespace to work around
|
2763
|
+
// semi-buggy build scripts which are shared in
|
2764
|
+
// makefiles/configure scripts (where spaces are far more
|
2765
|
+
// lenient)
|
2766
|
+
let mut t = Tool::with_clang_driver(
|
2767
|
+
tool,
|
2768
|
+
driver_mode,
|
2769
|
+
&self.build_cache.cached_compiler_family,
|
2770
|
+
&self.cargo_output,
|
2771
|
+
out_dir,
|
2772
|
+
);
|
2773
|
+
if let Some(cc_wrapper) = wrapper {
|
2774
|
+
t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
|
2775
|
+
}
|
2776
|
+
for arg in args {
|
2777
|
+
t.cc_wrapper_args.push(arg.into());
|
2778
|
+
}
|
2779
|
+
t
|
2780
|
+
})
|
2781
|
+
.or_else(|| {
|
2782
|
+
if target.os == "emscripten" {
|
2783
|
+
let tool = if self.cpp { "em++" } else { "emcc" };
|
2784
|
+
// Windows uses bat file so we have to be a bit more specific
|
2785
|
+
if cfg!(windows) {
|
2786
|
+
let mut t = Tool::with_family(
|
2787
|
+
PathBuf::from("cmd"),
|
2788
|
+
ToolFamily::Clang { zig_cc: false },
|
2789
|
+
);
|
2790
|
+
t.args.push("/c".into());
|
2791
|
+
t.args.push(format!("{}.bat", tool).into());
|
2792
|
+
Some(t)
|
2793
|
+
} else {
|
2794
|
+
Some(Tool::new(
|
2795
|
+
PathBuf::from(tool),
|
2796
|
+
&self.build_cache.cached_compiler_family,
|
2797
|
+
&self.cargo_output,
|
2798
|
+
out_dir,
|
2799
|
+
))
|
2800
|
+
}
|
2801
|
+
} else {
|
2802
|
+
None
|
2803
|
+
}
|
2804
|
+
})
|
2805
|
+
.or_else(|| cl_exe.clone());
|
2806
|
+
|
2807
|
+
let tool = match tool_opt {
|
2808
|
+
Some(t) => t,
|
2809
|
+
None => {
|
2810
|
+
let compiler = if cfg!(windows) && target.os == "windows" {
|
2811
|
+
if target.env == "msvc" {
|
2812
|
+
msvc.to_string()
|
2813
|
+
} else {
|
2814
|
+
let cc = if target.abi == "llvm" { clang } else { gnu };
|
2815
|
+
format!("{}.exe", cc)
|
2816
|
+
}
|
2817
|
+
} else if target.os == "ios"
|
2818
|
+
|| target.os == "watchos"
|
2819
|
+
|| target.os == "tvos"
|
2820
|
+
|| target.os == "visionos"
|
2821
|
+
{
|
2822
|
+
clang.to_string()
|
2823
|
+
} else if target.os == "android" {
|
2824
|
+
autodetect_android_compiler(&raw_target, gnu, clang)
|
2825
|
+
} else if target.os == "cloudabi" {
|
2826
|
+
format!(
|
2827
|
+
"{}-{}-{}-{}",
|
2828
|
+
target.full_arch, target.vendor, target.os, traditional
|
2829
|
+
)
|
2830
|
+
} else if target.arch == "wasm32" || target.arch == "wasm64" {
|
2831
|
+
// Compiling WASM is not currently supported by GCC, so
|
2832
|
+
// let's default to Clang.
|
2833
|
+
clang.to_string()
|
2834
|
+
} else if target.os == "vxworks" {
|
2835
|
+
if self.cpp {
|
2836
|
+
"wr-c++".to_string()
|
2837
|
+
} else {
|
2838
|
+
"wr-cc".to_string()
|
2839
|
+
}
|
2840
|
+
} else if target.arch == "arm" && target.vendor == "kmc" {
|
2841
|
+
format!("arm-kmc-eabi-{}", gnu)
|
2842
|
+
} else if target.arch == "aarch64" && target.vendor == "kmc" {
|
2843
|
+
format!("aarch64-kmc-elf-{}", gnu)
|
2844
|
+
} else if target.os == "nto" {
|
2845
|
+
// See for details: https://github.com/rust-lang/cc-rs/pull/1319
|
2846
|
+
if self.cpp {
|
2847
|
+
"q++".to_string()
|
2848
|
+
} else {
|
2849
|
+
"qcc".to_string()
|
2850
|
+
}
|
2851
|
+
} else if self.get_is_cross_compile()? {
|
2852
|
+
let prefix = self.prefix_for_target(&raw_target);
|
2853
|
+
match prefix {
|
2854
|
+
Some(prefix) => {
|
2855
|
+
let cc = if target.abi == "llvm" { clang } else { gnu };
|
2856
|
+
format!("{}-{}", prefix, cc)
|
2857
|
+
}
|
2858
|
+
None => default.to_string(),
|
2859
|
+
}
|
2860
|
+
} else {
|
2861
|
+
default.to_string()
|
2862
|
+
};
|
2863
|
+
|
2864
|
+
let mut t = Tool::new(
|
2865
|
+
PathBuf::from(compiler),
|
2866
|
+
&self.build_cache.cached_compiler_family,
|
2867
|
+
&self.cargo_output,
|
2868
|
+
out_dir,
|
2869
|
+
);
|
2870
|
+
if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
|
2871
|
+
t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
|
2872
|
+
}
|
2873
|
+
t
|
2874
|
+
}
|
2875
|
+
};
|
2876
|
+
|
2877
|
+
let mut tool = if self.cuda {
|
2878
|
+
assert!(
|
2879
|
+
tool.args.is_empty(),
|
2880
|
+
"CUDA compilation currently assumes empty pre-existing args"
|
2881
|
+
);
|
2882
|
+
let nvcc = match self.getenv_with_target_prefixes("NVCC") {
|
2883
|
+
Err(_) => PathBuf::from("nvcc"),
|
2884
|
+
Ok(nvcc) => PathBuf::from(&*nvcc),
|
2885
|
+
};
|
2886
|
+
let mut nvcc_tool = Tool::with_features(
|
2887
|
+
nvcc,
|
2888
|
+
None,
|
2889
|
+
self.cuda,
|
2890
|
+
&self.build_cache.cached_compiler_family,
|
2891
|
+
&self.cargo_output,
|
2892
|
+
out_dir,
|
2893
|
+
);
|
2894
|
+
if self.ccbin {
|
2895
|
+
nvcc_tool
|
2896
|
+
.args
|
2897
|
+
.push(format!("-ccbin={}", tool.path.display()).into());
|
2898
|
+
}
|
2899
|
+
if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
|
2900
|
+
nvcc_tool.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
|
2901
|
+
}
|
2902
|
+
nvcc_tool.family = tool.family;
|
2903
|
+
nvcc_tool
|
2904
|
+
} else {
|
2905
|
+
tool
|
2906
|
+
};
|
2907
|
+
|
2908
|
+
// New "standalone" C/C++ cross-compiler executables from recent Android NDK
|
2909
|
+
// are just shell scripts that call main clang binary (from Android NDK) with
|
2910
|
+
// proper `--target` argument.
|
2911
|
+
//
|
2912
|
+
// For example, armv7a-linux-androideabi16-clang passes
|
2913
|
+
// `--target=armv7a-linux-androideabi16` to clang.
|
2914
|
+
//
|
2915
|
+
// As the shell script calls the main clang binary, the command line limit length
|
2916
|
+
// on Windows is restricted to around 8k characters instead of around 32k characters.
|
2917
|
+
// To remove this limit, we call the main clang binary directly and construct the
|
2918
|
+
// `--target=` ourselves.
|
2919
|
+
if cfg!(windows) && android_clang_compiler_uses_target_arg_internally(&tool.path) {
|
2920
|
+
if let Some(path) = tool.path.file_name() {
|
2921
|
+
let file_name = path.to_str().unwrap().to_owned();
|
2922
|
+
let (target, clang) = file_name.split_at(file_name.rfind('-').unwrap());
|
2923
|
+
|
2924
|
+
tool.has_internal_target_arg = true;
|
2925
|
+
tool.path.set_file_name(clang.trim_start_matches('-'));
|
2926
|
+
tool.path.set_extension("exe");
|
2927
|
+
tool.args.push(format!("--target={}", target).into());
|
2928
|
+
|
2929
|
+
// Additionally, shell scripts for target i686-linux-android versions 16 to 24
|
2930
|
+
// pass the `mstackrealign` option so we do that here as well.
|
2931
|
+
if target.contains("i686-linux-android") {
|
2932
|
+
let (_, version) = target.split_at(target.rfind('d').unwrap() + 1);
|
2933
|
+
if let Ok(version) = version.parse::<u32>() {
|
2934
|
+
if version > 15 && version < 25 {
|
2935
|
+
tool.args.push("-mstackrealign".into());
|
2936
|
+
}
|
2937
|
+
}
|
2938
|
+
}
|
2939
|
+
};
|
2940
|
+
}
|
2941
|
+
|
2942
|
+
// If we found `cl.exe` in our environment, the tool we're returning is
|
2943
|
+
// an MSVC-like tool, *and* no env vars were set then set env vars for
|
2944
|
+
// the tool that we're returning.
|
2945
|
+
//
|
2946
|
+
// Env vars are needed for things like `link.exe` being put into PATH as
|
2947
|
+
// well as header include paths sometimes. These paths are automatically
|
2948
|
+
// included by default but if the `CC` or `CXX` env vars are set these
|
2949
|
+
// won't be used. This'll ensure that when the env vars are used to
|
2950
|
+
// configure for invocations like `clang-cl` we still get a "works out
|
2951
|
+
// of the box" experience.
|
2952
|
+
if let Some(cl_exe) = cl_exe {
|
2953
|
+
if tool.family == (ToolFamily::Msvc { clang_cl: true })
|
2954
|
+
&& tool.env.is_empty()
|
2955
|
+
&& target.env == "msvc"
|
2956
|
+
{
|
2957
|
+
for (k, v) in cl_exe.env.iter() {
|
2958
|
+
tool.env.push((k.to_owned(), v.to_owned()));
|
2959
|
+
}
|
2960
|
+
}
|
2961
|
+
}
|
2962
|
+
|
2963
|
+
if target.env == "msvc" && tool.family == ToolFamily::Gnu {
|
2964
|
+
self.cargo_output
|
2965
|
+
.print_warning(&"GNU compiler is not supported for this target");
|
2966
|
+
}
|
2967
|
+
|
2968
|
+
Ok(tool)
|
2969
|
+
}
|
2970
|
+
|
2971
|
+
/// Returns a fallback `cc_compiler_wrapper` by introspecting `RUSTC_WRAPPER`
|
2972
|
+
fn rustc_wrapper_fallback(&self) -> Option<Arc<OsStr>> {
|
2973
|
+
// No explicit CC wrapper was detected, but check if RUSTC_WRAPPER
|
2974
|
+
// is defined and is a build accelerator that is compatible with
|
2975
|
+
// C/C++ compilers (e.g. sccache)
|
2976
|
+
const VALID_WRAPPERS: &[&str] = &["sccache", "cachepot", "buildcache"];
|
2977
|
+
|
2978
|
+
let rustc_wrapper = self.getenv("RUSTC_WRAPPER")?;
|
2979
|
+
let wrapper_path = Path::new(&rustc_wrapper);
|
2980
|
+
let wrapper_stem = wrapper_path.file_stem()?;
|
2981
|
+
|
2982
|
+
if VALID_WRAPPERS.contains(&wrapper_stem.to_str()?) {
|
2983
|
+
Some(rustc_wrapper)
|
2984
|
+
} else {
|
2985
|
+
None
|
2986
|
+
}
|
2987
|
+
}
|
2988
|
+
|
2989
|
+
/// Returns compiler path, optional modifier name from whitelist, and arguments vec
|
2990
|
+
fn env_tool(&self, name: &str) -> Option<(PathBuf, Option<Arc<OsStr>>, Vec<String>)> {
|
2991
|
+
let tool = self.getenv_with_target_prefixes(name).ok()?;
|
2992
|
+
let tool = tool.to_string_lossy();
|
2993
|
+
let tool = tool.trim();
|
2994
|
+
|
2995
|
+
if tool.is_empty() {
|
2996
|
+
return None;
|
2997
|
+
}
|
2998
|
+
|
2999
|
+
// If this is an exact path on the filesystem we don't want to do any
|
3000
|
+
// interpretation at all, just pass it on through. This'll hopefully get
|
3001
|
+
// us to support spaces-in-paths.
|
3002
|
+
if Path::new(tool).exists() {
|
3003
|
+
return Some((
|
3004
|
+
PathBuf::from(tool),
|
3005
|
+
self.rustc_wrapper_fallback(),
|
3006
|
+
Vec::new(),
|
3007
|
+
));
|
3008
|
+
}
|
3009
|
+
|
3010
|
+
// Ok now we want to handle a couple of scenarios. We'll assume from
|
3011
|
+
// here on out that spaces are splitting separate arguments. Two major
|
3012
|
+
// features we want to support are:
|
3013
|
+
//
|
3014
|
+
// CC='sccache cc'
|
3015
|
+
//
|
3016
|
+
// aka using `sccache` or any other wrapper/caching-like-thing for
|
3017
|
+
// compilations. We want to know what the actual compiler is still,
|
3018
|
+
// though, because our `Tool` API support introspection of it to see
|
3019
|
+
// what compiler is in use.
|
3020
|
+
//
|
3021
|
+
// additionally we want to support
|
3022
|
+
//
|
3023
|
+
// CC='cc -flag'
|
3024
|
+
//
|
3025
|
+
// where the CC env var is used to also pass default flags to the C
|
3026
|
+
// compiler.
|
3027
|
+
//
|
3028
|
+
// It's true that everything here is a bit of a pain, but apparently if
|
3029
|
+
// you're not literally make or bash then you get a lot of bug reports.
|
3030
|
+
let mut known_wrappers = vec![
|
3031
|
+
"ccache",
|
3032
|
+
"distcc",
|
3033
|
+
"sccache",
|
3034
|
+
"icecc",
|
3035
|
+
"cachepot",
|
3036
|
+
"buildcache",
|
3037
|
+
];
|
3038
|
+
let custom_wrapper = self.getenv("CC_KNOWN_WRAPPER_CUSTOM");
|
3039
|
+
if custom_wrapper.is_some() {
|
3040
|
+
known_wrappers.push(custom_wrapper.as_deref().unwrap().to_str().unwrap());
|
3041
|
+
}
|
3042
|
+
|
3043
|
+
let mut parts = tool.split_whitespace();
|
3044
|
+
let maybe_wrapper = parts.next()?;
|
3045
|
+
|
3046
|
+
let file_stem = Path::new(maybe_wrapper).file_stem()?.to_str()?;
|
3047
|
+
if known_wrappers.contains(&file_stem) {
|
3048
|
+
if let Some(compiler) = parts.next() {
|
3049
|
+
return Some((
|
3050
|
+
compiler.into(),
|
3051
|
+
Some(Arc::<OsStr>::from(OsStr::new(&maybe_wrapper))),
|
3052
|
+
parts.map(|s| s.to_string()).collect(),
|
3053
|
+
));
|
3054
|
+
}
|
3055
|
+
}
|
3056
|
+
|
3057
|
+
Some((
|
3058
|
+
maybe_wrapper.into(),
|
3059
|
+
self.rustc_wrapper_fallback(),
|
3060
|
+
parts.map(|s| s.to_string()).collect(),
|
3061
|
+
))
|
3062
|
+
}
|
3063
|
+
|
3064
|
+
/// Returns the C++ standard library:
|
3065
|
+
/// 1. If [`cpp_link_stdlib`](cc::Build::cpp_link_stdlib) is set, uses its value.
|
3066
|
+
/// 2. Else if the `CXXSTDLIB` environment variable is set, uses its value.
|
3067
|
+
/// 3. Else the default is `c++` for OS X and BSDs, `c++_shared` for Android,
|
3068
|
+
/// `None` for MSVC and `stdc++` for anything else.
|
3069
|
+
fn get_cpp_link_stdlib(&self) -> Result<Option<Cow<'_, Path>>, Error> {
|
3070
|
+
match &self.cpp_link_stdlib {
|
3071
|
+
Some(s) => Ok(s.as_deref().map(Path::new).map(Cow::Borrowed)),
|
3072
|
+
None => {
|
3073
|
+
if let Ok(stdlib) = self.getenv_with_target_prefixes("CXXSTDLIB") {
|
3074
|
+
if stdlib.is_empty() {
|
3075
|
+
Ok(None)
|
3076
|
+
} else {
|
3077
|
+
Ok(Some(Cow::Owned(Path::new(&stdlib).to_owned())))
|
3078
|
+
}
|
3079
|
+
} else {
|
3080
|
+
let target = self.get_target()?;
|
3081
|
+
if target.env == "msvc" {
|
3082
|
+
Ok(None)
|
3083
|
+
} else if target.vendor == "apple"
|
3084
|
+
|| target.os == "freebsd"
|
3085
|
+
|| target.os == "openbsd"
|
3086
|
+
|| target.os == "aix"
|
3087
|
+
|| (target.os == "linux" && target.env == "ohos")
|
3088
|
+
|| target.os == "wasi"
|
3089
|
+
{
|
3090
|
+
Ok(Some(Cow::Borrowed(Path::new("c++"))))
|
3091
|
+
} else if target.os == "android" {
|
3092
|
+
Ok(Some(Cow::Borrowed(Path::new("c++_shared"))))
|
3093
|
+
} else {
|
3094
|
+
Ok(Some(Cow::Borrowed(Path::new("stdc++"))))
|
3095
|
+
}
|
3096
|
+
}
|
3097
|
+
}
|
3098
|
+
}
|
3099
|
+
}
|
3100
|
+
|
3101
|
+
fn get_ar(&self) -> Result<(Command, PathBuf, bool), Error> {
|
3102
|
+
self.try_get_archiver_and_flags()
|
3103
|
+
}
|
3104
|
+
|
3105
|
+
/// Get the archiver (ar) that's in use for this configuration.
|
3106
|
+
///
|
3107
|
+
/// You can use [`Command::get_program`] to get just the path to the command.
|
3108
|
+
///
|
3109
|
+
/// This method will take into account all configuration such as debug
|
3110
|
+
/// information, optimization level, include directories, defines, etc.
|
3111
|
+
/// Additionally, the compiler binary in use follows the standard
|
3112
|
+
/// conventions for this path, e.g. looking at the explicitly set compiler,
|
3113
|
+
/// environment variables (a number of which are inspected here), and then
|
3114
|
+
/// falling back to the default configuration.
|
3115
|
+
///
|
3116
|
+
/// # Panics
|
3117
|
+
///
|
3118
|
+
/// Panics if an error occurred while determining the architecture.
|
3119
|
+
pub fn get_archiver(&self) -> Command {
|
3120
|
+
match self.try_get_archiver() {
|
3121
|
+
Ok(tool) => tool,
|
3122
|
+
Err(e) => fail(&e.message),
|
3123
|
+
}
|
3124
|
+
}
|
3125
|
+
|
3126
|
+
/// Get the archiver that's in use for this configuration.
|
3127
|
+
///
|
3128
|
+
/// This will return a result instead of panicking;
|
3129
|
+
/// see [`Self::get_archiver`] for the complete description.
|
3130
|
+
pub fn try_get_archiver(&self) -> Result<Command, Error> {
|
3131
|
+
Ok(self.try_get_archiver_and_flags()?.0)
|
3132
|
+
}
|
3133
|
+
|
3134
|
+
fn try_get_archiver_and_flags(&self) -> Result<(Command, PathBuf, bool), Error> {
|
3135
|
+
let (mut cmd, name) = self.get_base_archiver()?;
|
3136
|
+
let mut any_flags = false;
|
3137
|
+
if let Ok(flags) = self.envflags("ARFLAGS") {
|
3138
|
+
any_flags |= !flags.is_empty();
|
3139
|
+
cmd.args(flags);
|
3140
|
+
}
|
3141
|
+
for flag in &self.ar_flags {
|
3142
|
+
any_flags = true;
|
3143
|
+
cmd.arg(&**flag);
|
3144
|
+
}
|
3145
|
+
Ok((cmd, name, any_flags))
|
3146
|
+
}
|
3147
|
+
|
3148
|
+
fn get_base_archiver(&self) -> Result<(Command, PathBuf), Error> {
|
3149
|
+
if let Some(ref a) = self.archiver {
|
3150
|
+
let archiver = &**a;
|
3151
|
+
return Ok((self.cmd(archiver), archiver.into()));
|
3152
|
+
}
|
3153
|
+
|
3154
|
+
self.get_base_archiver_variant("AR", "ar")
|
3155
|
+
}
|
3156
|
+
|
3157
|
+
/// Get the ranlib that's in use for this configuration.
|
3158
|
+
///
|
3159
|
+
/// You can use [`Command::get_program`] to get just the path to the command.
|
3160
|
+
///
|
3161
|
+
/// This method will take into account all configuration such as debug
|
3162
|
+
/// information, optimization level, include directories, defines, etc.
|
3163
|
+
/// Additionally, the compiler binary in use follows the standard
|
3164
|
+
/// conventions for this path, e.g. looking at the explicitly set compiler,
|
3165
|
+
/// environment variables (a number of which are inspected here), and then
|
3166
|
+
/// falling back to the default configuration.
|
3167
|
+
///
|
3168
|
+
/// # Panics
|
3169
|
+
///
|
3170
|
+
/// Panics if an error occurred while determining the architecture.
|
3171
|
+
pub fn get_ranlib(&self) -> Command {
|
3172
|
+
match self.try_get_ranlib() {
|
3173
|
+
Ok(tool) => tool,
|
3174
|
+
Err(e) => fail(&e.message),
|
3175
|
+
}
|
3176
|
+
}
|
3177
|
+
|
3178
|
+
/// Get the ranlib that's in use for this configuration.
|
3179
|
+
///
|
3180
|
+
/// This will return a result instead of panicking;
|
3181
|
+
/// see [`Self::get_ranlib`] for the complete description.
|
3182
|
+
pub fn try_get_ranlib(&self) -> Result<Command, Error> {
|
3183
|
+
let mut cmd = self.get_base_ranlib()?;
|
3184
|
+
if let Ok(flags) = self.envflags("RANLIBFLAGS") {
|
3185
|
+
cmd.args(flags);
|
3186
|
+
}
|
3187
|
+
Ok(cmd)
|
3188
|
+
}
|
3189
|
+
|
3190
|
+
fn get_base_ranlib(&self) -> Result<Command, Error> {
|
3191
|
+
if let Some(ref r) = self.ranlib {
|
3192
|
+
return Ok(self.cmd(&**r));
|
3193
|
+
}
|
3194
|
+
|
3195
|
+
Ok(self.get_base_archiver_variant("RANLIB", "ranlib")?.0)
|
3196
|
+
}
|
3197
|
+
|
3198
|
+
fn get_base_archiver_variant(
|
3199
|
+
&self,
|
3200
|
+
env: &str,
|
3201
|
+
tool: &str,
|
3202
|
+
) -> Result<(Command, PathBuf), Error> {
|
3203
|
+
let target = self.get_target()?;
|
3204
|
+
let mut name = PathBuf::new();
|
3205
|
+
let tool_opt: Option<Command> = self
|
3206
|
+
.env_tool(env)
|
3207
|
+
.map(|(tool, _wrapper, args)| {
|
3208
|
+
name.clone_from(&tool);
|
3209
|
+
let mut cmd = self.cmd(tool);
|
3210
|
+
cmd.args(args);
|
3211
|
+
cmd
|
3212
|
+
})
|
3213
|
+
.or_else(|| {
|
3214
|
+
if target.os == "emscripten" {
|
3215
|
+
// Windows use bat files so we have to be a bit more specific
|
3216
|
+
if cfg!(windows) {
|
3217
|
+
let mut cmd = self.cmd("cmd");
|
3218
|
+
name = format!("em{}.bat", tool).into();
|
3219
|
+
cmd.arg("/c").arg(&name);
|
3220
|
+
Some(cmd)
|
3221
|
+
} else {
|
3222
|
+
name = format!("em{}", tool).into();
|
3223
|
+
Some(self.cmd(&name))
|
3224
|
+
}
|
3225
|
+
} else if target.arch == "wasm32" || target.arch == "wasm64" {
|
3226
|
+
// Formally speaking one should be able to use this approach,
|
3227
|
+
// parsing -print-search-dirs output, to cover all clang targets,
|
3228
|
+
// including Android SDKs and other cross-compilation scenarios...
|
3229
|
+
// And even extend it to gcc targets by searching for "ar" instead
|
3230
|
+
// of "llvm-ar"...
|
3231
|
+
let compiler = self.get_base_compiler().ok()?;
|
3232
|
+
if compiler.is_like_clang() {
|
3233
|
+
name = format!("llvm-{}", tool).into();
|
3234
|
+
self.search_programs(
|
3235
|
+
&mut self.cmd(&compiler.path),
|
3236
|
+
&name,
|
3237
|
+
&self.cargo_output,
|
3238
|
+
)
|
3239
|
+
.map(|name| self.cmd(name))
|
3240
|
+
} else {
|
3241
|
+
None
|
3242
|
+
}
|
3243
|
+
} else {
|
3244
|
+
None
|
3245
|
+
}
|
3246
|
+
});
|
3247
|
+
|
3248
|
+
let default = tool.to_string();
|
3249
|
+
let tool = match tool_opt {
|
3250
|
+
Some(t) => t,
|
3251
|
+
None => {
|
3252
|
+
if target.os == "android" {
|
3253
|
+
name = format!("llvm-{}", tool).into();
|
3254
|
+
match Command::new(&name).arg("--version").status() {
|
3255
|
+
Ok(status) if status.success() => (),
|
3256
|
+
_ => {
|
3257
|
+
// FIXME: Use parsed target.
|
3258
|
+
let raw_target = self.get_raw_target()?;
|
3259
|
+
name = format!("{}-{}", raw_target.replace("armv7", "arm"), tool).into()
|
3260
|
+
}
|
3261
|
+
}
|
3262
|
+
self.cmd(&name)
|
3263
|
+
} else if target.env == "msvc" {
|
3264
|
+
// NOTE: There isn't really a ranlib on msvc, so arguably we should return
|
3265
|
+
// `None` somehow here. But in general, callers will already have to be aware
|
3266
|
+
// of not running ranlib on Windows anyway, so it feels okay to return lib.exe
|
3267
|
+
// here.
|
3268
|
+
|
3269
|
+
let compiler = self.get_base_compiler()?;
|
3270
|
+
let mut lib = String::new();
|
3271
|
+
if compiler.family == (ToolFamily::Msvc { clang_cl: true }) {
|
3272
|
+
// See if there is 'llvm-lib' next to 'clang-cl'
|
3273
|
+
// Another possibility could be to see if there is 'clang'
|
3274
|
+
// next to 'clang-cl' and use 'search_programs()' to locate
|
3275
|
+
// 'llvm-lib'. This is because 'clang-cl' doesn't support
|
3276
|
+
// the -print-search-dirs option.
|
3277
|
+
if let Some(mut cmd) = self.which(&compiler.path, None) {
|
3278
|
+
cmd.pop();
|
3279
|
+
cmd.push("llvm-lib.exe");
|
3280
|
+
if let Some(llvm_lib) = self.which(&cmd, None) {
|
3281
|
+
llvm_lib.to_str().unwrap().clone_into(&mut lib);
|
3282
|
+
}
|
3283
|
+
}
|
3284
|
+
}
|
3285
|
+
|
3286
|
+
if lib.is_empty() {
|
3287
|
+
name = PathBuf::from("lib.exe");
|
3288
|
+
let mut cmd = match self.windows_registry_find(&target, "lib.exe") {
|
3289
|
+
Some(t) => t,
|
3290
|
+
None => self.cmd("lib.exe"),
|
3291
|
+
};
|
3292
|
+
if target.full_arch == "arm64ec" {
|
3293
|
+
cmd.arg("/machine:arm64ec");
|
3294
|
+
}
|
3295
|
+
cmd
|
3296
|
+
} else {
|
3297
|
+
name = lib.into();
|
3298
|
+
self.cmd(&name)
|
3299
|
+
}
|
3300
|
+
} else if target.os == "illumos" {
|
3301
|
+
// The default 'ar' on illumos uses a non-standard flags,
|
3302
|
+
// but the OS comes bundled with a GNU-compatible variant.
|
3303
|
+
//
|
3304
|
+
// Use the GNU-variant to match other Unix systems.
|
3305
|
+
name = format!("g{}", tool).into();
|
3306
|
+
self.cmd(&name)
|
3307
|
+
} else if self.get_is_cross_compile()? {
|
3308
|
+
match self.prefix_for_target(&self.get_raw_target()?) {
|
3309
|
+
Some(p) => {
|
3310
|
+
// GCC uses $target-gcc-ar, whereas binutils uses $target-ar -- try both.
|
3311
|
+
// Prefer -ar if it exists, as builds of `-gcc-ar` have been observed to be
|
3312
|
+
// outright broken (such as when targeting freebsd with `--disable-lto`
|
3313
|
+
// toolchain where the archiver attempts to load the LTO plugin anyway but
|
3314
|
+
// fails to find one).
|
3315
|
+
//
|
3316
|
+
// The same applies to ranlib.
|
3317
|
+
let mut chosen = default;
|
3318
|
+
for &infix in &["", "-gcc"] {
|
3319
|
+
let target_p = format!("{}{}-{}", p, infix, tool);
|
3320
|
+
if Command::new(&target_p).output().is_ok() {
|
3321
|
+
chosen = target_p;
|
3322
|
+
break;
|
3323
|
+
}
|
3324
|
+
}
|
3325
|
+
name = chosen.into();
|
3326
|
+
self.cmd(&name)
|
3327
|
+
}
|
3328
|
+
None => {
|
3329
|
+
name = default.into();
|
3330
|
+
self.cmd(&name)
|
3331
|
+
}
|
3332
|
+
}
|
3333
|
+
} else {
|
3334
|
+
name = default.into();
|
3335
|
+
self.cmd(&name)
|
3336
|
+
}
|
3337
|
+
}
|
3338
|
+
};
|
3339
|
+
|
3340
|
+
Ok((tool, name))
|
3341
|
+
}
|
3342
|
+
|
3343
|
+
// FIXME: Use parsed target instead of raw target.
|
3344
|
+
fn prefix_for_target(&self, target: &str) -> Option<Cow<'static, str>> {
|
3345
|
+
// CROSS_COMPILE is of the form: "arm-linux-gnueabi-"
|
3346
|
+
self.getenv("CROSS_COMPILE")
|
3347
|
+
.as_deref()
|
3348
|
+
.map(|s| s.to_string_lossy().trim_end_matches('-').to_owned())
|
3349
|
+
.map(Cow::Owned)
|
3350
|
+
.or_else(|| {
|
3351
|
+
// Put aside RUSTC_LINKER's prefix to be used as second choice, after CROSS_COMPILE
|
3352
|
+
self.getenv("RUSTC_LINKER").and_then(|var| {
|
3353
|
+
var.to_string_lossy()
|
3354
|
+
.strip_suffix("-gcc")
|
3355
|
+
.map(str::to_string)
|
3356
|
+
.map(Cow::Owned)
|
3357
|
+
})
|
3358
|
+
})
|
3359
|
+
.or_else(|| {
|
3360
|
+
match target {
|
3361
|
+
// Note: there is no `aarch64-pc-windows-gnu` target, only `-gnullvm`
|
3362
|
+
"aarch64-pc-windows-gnullvm" => Some("aarch64-w64-mingw32"),
|
3363
|
+
"aarch64-uwp-windows-gnu" => Some("aarch64-w64-mingw32"),
|
3364
|
+
"aarch64-unknown-linux-gnu" => Some("aarch64-linux-gnu"),
|
3365
|
+
"aarch64-unknown-linux-musl" => Some("aarch64-linux-musl"),
|
3366
|
+
"aarch64-unknown-netbsd" => Some("aarch64--netbsd"),
|
3367
|
+
"arm-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
|
3368
|
+
"armv4t-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
|
3369
|
+
"armv5te-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
|
3370
|
+
"armv5te-unknown-linux-musleabi" => Some("arm-linux-gnueabi"),
|
3371
|
+
"arm-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
|
3372
|
+
"arm-unknown-linux-musleabi" => Some("arm-linux-musleabi"),
|
3373
|
+
"arm-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
|
3374
|
+
"arm-unknown-netbsd-eabi" => Some("arm--netbsdelf-eabi"),
|
3375
|
+
"armv6-unknown-netbsd-eabihf" => Some("armv6--netbsdelf-eabihf"),
|
3376
|
+
"armv7-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
|
3377
|
+
"armv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
|
3378
|
+
"armv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
|
3379
|
+
"armv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
|
3380
|
+
"armv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
|
3381
|
+
"thumbv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
|
3382
|
+
"thumbv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
|
3383
|
+
"thumbv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
|
3384
|
+
"thumbv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
|
3385
|
+
"armv7-unknown-netbsd-eabihf" => Some("armv7--netbsdelf-eabihf"),
|
3386
|
+
"hexagon-unknown-linux-musl" => Some("hexagon-linux-musl"),
|
3387
|
+
"i586-unknown-linux-musl" => Some("musl"),
|
3388
|
+
"i686-pc-windows-gnu" => Some("i686-w64-mingw32"),
|
3389
|
+
"i686-pc-windows-gnullvm" => Some("i686-w64-mingw32"),
|
3390
|
+
"i686-uwp-windows-gnu" => Some("i686-w64-mingw32"),
|
3391
|
+
"i686-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
|
3392
|
+
"i686-linux-gnu",
|
3393
|
+
"x86_64-linux-gnu", // transparently support gcc-multilib
|
3394
|
+
]), // explicit None if not found, so caller knows to fall back
|
3395
|
+
"i686-unknown-linux-musl" => Some("musl"),
|
3396
|
+
"i686-unknown-netbsd" => Some("i486--netbsdelf"),
|
3397
|
+
"loongarch64-unknown-linux-gnu" => Some("loongarch64-linux-gnu"),
|
3398
|
+
"mips-unknown-linux-gnu" => Some("mips-linux-gnu"),
|
3399
|
+
"mips-unknown-linux-musl" => Some("mips-linux-musl"),
|
3400
|
+
"mipsel-unknown-linux-gnu" => Some("mipsel-linux-gnu"),
|
3401
|
+
"mipsel-unknown-linux-musl" => Some("mipsel-linux-musl"),
|
3402
|
+
"mips64-unknown-linux-gnuabi64" => Some("mips64-linux-gnuabi64"),
|
3403
|
+
"mips64el-unknown-linux-gnuabi64" => Some("mips64el-linux-gnuabi64"),
|
3404
|
+
"mipsisa32r6-unknown-linux-gnu" => Some("mipsisa32r6-linux-gnu"),
|
3405
|
+
"mipsisa32r6el-unknown-linux-gnu" => Some("mipsisa32r6el-linux-gnu"),
|
3406
|
+
"mipsisa64r6-unknown-linux-gnuabi64" => Some("mipsisa64r6-linux-gnuabi64"),
|
3407
|
+
"mipsisa64r6el-unknown-linux-gnuabi64" => Some("mipsisa64r6el-linux-gnuabi64"),
|
3408
|
+
"powerpc-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
|
3409
|
+
"powerpc-unknown-linux-gnuspe" => Some("powerpc-linux-gnuspe"),
|
3410
|
+
"powerpc-unknown-netbsd" => Some("powerpc--netbsd"),
|
3411
|
+
"powerpc64-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
|
3412
|
+
"powerpc64le-unknown-linux-gnu" => Some("powerpc64le-linux-gnu"),
|
3413
|
+
"riscv32i-unknown-none-elf" => self.find_working_gnu_prefix(&[
|
3414
|
+
"riscv32-unknown-elf",
|
3415
|
+
"riscv64-unknown-elf",
|
3416
|
+
"riscv-none-embed",
|
3417
|
+
]),
|
3418
|
+
"riscv32imac-esp-espidf" => Some("riscv32-esp-elf"),
|
3419
|
+
"riscv32imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
|
3420
|
+
"riscv32-unknown-elf",
|
3421
|
+
"riscv64-unknown-elf",
|
3422
|
+
"riscv-none-embed",
|
3423
|
+
]),
|
3424
|
+
"riscv32imac-unknown-xous-elf" => self.find_working_gnu_prefix(&[
|
3425
|
+
"riscv32-unknown-elf",
|
3426
|
+
"riscv64-unknown-elf",
|
3427
|
+
"riscv-none-embed",
|
3428
|
+
]),
|
3429
|
+
"riscv32imc-esp-espidf" => Some("riscv32-esp-elf"),
|
3430
|
+
"riscv32imc-unknown-none-elf" => self.find_working_gnu_prefix(&[
|
3431
|
+
"riscv32-unknown-elf",
|
3432
|
+
"riscv64-unknown-elf",
|
3433
|
+
"riscv-none-embed",
|
3434
|
+
]),
|
3435
|
+
"riscv64gc-unknown-none-elf" => self.find_working_gnu_prefix(&[
|
3436
|
+
"riscv64-unknown-elf",
|
3437
|
+
"riscv32-unknown-elf",
|
3438
|
+
"riscv-none-embed",
|
3439
|
+
]),
|
3440
|
+
"riscv64imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
|
3441
|
+
"riscv64-unknown-elf",
|
3442
|
+
"riscv32-unknown-elf",
|
3443
|
+
"riscv-none-embed",
|
3444
|
+
]),
|
3445
|
+
"riscv64gc-unknown-linux-gnu" => Some("riscv64-linux-gnu"),
|
3446
|
+
"riscv32gc-unknown-linux-gnu" => Some("riscv32-linux-gnu"),
|
3447
|
+
"riscv64gc-unknown-linux-musl" => Some("riscv64-linux-musl"),
|
3448
|
+
"riscv32gc-unknown-linux-musl" => Some("riscv32-linux-musl"),
|
3449
|
+
"riscv64gc-unknown-netbsd" => Some("riscv64--netbsd"),
|
3450
|
+
"s390x-unknown-linux-gnu" => Some("s390x-linux-gnu"),
|
3451
|
+
"sparc-unknown-linux-gnu" => Some("sparc-linux-gnu"),
|
3452
|
+
"sparc64-unknown-linux-gnu" => Some("sparc64-linux-gnu"),
|
3453
|
+
"sparc64-unknown-netbsd" => Some("sparc64--netbsd"),
|
3454
|
+
"sparcv9-sun-solaris" => Some("sparcv9-sun-solaris"),
|
3455
|
+
"armv7a-none-eabi" => Some("arm-none-eabi"),
|
3456
|
+
"armv7a-none-eabihf" => Some("arm-none-eabi"),
|
3457
|
+
"armebv7r-none-eabi" => Some("arm-none-eabi"),
|
3458
|
+
"armebv7r-none-eabihf" => Some("arm-none-eabi"),
|
3459
|
+
"armv7r-none-eabi" => Some("arm-none-eabi"),
|
3460
|
+
"armv7r-none-eabihf" => Some("arm-none-eabi"),
|
3461
|
+
"armv8r-none-eabihf" => Some("arm-none-eabi"),
|
3462
|
+
"thumbv6m-none-eabi" => Some("arm-none-eabi"),
|
3463
|
+
"thumbv7em-none-eabi" => Some("arm-none-eabi"),
|
3464
|
+
"thumbv7em-none-eabihf" => Some("arm-none-eabi"),
|
3465
|
+
"thumbv7m-none-eabi" => Some("arm-none-eabi"),
|
3466
|
+
"thumbv8m.base-none-eabi" => Some("arm-none-eabi"),
|
3467
|
+
"thumbv8m.main-none-eabi" => Some("arm-none-eabi"),
|
3468
|
+
"thumbv8m.main-none-eabihf" => Some("arm-none-eabi"),
|
3469
|
+
"x86_64-pc-windows-gnu" => Some("x86_64-w64-mingw32"),
|
3470
|
+
"x86_64-pc-windows-gnullvm" => Some("x86_64-w64-mingw32"),
|
3471
|
+
"x86_64-uwp-windows-gnu" => Some("x86_64-w64-mingw32"),
|
3472
|
+
"x86_64-rumprun-netbsd" => Some("x86_64-rumprun-netbsd"),
|
3473
|
+
"x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
|
3474
|
+
"x86_64-linux-gnu", // rustfmt wrap
|
3475
|
+
]), // explicit None if not found, so caller knows to fall back
|
3476
|
+
"x86_64-unknown-linux-musl" => Some("musl"),
|
3477
|
+
"x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
|
3478
|
+
_ => None,
|
3479
|
+
}
|
3480
|
+
.map(Cow::Borrowed)
|
3481
|
+
})
|
3482
|
+
}
|
3483
|
+
|
3484
|
+
/// Some platforms have multiple, compatible, canonical prefixes. Look through
|
3485
|
+
/// each possible prefix for a compiler that exists and return it. The prefixes
|
3486
|
+
/// should be ordered from most-likely to least-likely.
|
3487
|
+
fn find_working_gnu_prefix(&self, prefixes: &[&'static str]) -> Option<&'static str> {
|
3488
|
+
let suffix = if self.cpp { "-g++" } else { "-gcc" };
|
3489
|
+
let extension = std::env::consts::EXE_SUFFIX;
|
3490
|
+
|
3491
|
+
// Loop through PATH entries searching for each toolchain. This ensures that we
|
3492
|
+
// are more likely to discover the toolchain early on, because chances are good
|
3493
|
+
// that the desired toolchain is in one of the higher-priority paths.
|
3494
|
+
self.getenv("PATH")
|
3495
|
+
.as_ref()
|
3496
|
+
.and_then(|path_entries| {
|
3497
|
+
env::split_paths(path_entries).find_map(|path_entry| {
|
3498
|
+
for prefix in prefixes {
|
3499
|
+
let target_compiler = format!("{}{}{}", prefix, suffix, extension);
|
3500
|
+
if path_entry.join(&target_compiler).exists() {
|
3501
|
+
return Some(prefix);
|
3502
|
+
}
|
3503
|
+
}
|
3504
|
+
None
|
3505
|
+
})
|
3506
|
+
})
|
3507
|
+
.copied()
|
3508
|
+
// If no toolchain was found, provide the first toolchain that was passed in.
|
3509
|
+
// This toolchain has been shown not to exist, however it will appear in the
|
3510
|
+
// error that is shown to the user which should make it easier to search for
|
3511
|
+
// where it should be obtained.
|
3512
|
+
.or_else(|| prefixes.first().copied())
|
3513
|
+
}
|
3514
|
+
|
3515
|
+
fn get_target(&self) -> Result<TargetInfo<'_>, Error> {
|
3516
|
+
match &self.target {
|
3517
|
+
Some(t) if Some(&**t) != self.getenv_unwrap_str("TARGET").ok().as_deref() => t.parse(),
|
3518
|
+
// Fetch target information from environment if not set, or if the
|
3519
|
+
// target was the same as the TARGET environment variable, in
|
3520
|
+
// case the user did `build.target(&env::var("TARGET").unwrap())`.
|
3521
|
+
_ => self
|
3522
|
+
.build_cache
|
3523
|
+
.target_info_parser
|
3524
|
+
.parse_from_cargo_environment_variables(),
|
3525
|
+
}
|
3526
|
+
}
|
3527
|
+
|
3528
|
+
fn get_raw_target(&self) -> Result<Cow<'_, str>, Error> {
|
3529
|
+
match &self.target {
|
3530
|
+
Some(t) => Ok(Cow::Borrowed(t)),
|
3531
|
+
None => self.getenv_unwrap_str("TARGET").map(Cow::Owned),
|
3532
|
+
}
|
3533
|
+
}
|
3534
|
+
|
3535
|
+
fn get_is_cross_compile(&self) -> Result<bool, Error> {
|
3536
|
+
let target = self.get_raw_target()?;
|
3537
|
+
let host: Cow<'_, str> = match &self.host {
|
3538
|
+
Some(h) => Cow::Borrowed(h),
|
3539
|
+
None => Cow::Owned(self.getenv_unwrap_str("HOST")?),
|
3540
|
+
};
|
3541
|
+
Ok(host != target)
|
3542
|
+
}
|
3543
|
+
|
3544
|
+
fn get_opt_level(&self) -> Result<Cow<'_, str>, Error> {
|
3545
|
+
match &self.opt_level {
|
3546
|
+
Some(ol) => Ok(Cow::Borrowed(ol)),
|
3547
|
+
None => self.getenv_unwrap_str("OPT_LEVEL").map(Cow::Owned),
|
3548
|
+
}
|
3549
|
+
}
|
3550
|
+
|
3551
|
+
fn get_debug(&self) -> bool {
|
3552
|
+
self.debug.unwrap_or_else(|| self.getenv_boolean("DEBUG"))
|
3553
|
+
}
|
3554
|
+
|
3555
|
+
fn get_shell_escaped_flags(&self) -> bool {
|
3556
|
+
self.shell_escaped_flags
|
3557
|
+
.unwrap_or_else(|| self.getenv_boolean("CC_SHELL_ESCAPED_FLAGS"))
|
3558
|
+
}
|
3559
|
+
|
3560
|
+
fn get_dwarf_version(&self) -> Option<u32> {
|
3561
|
+
// Tentatively matches the DWARF version defaults as of rustc 1.62.
|
3562
|
+
let target = self.get_target().ok()?;
|
3563
|
+
if matches!(
|
3564
|
+
target.os,
|
3565
|
+
"android" | "dragonfly" | "freebsd" | "netbsd" | "openbsd"
|
3566
|
+
) || target.vendor == "apple"
|
3567
|
+
|| (target.os == "windows" && target.env == "gnu")
|
3568
|
+
{
|
3569
|
+
Some(2)
|
3570
|
+
} else if target.os == "linux" {
|
3571
|
+
Some(4)
|
3572
|
+
} else {
|
3573
|
+
None
|
3574
|
+
}
|
3575
|
+
}
|
3576
|
+
|
3577
|
+
fn get_force_frame_pointer(&self) -> bool {
|
3578
|
+
self.force_frame_pointer.unwrap_or_else(|| self.get_debug())
|
3579
|
+
}
|
3580
|
+
|
3581
|
+
fn get_out_dir(&self) -> Result<Cow<'_, Path>, Error> {
|
3582
|
+
match &self.out_dir {
|
3583
|
+
Some(p) => Ok(Cow::Borrowed(&**p)),
|
3584
|
+
None => self
|
3585
|
+
.getenv("OUT_DIR")
|
3586
|
+
.as_deref()
|
3587
|
+
.map(PathBuf::from)
|
3588
|
+
.map(Cow::Owned)
|
3589
|
+
.ok_or_else(|| {
|
3590
|
+
Error::new(
|
3591
|
+
ErrorKind::EnvVarNotFound,
|
3592
|
+
"Environment variable OUT_DIR not defined.",
|
3593
|
+
)
|
3594
|
+
}),
|
3595
|
+
}
|
3596
|
+
}
|
3597
|
+
|
3598
|
+
#[allow(clippy::disallowed_methods)]
|
3599
|
+
fn getenv(&self, v: &str) -> Option<Arc<OsStr>> {
|
3600
|
+
// Returns true for environment variables cargo sets for build scripts:
|
3601
|
+
// https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
|
3602
|
+
//
|
3603
|
+
// This handles more of the vars than we actually use (it tries to check
|
3604
|
+
// complete-ish set), just to avoid needing maintenance if/when new
|
3605
|
+
// calls to `getenv`/`getenv_unwrap` are added.
|
3606
|
+
fn provided_by_cargo(envvar: &str) -> bool {
|
3607
|
+
match envvar {
|
3608
|
+
v if v.starts_with("CARGO") || v.starts_with("RUSTC") => true,
|
3609
|
+
"HOST" | "TARGET" | "RUSTDOC" | "OUT_DIR" | "OPT_LEVEL" | "DEBUG" | "PROFILE"
|
3610
|
+
| "NUM_JOBS" | "RUSTFLAGS" => true,
|
3611
|
+
_ => false,
|
3612
|
+
}
|
3613
|
+
}
|
3614
|
+
if let Some(val) = self.build_cache.env_cache.read().unwrap().get(v).cloned() {
|
3615
|
+
return val;
|
3616
|
+
}
|
3617
|
+
// Excluding `PATH` prevents spurious rebuilds on Windows, see
|
3618
|
+
// <https://github.com/rust-lang/cc-rs/pull/1215> for details.
|
3619
|
+
if self.emit_rerun_if_env_changed && !provided_by_cargo(v) && v != "PATH" {
|
3620
|
+
self.cargo_output
|
3621
|
+
.print_metadata(&format_args!("cargo:rerun-if-env-changed={}", v));
|
3622
|
+
}
|
3623
|
+
let r = env::var_os(v).map(Arc::from);
|
3624
|
+
self.cargo_output.print_metadata(&format_args!(
|
3625
|
+
"{} = {}",
|
3626
|
+
v,
|
3627
|
+
OptionOsStrDisplay(r.as_deref())
|
3628
|
+
));
|
3629
|
+
self.build_cache
|
3630
|
+
.env_cache
|
3631
|
+
.write()
|
3632
|
+
.unwrap()
|
3633
|
+
.insert(v.into(), r.clone());
|
3634
|
+
r
|
3635
|
+
}
|
3636
|
+
|
3637
|
+
/// get boolean flag that is either true or false
|
3638
|
+
fn getenv_boolean(&self, v: &str) -> bool {
|
3639
|
+
match self.getenv(v) {
|
3640
|
+
Some(s) => &*s != "0" && &*s != "false" && !s.is_empty(),
|
3641
|
+
None => false,
|
3642
|
+
}
|
3643
|
+
}
|
3644
|
+
|
3645
|
+
fn getenv_unwrap(&self, v: &str) -> Result<Arc<OsStr>, Error> {
|
3646
|
+
match self.getenv(v) {
|
3647
|
+
Some(s) => Ok(s),
|
3648
|
+
None => Err(Error::new(
|
3649
|
+
ErrorKind::EnvVarNotFound,
|
3650
|
+
format!("Environment variable {} not defined.", v),
|
3651
|
+
)),
|
3652
|
+
}
|
3653
|
+
}
|
3654
|
+
|
3655
|
+
fn getenv_unwrap_str(&self, v: &str) -> Result<String, Error> {
|
3656
|
+
let env = self.getenv_unwrap(v)?;
|
3657
|
+
env.to_str().map(String::from).ok_or_else(|| {
|
3658
|
+
Error::new(
|
3659
|
+
ErrorKind::EnvVarNotFound,
|
3660
|
+
format!("Environment variable {} is not valid utf-8.", v),
|
3661
|
+
)
|
3662
|
+
})
|
3663
|
+
}
|
3664
|
+
|
3665
|
+
fn getenv_with_target_prefixes(&self, var_base: &str) -> Result<Arc<OsStr>, Error> {
|
3666
|
+
let target = self.get_raw_target()?;
|
3667
|
+
let kind = if self.get_is_cross_compile()? {
|
3668
|
+
"TARGET"
|
3669
|
+
} else {
|
3670
|
+
"HOST"
|
3671
|
+
};
|
3672
|
+
let target_u = target.replace('-', "_");
|
3673
|
+
let res = self
|
3674
|
+
.getenv(&format!("{}_{}", var_base, target))
|
3675
|
+
.or_else(|| self.getenv(&format!("{}_{}", var_base, target_u)))
|
3676
|
+
.or_else(|| self.getenv(&format!("{}_{}", kind, var_base)))
|
3677
|
+
.or_else(|| self.getenv(var_base));
|
3678
|
+
|
3679
|
+
match res {
|
3680
|
+
Some(res) => Ok(res),
|
3681
|
+
None => Err(Error::new(
|
3682
|
+
ErrorKind::EnvVarNotFound,
|
3683
|
+
format!("Could not find environment variable {}.", var_base),
|
3684
|
+
)),
|
3685
|
+
}
|
3686
|
+
}
|
3687
|
+
|
3688
|
+
fn envflags(&self, name: &str) -> Result<Vec<String>, Error> {
|
3689
|
+
let env_os = self.getenv_with_target_prefixes(name)?;
|
3690
|
+
let env = env_os.to_string_lossy();
|
3691
|
+
|
3692
|
+
if self.get_shell_escaped_flags() {
|
3693
|
+
Ok(Shlex::new(&env).collect())
|
3694
|
+
} else {
|
3695
|
+
Ok(env
|
3696
|
+
.split_ascii_whitespace()
|
3697
|
+
.map(ToString::to_string)
|
3698
|
+
.collect())
|
3699
|
+
}
|
3700
|
+
}
|
3701
|
+
|
3702
|
+
fn fix_env_for_apple_os(&self, cmd: &mut Command) -> Result<(), Error> {
|
3703
|
+
let target = self.get_target()?;
|
3704
|
+
if cfg!(target_os = "macos") && target.os == "macos" {
|
3705
|
+
// Additionally, `IPHONEOS_DEPLOYMENT_TARGET` must not be set when using the Xcode linker at
|
3706
|
+
// "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld",
|
3707
|
+
// although this is apparently ignored when using the linker at "/usr/bin/ld".
|
3708
|
+
cmd.env_remove("IPHONEOS_DEPLOYMENT_TARGET");
|
3709
|
+
}
|
3710
|
+
Ok(())
|
3711
|
+
}
|
3712
|
+
|
3713
|
+
fn apple_sdk_root_inner(&self, sdk: &str) -> Result<Arc<OsStr>, Error> {
|
3714
|
+
// Code copied from rustc's compiler/rustc_codegen_ssa/src/back/link.rs.
|
3715
|
+
if let Some(sdkroot) = self.getenv("SDKROOT") {
|
3716
|
+
let p = Path::new(&sdkroot);
|
3717
|
+
let does_sdkroot_contain = |strings: &[&str]| {
|
3718
|
+
let sdkroot_str = p.to_string_lossy();
|
3719
|
+
strings.iter().any(|s| sdkroot_str.contains(s))
|
3720
|
+
};
|
3721
|
+
match sdk {
|
3722
|
+
// Ignore `SDKROOT` if it's clearly set for the wrong platform.
|
3723
|
+
"appletvos"
|
3724
|
+
if does_sdkroot_contain(&["TVSimulator.platform", "MacOSX.platform"]) => {}
|
3725
|
+
"appletvsimulator"
|
3726
|
+
if does_sdkroot_contain(&["TVOS.platform", "MacOSX.platform"]) => {}
|
3727
|
+
"iphoneos"
|
3728
|
+
if does_sdkroot_contain(&["iPhoneSimulator.platform", "MacOSX.platform"]) => {}
|
3729
|
+
"iphonesimulator"
|
3730
|
+
if does_sdkroot_contain(&["iPhoneOS.platform", "MacOSX.platform"]) => {}
|
3731
|
+
"macosx10.15"
|
3732
|
+
if does_sdkroot_contain(&["iPhoneOS.platform", "iPhoneSimulator.platform"]) => {
|
3733
|
+
}
|
3734
|
+
"watchos"
|
3735
|
+
if does_sdkroot_contain(&["WatchSimulator.platform", "MacOSX.platform"]) => {}
|
3736
|
+
"watchsimulator"
|
3737
|
+
if does_sdkroot_contain(&["WatchOS.platform", "MacOSX.platform"]) => {}
|
3738
|
+
"xros" if does_sdkroot_contain(&["XRSimulator.platform", "MacOSX.platform"]) => {}
|
3739
|
+
"xrsimulator" if does_sdkroot_contain(&["XROS.platform", "MacOSX.platform"]) => {}
|
3740
|
+
// Ignore `SDKROOT` if it's not a valid path.
|
3741
|
+
_ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
|
3742
|
+
_ => return Ok(sdkroot),
|
3743
|
+
}
|
3744
|
+
}
|
3745
|
+
|
3746
|
+
let sdk_path = run_output(
|
3747
|
+
self.cmd("xcrun")
|
3748
|
+
.arg("--show-sdk-path")
|
3749
|
+
.arg("--sdk")
|
3750
|
+
.arg(sdk),
|
3751
|
+
"xcrun",
|
3752
|
+
&self.cargo_output,
|
3753
|
+
)?;
|
3754
|
+
|
3755
|
+
let sdk_path = match String::from_utf8(sdk_path) {
|
3756
|
+
Ok(p) => p,
|
3757
|
+
Err(_) => {
|
3758
|
+
return Err(Error::new(
|
3759
|
+
ErrorKind::IOError,
|
3760
|
+
"Unable to determine Apple SDK path.",
|
3761
|
+
));
|
3762
|
+
}
|
3763
|
+
};
|
3764
|
+
Ok(Arc::from(OsStr::new(sdk_path.trim())))
|
3765
|
+
}
|
3766
|
+
|
3767
|
+
fn apple_sdk_root(&self, target: &TargetInfo<'_>) -> Result<Arc<OsStr>, Error> {
|
3768
|
+
let sdk = target.apple_sdk_name();
|
3769
|
+
|
3770
|
+
if let Some(ret) = self
|
3771
|
+
.build_cache
|
3772
|
+
.apple_sdk_root_cache
|
3773
|
+
.read()
|
3774
|
+
.expect("apple_sdk_root_cache lock failed")
|
3775
|
+
.get(sdk)
|
3776
|
+
.cloned()
|
3777
|
+
{
|
3778
|
+
return Ok(ret);
|
3779
|
+
}
|
3780
|
+
let sdk_path = self.apple_sdk_root_inner(sdk)?;
|
3781
|
+
self.build_cache
|
3782
|
+
.apple_sdk_root_cache
|
3783
|
+
.write()
|
3784
|
+
.expect("apple_sdk_root_cache lock failed")
|
3785
|
+
.insert(sdk.into(), sdk_path.clone());
|
3786
|
+
Ok(sdk_path)
|
3787
|
+
}
|
3788
|
+
|
3789
|
+
fn apple_deployment_target(&self, target: &TargetInfo<'_>) -> Arc<str> {
|
3790
|
+
let sdk = target.apple_sdk_name();
|
3791
|
+
if let Some(ret) = self
|
3792
|
+
.build_cache
|
3793
|
+
.apple_versions_cache
|
3794
|
+
.read()
|
3795
|
+
.expect("apple_versions_cache lock failed")
|
3796
|
+
.get(sdk)
|
3797
|
+
.cloned()
|
3798
|
+
{
|
3799
|
+
return ret;
|
3800
|
+
}
|
3801
|
+
|
3802
|
+
let default_deployment_from_sdk = || -> Option<Arc<str>> {
|
3803
|
+
let version = run_output(
|
3804
|
+
self.cmd("xcrun")
|
3805
|
+
.arg("--show-sdk-version")
|
3806
|
+
.arg("--sdk")
|
3807
|
+
.arg(sdk),
|
3808
|
+
"xcrun",
|
3809
|
+
&self.cargo_output,
|
3810
|
+
)
|
3811
|
+
.ok()?;
|
3812
|
+
|
3813
|
+
Some(Arc::from(std::str::from_utf8(&version).ok()?.trim()))
|
3814
|
+
};
|
3815
|
+
|
3816
|
+
let deployment_from_env = |name: &str| -> Option<Arc<str>> {
|
3817
|
+
// note that self.env isn't hit in production codepaths, its mostly just for tests which don't
|
3818
|
+
// set the real env
|
3819
|
+
self.env
|
3820
|
+
.iter()
|
3821
|
+
.find(|(k, _)| &**k == OsStr::new(name))
|
3822
|
+
.map(|(_, v)| v)
|
3823
|
+
.cloned()
|
3824
|
+
.or_else(|| self.getenv(name))?
|
3825
|
+
.to_str()
|
3826
|
+
.map(Arc::from)
|
3827
|
+
};
|
3828
|
+
|
3829
|
+
// Determines if the acquired deployment target is too low to support modern C++ on some Apple platform.
|
3830
|
+
//
|
3831
|
+
// A long time ago they used libstdc++, but since macOS 10.9 and iOS 7 libc++ has been the library the SDKs provide to link against.
|
3832
|
+
// If a `cc`` config wants to use C++, we round up to these versions as the baseline.
|
3833
|
+
let maybe_cpp_version_baseline = |deployment_target_ver: Arc<str>| -> Option<Arc<str>> {
|
3834
|
+
if !self.cpp {
|
3835
|
+
return Some(deployment_target_ver);
|
3836
|
+
}
|
3837
|
+
|
3838
|
+
let mut deployment_target = deployment_target_ver
|
3839
|
+
.split('.')
|
3840
|
+
.map(|v| v.parse::<u32>().expect("integer version"));
|
3841
|
+
|
3842
|
+
match target.os {
|
3843
|
+
"macos" => {
|
3844
|
+
let major = deployment_target.next().unwrap_or(0);
|
3845
|
+
let minor = deployment_target.next().unwrap_or(0);
|
3846
|
+
|
3847
|
+
// If below 10.9, we ignore it and let the SDK's target definitions handle it.
|
3848
|
+
if major == 10 && minor < 9 {
|
3849
|
+
self.cargo_output.print_warning(&format_args!(
|
3850
|
+
"macOS deployment target ({}) too low, it will be increased",
|
3851
|
+
deployment_target_ver
|
3852
|
+
));
|
3853
|
+
return None;
|
3854
|
+
}
|
3855
|
+
}
|
3856
|
+
"ios" => {
|
3857
|
+
let major = deployment_target.next().unwrap_or(0);
|
3858
|
+
|
3859
|
+
// If below 10.7, we ignore it and let the SDK's target definitions handle it.
|
3860
|
+
if major < 7 {
|
3861
|
+
self.cargo_output.print_warning(&format_args!(
|
3862
|
+
"iOS deployment target ({}) too low, it will be increased",
|
3863
|
+
deployment_target_ver
|
3864
|
+
));
|
3865
|
+
return None;
|
3866
|
+
}
|
3867
|
+
}
|
3868
|
+
// watchOS, tvOS, visionOS, and others are all new enough that libc++ is their baseline.
|
3869
|
+
_ => {}
|
3870
|
+
}
|
3871
|
+
|
3872
|
+
// If the deployment target met or exceeded the C++ baseline
|
3873
|
+
Some(deployment_target_ver)
|
3874
|
+
};
|
3875
|
+
|
3876
|
+
// The hardcoded minimums here are subject to change in a future compiler release,
|
3877
|
+
// and only exist as last resort fallbacks. Don't consider them stable.
|
3878
|
+
// `cc` doesn't use rustc's `--print deployment-target`` because the compiler's defaults
|
3879
|
+
// don't align well with Apple's SDKs and other third-party libraries that require ~generally~ higher
|
3880
|
+
// deployment targets. rustc isn't interested in those by default though so its fine to be different here.
|
3881
|
+
//
|
3882
|
+
// If no explicit target is passed, `cc` defaults to the current Xcode SDK's `DefaultDeploymentTarget` for better
|
3883
|
+
// compatibility. This is also the crate's historical behavior and what has become a relied-on value.
|
3884
|
+
//
|
3885
|
+
// The ordering of env -> XCode SDK -> old rustc defaults is intentional for performance when using
|
3886
|
+
// an explicit target.
|
3887
|
+
let version: Arc<str> = match target.os {
|
3888
|
+
"macos" => deployment_from_env("MACOSX_DEPLOYMENT_TARGET")
|
3889
|
+
.and_then(maybe_cpp_version_baseline)
|
3890
|
+
.or_else(default_deployment_from_sdk)
|
3891
|
+
.unwrap_or_else(|| {
|
3892
|
+
if target.arch == "aarch64" {
|
3893
|
+
"11.0".into()
|
3894
|
+
} else {
|
3895
|
+
let default: Arc<str> = Arc::from("10.7");
|
3896
|
+
maybe_cpp_version_baseline(default.clone()).unwrap_or(default)
|
3897
|
+
}
|
3898
|
+
}),
|
3899
|
+
|
3900
|
+
"ios" => deployment_from_env("IPHONEOS_DEPLOYMENT_TARGET")
|
3901
|
+
.and_then(maybe_cpp_version_baseline)
|
3902
|
+
.or_else(default_deployment_from_sdk)
|
3903
|
+
.unwrap_or_else(|| "7.0".into()),
|
3904
|
+
|
3905
|
+
"watchos" => deployment_from_env("WATCHOS_DEPLOYMENT_TARGET")
|
3906
|
+
.or_else(default_deployment_from_sdk)
|
3907
|
+
.unwrap_or_else(|| "5.0".into()),
|
3908
|
+
|
3909
|
+
"tvos" => deployment_from_env("TVOS_DEPLOYMENT_TARGET")
|
3910
|
+
.or_else(default_deployment_from_sdk)
|
3911
|
+
.unwrap_or_else(|| "9.0".into()),
|
3912
|
+
|
3913
|
+
"visionos" => deployment_from_env("XROS_DEPLOYMENT_TARGET")
|
3914
|
+
.or_else(default_deployment_from_sdk)
|
3915
|
+
.unwrap_or_else(|| "1.0".into()),
|
3916
|
+
|
3917
|
+
os => unreachable!("unknown Apple OS: {}", os),
|
3918
|
+
};
|
3919
|
+
|
3920
|
+
self.build_cache
|
3921
|
+
.apple_versions_cache
|
3922
|
+
.write()
|
3923
|
+
.expect("apple_versions_cache lock failed")
|
3924
|
+
.insert(sdk.into(), version.clone());
|
3925
|
+
|
3926
|
+
version
|
3927
|
+
}
|
3928
|
+
|
3929
|
+
fn wasi_sysroot(&self) -> Result<Arc<OsStr>, Error> {
|
3930
|
+
if let Some(wasi_sysroot_path) = self.getenv("WASI_SYSROOT") {
|
3931
|
+
Ok(wasi_sysroot_path)
|
3932
|
+
} else {
|
3933
|
+
Err(Error::new(
|
3934
|
+
ErrorKind::EnvVarNotFound,
|
3935
|
+
"Environment variable WASI_SYSROOT not defined. Download sysroot from GitHub & setup environment variable WASI_SYSROOT targeting the folder.",
|
3936
|
+
))
|
3937
|
+
}
|
3938
|
+
}
|
3939
|
+
|
3940
|
+
fn cuda_file_count(&self) -> usize {
|
3941
|
+
self.files
|
3942
|
+
.iter()
|
3943
|
+
.filter(|file| file.extension() == Some(OsStr::new("cu")))
|
3944
|
+
.count()
|
3945
|
+
}
|
3946
|
+
|
3947
|
+
fn which(&self, tool: &Path, path_entries: Option<&OsStr>) -> Option<PathBuf> {
|
3948
|
+
fn check_exe(mut exe: PathBuf) -> Option<PathBuf> {
|
3949
|
+
let exe_ext = std::env::consts::EXE_EXTENSION;
|
3950
|
+
let check =
|
3951
|
+
exe.exists() || (!exe_ext.is_empty() && exe.set_extension(exe_ext) && exe.exists());
|
3952
|
+
check.then_some(exe)
|
3953
|
+
}
|
3954
|
+
|
3955
|
+
// Loop through PATH entries searching for the |tool|.
|
3956
|
+
let find_exe_in_path = |path_entries: &OsStr| -> Option<PathBuf> {
|
3957
|
+
env::split_paths(path_entries).find_map(|path_entry| check_exe(path_entry.join(tool)))
|
3958
|
+
};
|
3959
|
+
|
3960
|
+
// If |tool| is not just one "word," assume it's an actual path...
|
3961
|
+
if tool.components().count() > 1 {
|
3962
|
+
check_exe(PathBuf::from(tool))
|
3963
|
+
} else {
|
3964
|
+
path_entries
|
3965
|
+
.and_then(find_exe_in_path)
|
3966
|
+
.or_else(|| find_exe_in_path(&self.getenv("PATH")?))
|
3967
|
+
}
|
3968
|
+
}
|
3969
|
+
|
3970
|
+
/// search for |prog| on 'programs' path in '|cc| -print-search-dirs' output
|
3971
|
+
fn search_programs(
|
3972
|
+
&self,
|
3973
|
+
cc: &mut Command,
|
3974
|
+
prog: &Path,
|
3975
|
+
cargo_output: &CargoOutput,
|
3976
|
+
) -> Option<PathBuf> {
|
3977
|
+
let search_dirs = run_output(
|
3978
|
+
cc.arg("-print-search-dirs"),
|
3979
|
+
"cc",
|
3980
|
+
// this doesn't concern the compilation so we always want to show warnings.
|
3981
|
+
cargo_output,
|
3982
|
+
)
|
3983
|
+
.ok()?;
|
3984
|
+
// clang driver appears to be forcing UTF-8 output even on Windows,
|
3985
|
+
// hence from_utf8 is assumed to be usable in all cases.
|
3986
|
+
let search_dirs = std::str::from_utf8(&search_dirs).ok()?;
|
3987
|
+
for dirs in search_dirs.split(['\r', '\n']) {
|
3988
|
+
if let Some(path) = dirs.strip_prefix("programs: =") {
|
3989
|
+
return self.which(prog, Some(OsStr::new(path)));
|
3990
|
+
}
|
3991
|
+
}
|
3992
|
+
None
|
3993
|
+
}
|
3994
|
+
|
3995
|
+
fn windows_registry_find(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Command> {
|
3996
|
+
self.windows_registry_find_tool(target, tool)
|
3997
|
+
.map(|c| c.to_command())
|
3998
|
+
}
|
3999
|
+
|
4000
|
+
fn windows_registry_find_tool(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Tool> {
|
4001
|
+
struct BuildEnvGetter<'s>(&'s Build);
|
4002
|
+
|
4003
|
+
impl windows_registry::EnvGetter for BuildEnvGetter<'_> {
|
4004
|
+
fn get_env(&self, name: &str) -> Option<windows_registry::Env> {
|
4005
|
+
self.0.getenv(name).map(windows_registry::Env::Arced)
|
4006
|
+
}
|
4007
|
+
}
|
4008
|
+
|
4009
|
+
if target.env != "msvc" {
|
4010
|
+
return None;
|
4011
|
+
}
|
4012
|
+
|
4013
|
+
windows_registry::find_tool_inner(target.full_arch, tool, &BuildEnvGetter(self))
|
4014
|
+
}
|
4015
|
+
}
|
4016
|
+
|
4017
|
+
impl Default for Build {
|
4018
|
+
fn default() -> Build {
|
4019
|
+
Build::new()
|
4020
|
+
}
|
4021
|
+
}
|
4022
|
+
|
4023
|
+
fn fail(s: &str) -> ! {
|
4024
|
+
eprintln!("\n\nerror occurred in cc-rs: {}\n\n", s);
|
4025
|
+
std::process::exit(1);
|
4026
|
+
}
|
4027
|
+
|
4028
|
+
// Use by default minimum available API level
|
4029
|
+
// See note about naming here
|
4030
|
+
// https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/docs/BuildSystemMaintainers.md#Clang
|
4031
|
+
static NEW_STANDALONE_ANDROID_COMPILERS: [&str; 4] = [
|
4032
|
+
"aarch64-linux-android21-clang",
|
4033
|
+
"armv7a-linux-androideabi16-clang",
|
4034
|
+
"i686-linux-android16-clang",
|
4035
|
+
"x86_64-linux-android21-clang",
|
4036
|
+
];
|
4037
|
+
|
4038
|
+
// New "standalone" C/C++ cross-compiler executables from recent Android NDK
|
4039
|
+
// are just shell scripts that call main clang binary (from Android NDK) with
|
4040
|
+
// proper `--target` argument.
|
4041
|
+
//
|
4042
|
+
// For example, armv7a-linux-androideabi16-clang passes
|
4043
|
+
// `--target=armv7a-linux-androideabi16` to clang.
|
4044
|
+
// So to construct proper command line check if
|
4045
|
+
// `--target` argument would be passed or not to clang
|
4046
|
+
fn android_clang_compiler_uses_target_arg_internally(clang_path: &Path) -> bool {
|
4047
|
+
if let Some(filename) = clang_path.file_name() {
|
4048
|
+
if let Some(filename_str) = filename.to_str() {
|
4049
|
+
if let Some(idx) = filename_str.rfind('-') {
|
4050
|
+
return filename_str.split_at(idx).0.contains("android");
|
4051
|
+
}
|
4052
|
+
}
|
4053
|
+
}
|
4054
|
+
false
|
4055
|
+
}
|
4056
|
+
|
4057
|
+
// FIXME: Use parsed target.
|
4058
|
+
fn autodetect_android_compiler(raw_target: &str, gnu: &str, clang: &str) -> String {
|
4059
|
+
let new_clang_key = match raw_target {
|
4060
|
+
"aarch64-linux-android" => Some("aarch64"),
|
4061
|
+
"armv7-linux-androideabi" => Some("armv7a"),
|
4062
|
+
"i686-linux-android" => Some("i686"),
|
4063
|
+
"x86_64-linux-android" => Some("x86_64"),
|
4064
|
+
_ => None,
|
4065
|
+
};
|
4066
|
+
|
4067
|
+
let new_clang = new_clang_key
|
4068
|
+
.map(|key| {
|
4069
|
+
NEW_STANDALONE_ANDROID_COMPILERS
|
4070
|
+
.iter()
|
4071
|
+
.find(|x| x.starts_with(key))
|
4072
|
+
})
|
4073
|
+
.unwrap_or(None);
|
4074
|
+
|
4075
|
+
if let Some(new_clang) = new_clang {
|
4076
|
+
if Command::new(new_clang).output().is_ok() {
|
4077
|
+
return (*new_clang).into();
|
4078
|
+
}
|
4079
|
+
}
|
4080
|
+
|
4081
|
+
let target = raw_target
|
4082
|
+
.replace("armv7neon", "arm")
|
4083
|
+
.replace("armv7", "arm")
|
4084
|
+
.replace("thumbv7neon", "arm")
|
4085
|
+
.replace("thumbv7", "arm");
|
4086
|
+
let gnu_compiler = format!("{}-{}", target, gnu);
|
4087
|
+
let clang_compiler = format!("{}-{}", target, clang);
|
4088
|
+
|
4089
|
+
// On Windows, the Android clang compiler is provided as a `.cmd` file instead
|
4090
|
+
// of a `.exe` file. `std::process::Command` won't run `.cmd` files unless the
|
4091
|
+
// `.cmd` is explicitly appended to the command name, so we do that here.
|
4092
|
+
let clang_compiler_cmd = format!("{}-{}.cmd", target, clang);
|
4093
|
+
|
4094
|
+
// Check if gnu compiler is present
|
4095
|
+
// if not, use clang
|
4096
|
+
if Command::new(&gnu_compiler).output().is_ok() {
|
4097
|
+
gnu_compiler
|
4098
|
+
} else if cfg!(windows) && Command::new(&clang_compiler_cmd).output().is_ok() {
|
4099
|
+
clang_compiler_cmd
|
4100
|
+
} else {
|
4101
|
+
clang_compiler
|
4102
|
+
}
|
4103
|
+
}
|
4104
|
+
|
4105
|
+
// Rust and clang/cc don't agree on how to name the target.
|
4106
|
+
fn map_darwin_target_from_rust_to_compiler_architecture<'a>(target: &TargetInfo<'a>) -> &'a str {
|
4107
|
+
match target.full_arch {
|
4108
|
+
"aarch64" => "arm64",
|
4109
|
+
"arm64_32" => "arm64_32",
|
4110
|
+
"arm64e" => "arm64e",
|
4111
|
+
"armv7k" => "armv7k",
|
4112
|
+
"armv7s" => "armv7s",
|
4113
|
+
"i386" => "i386",
|
4114
|
+
"i686" => "i386",
|
4115
|
+
"powerpc" => "ppc",
|
4116
|
+
"powerpc64" => "ppc64",
|
4117
|
+
"x86_64" => "x86_64",
|
4118
|
+
"x86_64h" => "x86_64h",
|
4119
|
+
arch => arch,
|
4120
|
+
}
|
4121
|
+
}
|
4122
|
+
|
4123
|
+
#[derive(Clone, Copy, PartialEq)]
|
4124
|
+
enum AsmFileExt {
|
4125
|
+
/// `.asm` files. On MSVC targets, we assume these should be passed to MASM
|
4126
|
+
/// (`ml{,64}.exe`).
|
4127
|
+
DotAsm,
|
4128
|
+
/// `.s` or `.S` files, which do not have the special handling on MSVC targets.
|
4129
|
+
DotS,
|
4130
|
+
}
|
4131
|
+
|
4132
|
+
impl AsmFileExt {
|
4133
|
+
fn from_path(file: &Path) -> Option<Self> {
|
4134
|
+
if let Some(ext) = file.extension() {
|
4135
|
+
if let Some(ext) = ext.to_str() {
|
4136
|
+
let ext = ext.to_lowercase();
|
4137
|
+
match &*ext {
|
4138
|
+
"asm" => return Some(AsmFileExt::DotAsm),
|
4139
|
+
"s" => return Some(AsmFileExt::DotS),
|
4140
|
+
_ => return None,
|
4141
|
+
}
|
4142
|
+
}
|
4143
|
+
}
|
4144
|
+
None
|
4145
|
+
}
|
4146
|
+
}
|
4147
|
+
|
4148
|
+
/// Returns true if `cc` has been disabled by `CC_FORCE_DISABLE`.
|
4149
|
+
fn is_disabled() -> bool {
|
4150
|
+
static CACHE: AtomicU8 = AtomicU8::new(0);
|
4151
|
+
|
4152
|
+
let val = CACHE.load(Relaxed);
|
4153
|
+
// We manually cache the environment var, since we need it in some places
|
4154
|
+
// where we don't have access to a `Build` instance.
|
4155
|
+
#[allow(clippy::disallowed_methods)]
|
4156
|
+
fn compute_is_disabled() -> bool {
|
4157
|
+
match std::env::var_os("CC_FORCE_DISABLE") {
|
4158
|
+
// Not set? Not disabled.
|
4159
|
+
None => false,
|
4160
|
+
// Respect `CC_FORCE_DISABLE=0` and some simple synonyms, otherwise
|
4161
|
+
// we're disabled. This intentionally includes `CC_FORCE_DISABLE=""`
|
4162
|
+
Some(v) => &*v != "0" && &*v != "false" && &*v != "no",
|
4163
|
+
}
|
4164
|
+
}
|
4165
|
+
match val {
|
4166
|
+
2 => true,
|
4167
|
+
1 => false,
|
4168
|
+
0 => {
|
4169
|
+
let truth = compute_is_disabled();
|
4170
|
+
let encoded_truth = if truth { 2u8 } else { 1 };
|
4171
|
+
// Might race against another thread, but we'd both be setting the
|
4172
|
+
// same value so it should be fine.
|
4173
|
+
CACHE.store(encoded_truth, Relaxed);
|
4174
|
+
truth
|
4175
|
+
}
|
4176
|
+
_ => unreachable!(),
|
4177
|
+
}
|
4178
|
+
}
|
4179
|
+
|
4180
|
+
/// Automates the `if is_disabled() { return error }` check and ensures
|
4181
|
+
/// we produce a consistent error message for it.
|
4182
|
+
fn check_disabled() -> Result<(), Error> {
|
4183
|
+
if is_disabled() {
|
4184
|
+
return Err(Error::new(
|
4185
|
+
ErrorKind::Disabled,
|
4186
|
+
"the `cc` crate's functionality has been disabled by the `CC_FORCE_DISABLE` environment variable."
|
4187
|
+
));
|
4188
|
+
}
|
4189
|
+
Ok(())
|
4190
|
+
}
|
4191
|
+
|
4192
|
+
#[cfg(test)]
|
4193
|
+
mod tests {
|
4194
|
+
use super::*;
|
4195
|
+
|
4196
|
+
#[test]
|
4197
|
+
fn test_android_clang_compiler_uses_target_arg_internally() {
|
4198
|
+
for version in 16..21 {
|
4199
|
+
assert!(android_clang_compiler_uses_target_arg_internally(
|
4200
|
+
&PathBuf::from(format!("armv7a-linux-androideabi{}-clang", version))
|
4201
|
+
));
|
4202
|
+
assert!(android_clang_compiler_uses_target_arg_internally(
|
4203
|
+
&PathBuf::from(format!("armv7a-linux-androideabi{}-clang++", version))
|
4204
|
+
));
|
4205
|
+
}
|
4206
|
+
assert!(!android_clang_compiler_uses_target_arg_internally(
|
4207
|
+
&PathBuf::from("clang-i686-linux-android")
|
4208
|
+
));
|
4209
|
+
assert!(!android_clang_compiler_uses_target_arg_internally(
|
4210
|
+
&PathBuf::from("clang")
|
4211
|
+
));
|
4212
|
+
assert!(!android_clang_compiler_uses_target_arg_internally(
|
4213
|
+
&PathBuf::from("clang++")
|
4214
|
+
));
|
4215
|
+
}
|
4216
|
+
}
|