diff --git a/.bazelrc b/.bazelrc index 319838979..23cb42b38 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,5 @@ -# Disable Bzlmod -common --noenable_bzlmod +# Enable Bzlmod +common --enable_bzlmod # Pass CC, CXX and PATH from the environment. build --action_env=CC @@ -70,7 +70,6 @@ build:gcc --action_env=CXX=g++ build:hermetic-llvm --incompatible_enable_cc_toolchain_resolution build:hermetic-llvm --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 -build:hermetic-llvm --extra_toolchains @emsdk//emscripten_toolchain:cc-toolchain-wasm build --enable_platform_specific_config diff --git a/.bazelversion b/.bazelversion index 5942a0d3a..f9c71a52e 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -7.7.1 +8.5.1 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index fe539826e..4617d38bf 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -95,10 +95,6 @@ jobs: external-cache: false repository-cache: true - - name: Format (bazel query) - run: | - bazel query 'deps(//bazel/cargo/...)' - - name: Format (rules_rust) run: | bazel run //bazel/cargo/wasmsign:crates_vendor diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 000000000..981ce4293 --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,139 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +module( + name = "proxy_wasm_cpp_host", + version = "0.0.0", +) + +bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl") +bazel_dep(name = "bazel_features", version = "1.38.0") +bazel_dep(name = "bazel_skylib", version = "1.8.2") +bazel_dep(name = "boringssl", version = "0.20251124.0") +bazel_dep(name = "emsdk", version = "4.0.17") +bazel_dep(name = "platforms", version = "1.0.0") +bazel_dep(name = "protobuf", version = "33.2", repo_name = "com_google_protobuf") +bazel_dep(name = "proxy-wasm-cpp-sdk", version = "0.0.0", repo_name = "proxy_wasm_cpp_sdk") +bazel_dep(name = "rules_cc", version = "0.2.14") +bazel_dep(name = "rules_foreign_cc", version = "0.15.1") +bazel_dep(name = "rules_license", version = "1.0.0") +bazel_dep(name = "rules_python", version = "1.7.0") +bazel_dep(name = "rules_rust", version = "0.68.1") +bazel_dep(name = "toolchains_llvm", version = "1.6.0") + +bazel_dep(name = "aspect_rules_lint", version = "1.13.0", dev_dependency = True) +bazel_dep(name = "rules_fuzzing", version = "0.6.0", dev_dependency = True) +bazel_dep(name = "googletest", version = "1.17.0.bcr.2", dev_dependency = True, repo_name = "com_google_googletest") + +archive_override( + module_name = "rules_rust", + integrity = "sha256-yKqAbPYGZnmsI0YyQe6ArWkiZdrQRl9RERy74wuJA1I=", + patch_strip = 1, + patches = ["@proxy_wasm_cpp_host//bazel/external:rules_rust.patch"], + urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.68.1/rules_rust-0.68.1.tar.gz"], +) + +emscripten_deps = use_extension( + "@emsdk//:emscripten_deps.bzl", + "emscripten_deps", +) +emscripten_deps.config(version = "4.0.17") + +archive_override( + module_name = "proxy-wasm-cpp-sdk", + integrity = "sha256-tWCh2ieg06s3RSfpx9+k/mSTiHKZlFvidioFGM41Vw4=", + strip_prefix = "proxy-wasm-cpp-sdk-e5256b0c5463ea9961965ad5de3e379e00486640", + urls = ["https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/archive/e5256b0c5463ea9961965ad5de3e379e00486640.tar.gz"], +) + +# Configure and register the toolchain. +llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm") +llvm.toolchain(llvm_version = "19.1.0") +use_repo(llvm, "llvm_toolchain", "llvm_toolchain_llvm") + +register_toolchains("@llvm_toolchain//:all") + +rust = use_extension("@rules_rust//rust:extensions.bzl", "rust") +rust.toolchain( + edition = "2021", + versions = ["1.91.0"], +) +use_repo(rust, "rust_toolchains") + +register_toolchains("@rust_toolchains//:all") + +wasmsign_crates = use_extension("//bazel:extensions.bzl", "wasmsign_crates") +use_repo( + wasmsign_crates, + "ws", + "ws__wasmsign2-cli-0.2.6", +) + +# Wasmtime and its dependencies +wasmtime_crates = use_extension("//bazel:extensions.bzl", "wasmtime_crates") +use_repo( + wasmtime_crates, + "cu", + "cu__anyhow-1.0.86", + "cu__env_logger-0.10.2", + "cu__log-0.4.22", + "cu__once_cell-1.19.0", + "cu__tracing-0.1.40", + "cu__wasmtime-24.0.0", + "cu__wasmtime-c-api-macros-24.0.0", +) + +wasmtime = use_extension("//bazel:extensions.bzl", "wasmtime") +use_repo(wasmtime, "com_github_bytecodealliance_wasmtime") + +# WAMR runtime +wamr = use_extension("//bazel:extensions.bzl", "wamr") +use_repo(wamr, "com_github_bytecodealliance_wasm_micro_runtime") + +wamr_jit_deps = use_extension("//bazel:extensions.bzl", "wamr_jit_deps") +use_repo(wamr_jit_deps, "llvm-raw", "llvm_zlib", "llvm_zstd") + +llvm_configure = use_repo_rule("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure") + +llvm_configure( + name = "llvm-project", + targets = [ + "X86", + "AArch64", + ], +) + +# V8 runtime and its dependencies +bazel_dep(name = "v8", version = "0.0.0") +archive_override( + module_name = "v8", + integrity = "sha256-igwEEi6kcb2q7EodzjJasjCx/6LRMiFTVWfDKcNB+Xw=", + patch_cmds = [ + "find ./src ./include -type f -exec sed -i.bak -e 's!#include \"third_party/simdutf/simdutf.h\"!#include \"simdutf.h\"!' {} \\;", + "find ./src ./include -type f -exec sed -i.bak -e 's!#include \"third_party/fp16/src/include/fp16.h\"!#include \"fp16.h\"!' {} \\;", + "find ./src ./include -type f -exec sed -i.bak -e 's!#include \"third_party/dragonbox/src/include/dragonbox/dragonbox.h\"!#include \"dragonbox/dragonbox.h\"!' {} \\;", + "find ./src ./include -type f -exec sed -i.bak -e 's!#include \"third_party/fast_float/src/include/fast_float/!#include \"fast_float/!' {} \\;", + ], + patch_strip = 1, + patches = [ + "@proxy_wasm_cpp_host//bazel/external:v8.patch", + "@proxy_wasm_cpp_host//bazel/external:v8_module_bazel.patch", + ], + strip_prefix = "v8-14.4.258.16", + urls = ["https://github.com/v8/v8/archive/refs/tags/14.4.258.16.tar.gz"], +) + +# WasmEdge runtime +wasmedge = use_extension("//bazel:extensions.bzl", "wasmedge") +use_repo(wasmedge, "com_github_wasmedge_wasmedge") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock new file mode 100644 index 000000000..60f39dad1 --- /dev/null +++ b/MODULE.bazel.lock @@ -0,0 +1,2877 @@ +{ + "lockFileVersion": 24, + "registryFileHashes": { + "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497", + "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2", + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589", + "https://bcr.bazel.build/modules/abseil-cpp/20230125.1/MODULE.bazel": "89047429cb0207707b2dface14ba7f8df85273d484c2572755be4bab7ce9c3a0", + "https://bcr.bazel.build/modules/abseil-cpp/20230802.0.bcr.1/MODULE.bazel": "1c8cec495288dccd14fdae6e3f95f772c1c91857047a098fad772034264cc8cb", + "https://bcr.bazel.build/modules/abseil-cpp/20230802.0/MODULE.bazel": "d253ae36a8bd9ee3c5955384096ccb6baf16a1b1e93e858370da0a3b94f77c16", + "https://bcr.bazel.build/modules/abseil-cpp/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915", + "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed", + "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/MODULE.bazel": "73939767a4686cd9a520d16af5ab440071ed75cec1a876bf2fcfaf1f71987a16", + "https://bcr.bazel.build/modules/abseil-cpp/20250127.1/MODULE.bazel": "c4a89e7ceb9bf1e25cf84a9f830ff6b817b72874088bf5141b314726e46a57c1", + "https://bcr.bazel.build/modules/abseil-cpp/20250512.1/MODULE.bazel": "d209fdb6f36ffaf61c509fcc81b19e81b411a999a934a032e10cd009a0226215", + "https://bcr.bazel.build/modules/abseil-cpp/20250814.0/MODULE.bazel": "c43c16ca2c432566cdb78913964497259903ebe8fb7d9b57b38e9f1425b427b8", + "https://bcr.bazel.build/modules/abseil-cpp/20250814.1/MODULE.bazel": "51f2312901470cdab0dbdf3b88c40cd21c62a7ed58a3de45b365ddc5b11bcab2", + "https://bcr.bazel.build/modules/abseil-cpp/20250814.1/source.json": "cea3901d7e299da7320700abbaafe57a65d039f10d0d7ea601c4a66938ea4b0c", + "https://bcr.bazel.build/modules/ape/1.0.1/MODULE.bazel": "37411cfd13bfc28cd264674d660a3ecb3b5b35b9dbe4c0b2be098683641b3fee", + "https://bcr.bazel.build/modules/ape/1.0.1/source.json": "96bc5909d1e3ccc4203272815ef874dbfd99651e240c05049f12193d16c1110b", + "https://bcr.bazel.build/modules/apple_support/1.11.1/MODULE.bazel": "1843d7cd8a58369a444fc6000e7304425fba600ff641592161d9f15b179fb896", + "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85", + "https://bcr.bazel.build/modules/apple_support/1.22.1/MODULE.bazel": "90bd1a660590f3ceffbdf524e37483094b29352d85317060b2327fff8f3f4458", + "https://bcr.bazel.build/modules/apple_support/1.23.1/MODULE.bazel": "53763fed456a968cf919b3240427cf3a9d5481ec5466abc9d5dc51bc70087442", + "https://bcr.bazel.build/modules/apple_support/1.24.1/MODULE.bazel": "f46e8ddad60aef170ee92b2f3d00ef66c147ceafea68b6877cb45bd91737f5f8", + "https://bcr.bazel.build/modules/apple_support/1.24.1/source.json": "cf725267cbacc5f028ef13bb77e7f2c2e0066923a4dab1025e4a0511b1ed258a", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.42.2/MODULE.bazel": "2e0d8ab25c57a14f56ace1c8e881b69050417ff91b2fb7718dc00d201f3c3478", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.42.3/MODULE.bazel": "e4529e12d8cd5b828e2b5960d07d3ec032541740d419d7d5b859cabbf5b056f9", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.0.0/MODULE.bazel": "e118477db5c49419a88d78ebc7a2c2cea9d49600fe0f490c1903324a2c16ecd9", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.14.0/MODULE.bazel": "2b31ffcc9bdc8295b2167e07a757dbbc9ac8906e7028e5170a3708cecaac119f", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.19.3/MODULE.bazel": "253d739ba126f62a5767d832765b12b59e9f8d2bc88cc1572f4a73e46eb298ca", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.22.0/MODULE.bazel": "7fe0191f047d4fe4a4a46c1107e2350cbb58a8fc2e10913aa4322d3190dec0bf", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.22.0/source.json": "369df5b7f2eae82f200fff95cf1425f90dee90a0d0948122060b48150ff0e224", + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.8.1/MODULE.bazel": "812d2dd42f65dca362152101fbec418029cc8fd34cbad1a2fde905383d705838", + "https://bcr.bazel.build/modules/aspect_rules_js/1.33.1/MODULE.bazel": "db3e7f16e471cf6827059d03af7c21859e7a0d2bc65429a3a11f005d46fc501b", + "https://bcr.bazel.build/modules/aspect_rules_js/1.40.0/MODULE.bazel": "01a1014e95e6816b68ecee2584ae929c7d6a1b72e4333ab1ff2d2c6c30babdf1", + "https://bcr.bazel.build/modules/aspect_rules_js/1.42.0/MODULE.bazel": "f19e6b4a16f77f8cf3728eac1f60dbfd8e043517fd4f4dbf17a75a6c50936d62", + "https://bcr.bazel.build/modules/aspect_rules_js/1.42.0/source.json": "abbb3eac3b6af76b8ce230a9a901c6d08d93f4f5ffd55314bf630827dddee57e", + "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/MODULE.bazel": "e767c5dbfeb254ec03275a7701b5cfde2c4d2873676804bc7cb27ddff3728fed", + "https://bcr.bazel.build/modules/aspect_rules_lint/1.13.0/MODULE.bazel": "6756412fca0a91ebfc614a60aeca5210db22d96bd8051c245b75514abc7079e7", + "https://bcr.bazel.build/modules/aspect_rules_lint/1.13.0/source.json": "7221470126067bb1955bac10b64ca79d670b05ea79adc5d50b04b69f90ef9a98", + "https://bcr.bazel.build/modules/aspect_tools_telemetry/0.2.8/MODULE.bazel": "aa975a83e72bcaac62ee61ab12b788ea324a1d05c4aab28aadb202f647881679", + "https://bcr.bazel.build/modules/aspect_tools_telemetry/0.2.8/source.json": "786cbc49377fb6bf4859aec5b1c61f8fc26b08e9fdb929e2dde2e1e2a406bd24", + "https://bcr.bazel.build/modules/bazel_features/0.1.0/MODULE.bazel": "47011d645b0f949f42ee67f2e8775188a9cf4a0a1528aa2fa4952f2fd00906fd", + "https://bcr.bazel.build/modules/bazel_features/1.0.0/MODULE.bazel": "d7f022dc887efb96e1ee51cec7b2e48d41e36ff59a6e4f216c40e4029e1585bf", + "https://bcr.bazel.build/modules/bazel_features/1.1.0/MODULE.bazel": "cfd42ff3b815a5f39554d97182657f8c4b9719568eb7fded2b9135f084bf760b", + "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd", + "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8", + "https://bcr.bazel.build/modules/bazel_features/1.13.0/MODULE.bazel": "c14c33c7c3c730612bdbe14ebbb5e61936b6f11322ea95a6e91cd1ba962f94df", + "https://bcr.bazel.build/modules/bazel_features/1.15.0/MODULE.bazel": "d38ff6e517149dc509406aca0db3ad1efdd890a85e049585b7234d04238e2a4d", + "https://bcr.bazel.build/modules/bazel_features/1.17.0/MODULE.bazel": "039de32d21b816b47bd42c778e0454217e9c9caac4a3cf8e15c7231ee3ddee4d", + "https://bcr.bazel.build/modules/bazel_features/1.18.0/MODULE.bazel": "1be0ae2557ab3a72a57aeb31b29be347bcdc5d2b1eb1e70f39e3851a7e97041a", + "https://bcr.bazel.build/modules/bazel_features/1.19.0/MODULE.bazel": "59adcdf28230d220f0067b1f435b8537dd033bfff8db21335ef9217919c7fb58", + "https://bcr.bazel.build/modules/bazel_features/1.20.0/MODULE.bazel": "8b85300b9c8594752e0721a37210e34879d23adc219ed9dc8f4104a4a1750920", + "https://bcr.bazel.build/modules/bazel_features/1.21.0/MODULE.bazel": "675642261665d8eea09989aa3b8afb5c37627f1be178382c320d1b46afba5e3b", + "https://bcr.bazel.build/modules/bazel_features/1.27.0/MODULE.bazel": "621eeee06c4458a9121d1f104efb80f39d34deff4984e778359c60eaf1a8cb65", + "https://bcr.bazel.build/modules/bazel_features/1.28.0/MODULE.bazel": "4b4200e6cbf8fa335b2c3f43e1d6ef3e240319c33d43d60cc0fbd4b87ece299d", + "https://bcr.bazel.build/modules/bazel_features/1.3.0/MODULE.bazel": "cdcafe83ec318cda34e02948e81d790aab8df7a929cec6f6969f13a489ccecd9", + "https://bcr.bazel.build/modules/bazel_features/1.30.0/MODULE.bazel": "a14b62d05969a293b80257e72e597c2da7f717e1e69fa8b339703ed6731bec87", + "https://bcr.bazel.build/modules/bazel_features/1.32.0/MODULE.bazel": "095d67022a58cb20f7e20e1aefecfa65257a222c18a938e2914fd257b5f1ccdc", + "https://bcr.bazel.build/modules/bazel_features/1.33.0/MODULE.bazel": "8b8dc9d2a4c88609409c3191165bccec0e4cb044cd7a72ccbe826583303459f6", + "https://bcr.bazel.build/modules/bazel_features/1.34.0/MODULE.bazel": "e8475ad7c8965542e0c7aac8af68eb48c4af904be3d614b6aa6274c092c2ea1e", + "https://bcr.bazel.build/modules/bazel_features/1.38.0/MODULE.bazel": "f9b8a9c890ebd216b4049fd12a31d3c2602e3403c7af636b04fbbd7453edc9c9", + "https://bcr.bazel.build/modules/bazel_features/1.38.0/source.json": "31ba776c122b54a2885e23651642e32f087a87bf025465f8040751894b571277", + "https://bcr.bazel.build/modules/bazel_features/1.4.1/MODULE.bazel": "e45b6bb2350aff3e442ae1111c555e27eac1d915e77775f6fdc4b351b758b5d7", + "https://bcr.bazel.build/modules/bazel_features/1.9.0/MODULE.bazel": "885151d58d90d8d9c811eb75e3288c11f850e1d6b481a8c9f766adee4712358b", + "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel": "8f679097876a9b609ad1f60249c49d68bfab783dd9be012faf9d82547b14815a", + "https://bcr.bazel.build/modules/bazel_lib/3.0.0/MODULE.bazel": "22b70b80ac89ad3f3772526cd9feee2fa412c2b01933fea7ed13238a448d370d", + "https://bcr.bazel.build/modules/bazel_lib/3.0.0/source.json": "895f21909c6fba01d7c17914bb6c8e135982275a1b18cdaa4e62272217ef1751", + "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8", + "https://bcr.bazel.build/modules/bazel_skylib/1.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e", + "https://bcr.bazel.build/modules/bazel_skylib/1.2.0/MODULE.bazel": "44fe84260e454ed94ad326352a698422dbe372b21a1ac9f3eab76eb531223686", + "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a", + "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5", + "https://bcr.bazel.build/modules/bazel_skylib/1.4.1/MODULE.bazel": "a0dcb779424be33100dcae821e9e27e4f2901d9dfd5333efe5ac6a8d7ab75e1d", + "https://bcr.bazel.build/modules/bazel_skylib/1.4.2/MODULE.bazel": "3bd40978e7a1fac911d5989e6b09d8f64921865a45822d8b09e815eaa726a651", + "https://bcr.bazel.build/modules/bazel_skylib/1.5.0/MODULE.bazel": "32880f5e2945ce6a03d1fbd588e9198c0a959bb42297b2cfaf1685b7bc32e138", + "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917", + "https://bcr.bazel.build/modules/bazel_skylib/1.7.0/MODULE.bazel": "0db596f4563de7938de764cc8deeabec291f55e8ec15299718b93c4423e9796d", + "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b", + "https://bcr.bazel.build/modules/bazel_skylib/1.8.1/MODULE.bazel": "88ade7293becda963e0e3ea33e7d54d3425127e0a326e0d17da085a5f1f03ff6", + "https://bcr.bazel.build/modules/bazel_skylib/1.8.2/MODULE.bazel": "69ad6927098316848b34a9142bcc975e018ba27f08c4ff403f50c1b6e646ca67", + "https://bcr.bazel.build/modules/bazel_skylib/1.8.2/source.json": "34a3c8bcf233b835eb74be9d628899bb32999d3e0eadef1947a0a562a2b16ffb", + "https://bcr.bazel.build/modules/boringssl/0.20251124.0/MODULE.bazel": "1e107f2b52cc5e002924bc3b33bb60516f96f91b51eb523127df9ea9a944a3b4", + "https://bcr.bazel.build/modules/boringssl/0.20251124.0/source.json": "2f325a76db6c6e14c4db923a26aa9a4bfbbd03e61b9256311f460c18bfba6013", + "https://bcr.bazel.build/modules/buildifier_prebuilt/6.4.0/MODULE.bazel": "37389c6b5a40c59410b4226d3bb54b08637f393d66e2fa57925c6fcf68e64bf4", + "https://bcr.bazel.build/modules/buildifier_prebuilt/6.4.0/source.json": "83eb01b197ed0b392f797860c9da5ed1bf95f4d0ded994d694a3d44731275916", + "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84", + "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8", + "https://bcr.bazel.build/modules/download_utils/1.0.1/MODULE.bazel": "f1d0afade59e37de978506d6bbf08d7fe5f94964e86944aaf58efcead827b41b", + "https://bcr.bazel.build/modules/download_utils/1.0.1/source.json": "05ddc5a3b1f7d8f3e5e0fd1617479e1cf72d63d59ab2b1f0463557a14fc6be0a", + "https://bcr.bazel.build/modules/emsdk/4.0.13/MODULE.bazel": "0327a27d99cc665c698aa6b80608b5d60fcaa6ef7540dc31d5a405b590524c62", + "https://bcr.bazel.build/modules/emsdk/4.0.17/MODULE.bazel": "a10c49d7063e5dffeec0c5b43753ab2575179fbb679851059861af7d2a781c6a", + "https://bcr.bazel.build/modules/emsdk/4.0.17/source.json": "8463664bc6319425d29ef0d7edd8660daf1bf0ec33c367420243d4db35e0f482", + "https://bcr.bazel.build/modules/fast_float/8.0.2/MODULE.bazel": "43504664efdfa4c6cf1349626c87135c9b87926325c720458f396eee25568eda", + "https://bcr.bazel.build/modules/fast_float/8.0.2/source.json": "8b83304ea4c3c1e43cc74e644918394a799b0f2cebe3b9ffbbe37ac75dcfb171", + "https://bcr.bazel.build/modules/fp16/0.0.0-20210320-0a92994/MODULE.bazel": "d980075c0ca85a8e856a95a8d8c04ba56c9ec01c98f85e2d49650c6d8b7c8268", + "https://bcr.bazel.build/modules/fp16/0.0.0-20210320-0a92994/source.json": "07df001709b35e7e03f139e7032d3e5f8ce47750c966315670c710fbafdf5f95", + "https://bcr.bazel.build/modules/gawk/5.3.2.bcr.1/MODULE.bazel": "cdf8cbe5ee750db04b78878c9633cc76e80dcf4416cbe982ac3a9222f80713c8", + "https://bcr.bazel.build/modules/gawk/5.3.2.bcr.1/source.json": "fa7b512dfcb5eafd90ce3959cf42a2a6fe96144ebbb4b3b3928054895f2afac2", + "https://bcr.bazel.build/modules/gazelle/0.27.0/MODULE.bazel": "3446abd608295de6d90b4a8a118ed64a9ce11dcb3dda2dc3290a22056bd20996", + "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel": "f888a1effe338491f35f0e0e85003b47bb9d8295ccba73c37e07702d8d31c65b", + "https://bcr.bazel.build/modules/gazelle/0.32.0/MODULE.bazel": "b499f58a5d0d3537f3cf5b76d8ada18242f64ec474d8391247438bf04f58c7b8", + "https://bcr.bazel.build/modules/gazelle/0.33.0/MODULE.bazel": "a13a0f279b462b784fb8dd52a4074526c4a2afe70e114c7d09066097a46b3350", + "https://bcr.bazel.build/modules/gazelle/0.34.0/MODULE.bazel": "abdd8ce4d70978933209db92e436deb3a8b737859e9354fb5fd11fb5c2004c8a", + "https://bcr.bazel.build/modules/gazelle/0.34.0/source.json": "cdf0182297e3adabbdea2da88d5b930b2ee5e56511c3e7d6512069db6315a1f7", + "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb", + "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4", + "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/MODULE.bazel": "22c31a561553727960057361aa33bf20fb2e98584bc4fec007906e27053f80c6", + "https://bcr.bazel.build/modules/googletest/1.14.0/MODULE.bazel": "cfbcbf3e6eac06ef9d85900f64424708cc08687d1b527f0ef65aa7517af8118f", + "https://bcr.bazel.build/modules/googletest/1.15.2/MODULE.bazel": "6de1edc1d26cafb0ea1a6ab3f4d4192d91a312fd2d360b63adaa213cd00b2108", + "https://bcr.bazel.build/modules/googletest/1.17.0.bcr.2/MODULE.bazel": "827f54f492a3ce549c940106d73de332c2b30cebd0c20c0bc5d786aba7f116cb", + "https://bcr.bazel.build/modules/googletest/1.17.0.bcr.2/source.json": "3664514073a819992320ffbce5825e4238459df344d8b01748af2208f8d2e1eb", + "https://bcr.bazel.build/modules/googletest/1.17.0/MODULE.bazel": "dbec758171594a705933a29fcf69293d2468c49ec1f2ebca65c36f504d72df46", + "https://bcr.bazel.build/modules/helly25_bzl/0.3.1/MODULE.bazel": "3a4be20f6fc13be32ad44643b8252ef5af09eee936f1d943cd4fd7867fa92826", + "https://bcr.bazel.build/modules/helly25_bzl/0.3.1/source.json": "b129ab1828492de2c163785bbeb4065c166de52d932524b4317beb5b7f917994", + "https://bcr.bazel.build/modules/highway/1.2.0/MODULE.bazel": "605dc84b4931a409f16d920409dc38718798754c1afa4c80115a32118d67acb3", + "https://bcr.bazel.build/modules/highway/1.2.0/source.json": "01a2c7e56a1850a28c0026c0adc32e52db44c6a1df142b3f88b2a3747a5bff7d", + "https://bcr.bazel.build/modules/jq.bzl/0.1.0/MODULE.bazel": "2ce69b1af49952cd4121a9c3055faa679e748ce774c7f1fda9657f936cae902f", + "https://bcr.bazel.build/modules/jq.bzl/0.1.0/source.json": "746bf13cac0860f091df5e4911d0c593971cd8796b5ad4e809b2f8e133eee3d5", + "https://bcr.bazel.build/modules/jsoncpp/1.9.5/MODULE.bazel": "31271aedc59e815656f5736f282bb7509a97c7ecb43e927ac1a37966e0578075", + "https://bcr.bazel.build/modules/jsoncpp/1.9.6/MODULE.bazel": "2f8d20d3b7d54143213c4dfc3d98225c42de7d666011528dc8fe91591e2e17b0", + "https://bcr.bazel.build/modules/jsoncpp/1.9.6/source.json": "a04756d367a2126c3541682864ecec52f92cdee80a35735a3cb249ce015ca000", + "https://bcr.bazel.build/modules/libpfm/4.11.0/MODULE.bazel": "45061ff025b301940f1e30d2c16bea596c25b176c8b6b3087e92615adbd52902", + "https://bcr.bazel.build/modules/nlohmann_json/3.6.1/MODULE.bazel": "6f7b417dcc794d9add9e556673ad25cb3ba835224290f4f848f8e2db1e1fca74", + "https://bcr.bazel.build/modules/nlohmann_json/3.6.1/source.json": "f448c6e8963fdfa7eb831457df83ad63d3d6355018f6574fb017e8169deb43a9", + "https://bcr.bazel.build/modules/package_metadata/0.0.2/MODULE.bazel": "fb8d25550742674d63d7b250063d4580ca530499f045d70748b1b142081ebb92", + "https://bcr.bazel.build/modules/package_metadata/0.0.2/source.json": "e53a759a72488d2c0576f57491ef2da0cf4aab05ac0997314012495935531b73", + "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel": "8cb8efaf200bdeb2150d93e162c40f388529a25852b332cec879373771e48ed5", + "https://bcr.bazel.build/modules/platforms/0.0.11/MODULE.bazel": "0daefc49732e227caa8bfa834d65dc52e8cc18a2faf80df25e8caea151a9413f", + "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee", + "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37", + "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615", + "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814", + "https://bcr.bazel.build/modules/platforms/0.0.8/MODULE.bazel": "9f142c03e348f6d263719f5074b21ef3adf0b139ee4c5133e2aa35664da9eb2d", + "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc", + "https://bcr.bazel.build/modules/platforms/1.0.0/MODULE.bazel": "f05feb42b48f1b3c225e4ccf351f367be0371411a803198ec34a389fb22aa580", + "https://bcr.bazel.build/modules/platforms/1.0.0/source.json": "f4ff1fd412e0246fd38c82328eb209130ead81d62dcd5a9e40910f867f733d96", + "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7", + "https://bcr.bazel.build/modules/protobuf/23.1/MODULE.bazel": "88b393b3eb4101d18129e5db51847cd40a5517a53e81216144a8c32dfeeca52a", + "https://bcr.bazel.build/modules/protobuf/24.4/MODULE.bazel": "7bc7ce5f2abf36b3b7b7c8218d3acdebb9426aeb35c2257c96445756f970eb12", + "https://bcr.bazel.build/modules/protobuf/27.0/MODULE.bazel": "7873b60be88844a0a1d8f80b9d5d20cfbd8495a689b8763e76c6372998d3f64c", + "https://bcr.bazel.build/modules/protobuf/27.1/MODULE.bazel": "703a7b614728bb06647f965264967a8ef1c39e09e8f167b3ca0bb1fd80449c0d", + "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df", + "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92", + "https://bcr.bazel.build/modules/protobuf/29.0/MODULE.bazel": "319dc8bf4c679ff87e71b1ccfb5a6e90a6dbc4693501d471f48662ac46d04e4e", + "https://bcr.bazel.build/modules/protobuf/29.1/MODULE.bazel": "557c3457560ff49e122ed76c0bc3397a64af9574691cb8201b4e46d4ab2ecb95", + "https://bcr.bazel.build/modules/protobuf/29.3/MODULE.bazel": "77480eea5fb5541903e49683f24dc3e09f4a79e0eea247414887bb9fc0066e94", + "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0", + "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573", + "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858", + "https://bcr.bazel.build/modules/protobuf/33.2/MODULE.bazel": "e8d408653b855e467ac7f99f2dfae8f073ae421fd4eb9a05b5ade5118d66cc3d", + "https://bcr.bazel.build/modules/protobuf/33.2/source.json": "be3a465c5bb4c2097fd81fc69f01fe5ef93bd29c58e461e1efc97100c8a010d7", + "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1/MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e", + "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34", + "https://bcr.bazel.build/modules/pybind11_bazel/2.13.6/MODULE.bazel": "2d746fda559464b253b2b2e6073cb51643a2ac79009ca02100ebbc44b4548656", + "https://bcr.bazel.build/modules/pybind11_bazel/2.13.6/source.json": "6aa0703de8efb20cc897bbdbeb928582ee7beaf278bcd001ac253e1605bddfae", + "https://bcr.bazel.build/modules/re2/2023-09-01/MODULE.bazel": "cb3d511531b16cfc78a225a9e2136007a48cf8a677e4264baeab57fe78a80206", + "https://bcr.bazel.build/modules/re2/2024-07-02.bcr.1/MODULE.bazel": "b4963dda9b31080be1905ef085ecd7dd6cd47c05c79b9cdf83ade83ab2ab271a", + "https://bcr.bazel.build/modules/re2/2024-07-02/MODULE.bazel": "0eadc4395959969297cbcf31a249ff457f2f1d456228c67719480205aa306daa", + "https://bcr.bazel.build/modules/re2/2025-08-12.bcr.1/MODULE.bazel": "e09b434b122bfb786a69179f9b325e35cb1856c3f56a7a81dd61609260ed46e1", + "https://bcr.bazel.build/modules/re2/2025-08-12.bcr.1/source.json": "a8ae7c09533bf67f9f6e5122d884d5741600b09d78dca6fc0f2f8d2ee0c2d957", + "https://bcr.bazel.build/modules/rules_android/0.1.1/MODULE.bazel": "48809ab0091b07ad0182defb787c4c5328bd3a278938415c00a7b69b50c4d3a8", + "https://bcr.bazel.build/modules/rules_android/0.1.1/source.json": "e6986b41626ee10bdc864937ffb6d6bf275bb5b9c65120e6137d56e6331f089e", + "https://bcr.bazel.build/modules/rules_apple/3.16.0/MODULE.bazel": "0d1caf0b8375942ce98ea944be754a18874041e4e0459401d925577624d3a54a", + "https://bcr.bazel.build/modules/rules_apple/3.16.0/source.json": "d8b5fe461272018cc07cfafce11fe369c7525330804c37eec5a82f84cd475366", + "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel": "6189aec18a4f7caff599ad41b851ab7645d4f1e114aa6431acf9b0666eb92162", + "https://bcr.bazel.build/modules/rules_buf/0.5.2/MODULE.bazel": "5f2492d284ab9bedf2668178303abf5f3cd7d8cdf85d768951008e88456e9c6a", + "https://bcr.bazel.build/modules/rules_buf/0.5.2/source.json": "41876d4834c0832de4b393de6e55dfd1cb3b25d3109e4ba90eb7fb57c560e0d9", + "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647", + "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002", + "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191", + "https://bcr.bazel.build/modules/rules_cc/0.0.14/MODULE.bazel": "5e343a3aac88b8d7af3b1b6d2093b55c347b8eefc2e7d1442f7a02dc8fea48ac", + "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc", + "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87", + "https://bcr.bazel.build/modules/rules_cc/0.0.17/MODULE.bazel": "2ae1d8f4238ec67d7185d8861cb0a2cdf4bc608697c331b95bf990e69b62e64a", + "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c", + "https://bcr.bazel.build/modules/rules_cc/0.0.6/MODULE.bazel": "abf360251023dfe3efcef65ab9d56beefa8394d4176dd29529750e1c57eaa33f", + "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e", + "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5", + "https://bcr.bazel.build/modules/rules_cc/0.1.1/MODULE.bazel": "2f0222a6f229f0bf44cd711dc13c858dad98c62d52bd51d8fc3a764a83125513", + "https://bcr.bazel.build/modules/rules_cc/0.1.2/MODULE.bazel": "557ddc3a96858ec0d465a87c0a931054d7dcfd6583af2c7ed3baf494407fd8d0", + "https://bcr.bazel.build/modules/rules_cc/0.1.4/MODULE.bazel": "bb03a452a7527ac25a7518fb86a946ef63df860b9657d8323a0c50f8504fb0b9", + "https://bcr.bazel.build/modules/rules_cc/0.1.5/MODULE.bazel": "88dfc9361e8b5ae1008ac38f7cdfd45ad738e4fa676a3ad67d19204f045a1fd8", + "https://bcr.bazel.build/modules/rules_cc/0.2.0/MODULE.bazel": "b5c17f90458caae90d2ccd114c81970062946f49f355610ed89bebf954f5783c", + "https://bcr.bazel.build/modules/rules_cc/0.2.14/MODULE.bazel": "353c99ed148887ee89c54a17d4100ae7e7e436593d104b668476019023b58df8", + "https://bcr.bazel.build/modules/rules_cc/0.2.14/source.json": "55d0a4587c5592fad350f6e698530f4faf0e7dd15e69d43f8d87e220c78bea54", + "https://bcr.bazel.build/modules/rules_cc/0.2.4/MODULE.bazel": "1ff1223dfd24f3ecf8f028446d4a27608aa43c3f41e346d22838a4223980b8cc", + "https://bcr.bazel.build/modules/rules_cc/0.2.8/MODULE.bazel": "f1df20f0bf22c28192a794f29b501ee2018fa37a3862a1a2132ae2940a23a642", + "https://bcr.bazel.build/modules/rules_diff/1.0.0/MODULE.bazel": "1739509d8db9a6cd7d3584822340d3dfe1f9f27e62462fbca60aa061d88741b2", + "https://bcr.bazel.build/modules/rules_diff/1.0.0/source.json": "fc3824aed007b4db160ffb994036c6e558550857b6634a8e9ccee3e74c659312", + "https://bcr.bazel.build/modules/rules_foreign_cc/0.15.1/MODULE.bazel": "c2c60d26c79fda484acb95cdbec46e89d6b28b4845cb277160ce1e0c8622bb88", + "https://bcr.bazel.build/modules/rules_foreign_cc/0.15.1/source.json": "a161811a63ba8a859086da3b7ff3ad04f2e9c255d7727b41087103fc0eb22f55", + "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "c9e8c682bf75b0e7c704166d79b599f93b72cfca5ad7477df596947891feeef6", + "https://bcr.bazel.build/modules/rules_fuzzing/0.5.2/MODULE.bazel": "40c97d1144356f52905566c55811f13b299453a14ac7769dfba2ac38192337a8", + "https://bcr.bazel.build/modules/rules_fuzzing/0.6.0/MODULE.bazel": "85e11f0640353bd11190db8d8e11162ab7684f382085b81c1bab0702d568f445", + "https://bcr.bazel.build/modules/rules_fuzzing/0.6.0/source.json": "5dda75d267a03611001147cb00874de5c8e7503e1cfbe3c225479dff89bfd111", + "https://bcr.bazel.build/modules/rules_go/0.33.0/MODULE.bazel": "a2b11b64cd24bf94f57454f53288a5dacfe6cb86453eee7761b7637728c1910c", + "https://bcr.bazel.build/modules/rules_go/0.38.1/MODULE.bazel": "fb8e73dd3b6fc4ff9d260ceacd830114891d49904f5bda1c16bc147bcc254f71", + "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel": "d34fb2a249403a5f4339c754f1e63dc9e5ad70b47c5e97faee1441fc6636cd61", + "https://bcr.bazel.build/modules/rules_go/0.41.0/MODULE.bazel": "55861d8e8bb0e62cbd2896f60ff303f62ffcb0eddb74ecb0e5c0cbe36fc292c8", + "https://bcr.bazel.build/modules/rules_go/0.42.0/MODULE.bazel": "8cfa875b9aa8c6fce2b2e5925e73c1388173ea3c32a0db4d2b4804b453c14270", + "https://bcr.bazel.build/modules/rules_go/0.42.0/source.json": "33cd3d725806ad432753c4263ffd0459692010fdc940cce60b2c0e32282b45c5", + "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74", + "https://bcr.bazel.build/modules/rules_java/5.3.5/MODULE.bazel": "a4ec4f2db570171e3e5eb753276ee4b389bae16b96207e9d3230895c99644b86", + "https://bcr.bazel.build/modules/rules_java/6.0.0/MODULE.bazel": "8a43b7df601a7ec1af61d79345c17b31ea1fedc6711fd4abfd013ea612978e39", + "https://bcr.bazel.build/modules/rules_java/6.3.0/MODULE.bazel": "a97c7678c19f236a956ad260d59c86e10a463badb7eb2eda787490f4c969b963", + "https://bcr.bazel.build/modules/rules_java/6.4.0/MODULE.bazel": "e986a9fe25aeaa84ac17ca093ef13a4637f6107375f64667a15999f77db6c8f6", + "https://bcr.bazel.build/modules/rules_java/6.5.2/MODULE.bazel": "1d440d262d0e08453fa0c4d8f699ba81609ed0e9a9a0f02cd10b3e7942e61e31", + "https://bcr.bazel.build/modules/rules_java/7.1.0/MODULE.bazel": "30d9135a2b6561c761bd67bd4990da591e6bdc128790ce3e7afd6a3558b2fb64", + "https://bcr.bazel.build/modules/rules_java/7.10.0/MODULE.bazel": "530c3beb3067e870561739f1144329a21c851ff771cd752a49e06e3dc9c2e71a", + "https://bcr.bazel.build/modules/rules_java/7.12.2/MODULE.bazel": "579c505165ee757a4280ef83cda0150eea193eed3bef50b1004ba88b99da6de6", + "https://bcr.bazel.build/modules/rules_java/7.2.0/MODULE.bazel": "06c0334c9be61e6cef2c8c84a7800cef502063269a5af25ceb100b192453d4ab", + "https://bcr.bazel.build/modules/rules_java/7.3.2/MODULE.bazel": "50dece891cfdf1741ea230d001aa9c14398062f2b7c066470accace78e412bc2", + "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe", + "https://bcr.bazel.build/modules/rules_java/8.14.0/MODULE.bazel": "717717ed40cc69994596a45aec6ea78135ea434b8402fb91b009b9151dd65615", + "https://bcr.bazel.build/modules/rules_java/8.14.0/source.json": "8a88c4ca9e8759da53cddc88123880565c520503321e2566b4e33d0287a3d4bc", + "https://bcr.bazel.build/modules/rules_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017", + "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939", + "https://bcr.bazel.build/modules/rules_java/8.6.1/MODULE.bazel": "f4808e2ab5b0197f094cabce9f4b006a27766beb6a9975931da07099560ca9c2", + "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7", + "https://bcr.bazel.build/modules/rules_jvm_external/5.1/MODULE.bazel": "33f6f999e03183f7d088c9be518a63467dfd0be94a11d0055fe2d210f89aa909", + "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036", + "https://bcr.bazel.build/modules/rules_jvm_external/5.3/MODULE.bazel": "bf93870767689637164657731849fb887ad086739bd5d360d90007a581d5527d", + "https://bcr.bazel.build/modules/rules_jvm_external/6.1/MODULE.bazel": "75b5fec090dbd46cf9b7d8ea08cf84a0472d92ba3585b476f44c326eda8059c4", + "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0", + "https://bcr.bazel.build/modules/rules_jvm_external/6.7/MODULE.bazel": "e717beabc4d091ecb2c803c2d341b88590e9116b8bf7947915eeb33aab4f96dd", + "https://bcr.bazel.build/modules/rules_jvm_external/6.7/source.json": "5426f412d0a7fc6b611643376c7e4a82dec991491b9ce5cb1cfdd25fe2e92be4", + "https://bcr.bazel.build/modules/rules_kotlin/1.9.0/MODULE.bazel": "ef85697305025e5a61f395d4eaede272a5393cee479ace6686dba707de804d59", + "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/MODULE.bazel": "d269a01a18ee74d0335450b10f62c9ed81f2321d7958a2934e44272fe82dcef3", + "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/source.json": "2faa4794364282db7c06600b7e5e34867a564ae91bda7cae7c29c64e9466b7d5", + "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0", + "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d", + "https://bcr.bazel.build/modules/rules_license/1.0.0/MODULE.bazel": "a7fda60eefdf3d8c827262ba499957e4df06f659330bbe6cdbdb975b768bb65c", + "https://bcr.bazel.build/modules/rules_license/1.0.0/source.json": "a52c89e54cc311196e478f8382df91c15f7a2bfdf4c6cd0e2675cc2ff0b56efb", + "https://bcr.bazel.build/modules/rules_multirun/0.9.0/MODULE.bazel": "32d628ef586b5b23f67e55886b7bc38913ea4160420d66ae90521dda2ff37df0", + "https://bcr.bazel.build/modules/rules_multirun/0.9.0/source.json": "e882ba77962fa6c5fe68619e5c7d0374ec9a219fb8d03c42eadaf6d0243771bd", + "https://bcr.bazel.build/modules/rules_multitool/0.11.0/MODULE.bazel": "8d9dda78d2398e136300d3ef4fbcc89ede7c32c158d8c016fa7d032df41c4aaf", + "https://bcr.bazel.build/modules/rules_multitool/0.11.0/source.json": "0b86574a1eaff37c33aafaff095ea16d6ac846beb94ffc74c4fcf626f8f80681", + "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel": "6bc03c8f37f69401b888023bf511cb6ee4781433b0cb56236b2e55a21e3a026a", + "https://bcr.bazel.build/modules/rules_nodejs/6.3.2/MODULE.bazel": "42e8d5254b6135f890fecca7c8d7f95a7d27a45f8275b276f66ec337767530ef", + "https://bcr.bazel.build/modules/rules_nodejs/6.3.2/source.json": "80e0a68eb81772f1631f8b69014884eebc2474b3b3025fd19a5240ae4f76f9c9", + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc", + "https://bcr.bazel.build/modules/rules_pkg/1.0.1/MODULE.bazel": "5b1df97dbc29623bccdf2b0dcd0f5cb08e2f2c9050aab1092fd39a41e82686ff", + "https://bcr.bazel.build/modules/rules_pkg/1.0.1/source.json": "bd82e5d7b9ce2d31e380dd9f50c111d678c3bdaca190cb76b0e1c71b05e1ba8a", + "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06", + "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7", + "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/MODULE.bazel": "1e5b502e2e1a9e825eef74476a5a1ee524a92297085015a052510b09a1a09483", + "https://bcr.bazel.build/modules/rules_proto/6.0.0/MODULE.bazel": "b531d7f09f58dce456cd61b4579ce8c86b38544da75184eadaf0a7cb7966453f", + "https://bcr.bazel.build/modules/rules_proto/6.0.2/MODULE.bazel": "ce916b775a62b90b61888052a416ccdda405212b6aaeb39522f7dc53431a5e73", + "https://bcr.bazel.build/modules/rules_proto/7.0.2/MODULE.bazel": "bf81793bd6d2ad89a37a40693e56c61b0ee30f7a7fdbaf3eabbf5f39de47dea2", + "https://bcr.bazel.build/modules/rules_proto/7.1.0/MODULE.bazel": "002d62d9108f75bb807cd56245d45648f38275cb3a99dcd45dfb864c5d74cb96", + "https://bcr.bazel.build/modules/rules_proto/7.1.0/source.json": "39f89066c12c24097854e8f57ab8558929f9c8d474d34b2c00ac04630ad8940e", + "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f", + "https://bcr.bazel.build/modules/rules_python/0.23.1/MODULE.bazel": "49ffccf0511cb8414de28321f5fcf2a31312b47c40cc21577144b7447f2bf300", + "https://bcr.bazel.build/modules/rules_python/0.25.0/MODULE.bazel": "72f1506841c920a1afec76975b35312410eea3aa7b63267436bfb1dd91d2d382", + "https://bcr.bazel.build/modules/rules_python/0.26.0/MODULE.bazel": "42cb98cd15954e83b96b540dcc6d5a618eb061f056147ac4ea46e687a066a7c7", + "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel": "65dc875cc1a06c30d5bbdba7ab021fd9e551a6579e408a3943a61303e2228a53", + "https://bcr.bazel.build/modules/rules_python/0.28.0/MODULE.bazel": "cba2573d870babc976664a912539b320cbaa7114cd3e8f053c720171cde331ed", + "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58", + "https://bcr.bazel.build/modules/rules_python/0.33.2/MODULE.bazel": "3e036c4ad8d804a4dad897d333d8dce200d943df4827cb849840055be8d2e937", + "https://bcr.bazel.build/modules/rules_python/0.34.0/MODULE.bazel": "1d623d026e075b78c9fde483a889cda7996f5da4f36dffb24c246ab30f06513a", + "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c", + "https://bcr.bazel.build/modules/rules_python/0.40.0/MODULE.bazel": "9d1a3cd88ed7d8e39583d9ffe56ae8a244f67783ae89b60caafc9f5cf318ada7", + "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43", + "https://bcr.bazel.build/modules/rules_python/1.2.0/MODULE.bazel": "5aeeb48b2a6c19d668b48adf2b8a2b209a6310c230db0ce77450f148a89846e4", + "https://bcr.bazel.build/modules/rules_python/1.3.0/MODULE.bazel": "8361d57eafb67c09b75bf4bbe6be360e1b8f4f18118ab48037f2bd50aa2ccb13", + "https://bcr.bazel.build/modules/rules_python/1.4.1/MODULE.bazel": "8991ad45bdc25018301d6b7e1d3626afc3c8af8aaf4bc04f23d0b99c938b73a6", + "https://bcr.bazel.build/modules/rules_python/1.5.1/MODULE.bazel": "acfe65880942d44a69129d4c5c3122d57baaf3edf58ae5a6bd4edea114906bf5", + "https://bcr.bazel.build/modules/rules_python/1.6.0/MODULE.bazel": "7e04ad8f8d5bea40451cf80b1bd8262552aa73f841415d20db96b7241bd027d8", + "https://bcr.bazel.build/modules/rules_python/1.7.0/MODULE.bazel": "d01f995ecd137abf30238ad9ce97f8fc3ac57289c8b24bd0bf53324d937a14f8", + "https://bcr.bazel.build/modules/rules_python/1.7.0/source.json": "028a084b65dcf8f4dc4f82f8778dbe65df133f234b316828a82e060d81bdce32", + "https://bcr.bazel.build/modules/rules_shell/0.2.0/MODULE.bazel": "fda8a652ab3c7d8fee214de05e7a9916d8b28082234e8d2c0094505c5268ed3c", + "https://bcr.bazel.build/modules/rules_shell/0.3.0/MODULE.bazel": "de4402cd12f4cc8fda2354fce179fdb068c0b9ca1ec2d2b17b3e21b24c1a937b", + "https://bcr.bazel.build/modules/rules_shell/0.4.1/MODULE.bazel": "00e501db01bbf4e3e1dd1595959092c2fadf2087b2852d3f553b5370f5633592", + "https://bcr.bazel.build/modules/rules_shell/0.5.0/MODULE.bazel": "8c8447370594d45539f66858b602b0bb2cb2d3401a4ebb9ad25830c59c0f366d", + "https://bcr.bazel.build/modules/rules_shell/0.6.1/MODULE.bazel": "72e76b0eea4e81611ef5452aa82b3da34caca0c8b7b5c0c9584338aa93bae26b", + "https://bcr.bazel.build/modules/rules_shell/0.6.1/source.json": "20ec05cd5e592055e214b2da8ccb283c7f2a421ea0dc2acbf1aa792e11c03d0c", + "https://bcr.bazel.build/modules/rules_swift/1.16.0/MODULE.bazel": "4a09f199545a60d09895e8281362b1ff3bb08bbde69c6fc87aff5b92fcc916ca", + "https://bcr.bazel.build/modules/rules_swift/2.1.1/MODULE.bazel": "494900a80f944fc7aa61500c2073d9729dff0b764f0e89b824eb746959bc1046", + "https://bcr.bazel.build/modules/rules_swift/2.1.1/source.json": "40fc69dfaac64deddbb75bd99cdac55f4427d9ca0afbe408576a65428427a186", + "https://bcr.bazel.build/modules/stardoc/0.5.0/MODULE.bazel": "f9f1f46ba8d9c3362648eea571c6f9100680efc44913618811b58cc9c02cd678", + "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8", + "https://bcr.bazel.build/modules/stardoc/0.5.3/MODULE.bazel": "c7f6948dae6999bf0db32c1858ae345f112cacf98f174c7a8bb707e41b974f1c", + "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4", + "https://bcr.bazel.build/modules/stardoc/0.5.6/MODULE.bazel": "c43dabc564990eeab55e25ed61c07a1aadafe9ece96a4efabb3f8bf9063b71ef", + "https://bcr.bazel.build/modules/stardoc/0.6.2/MODULE.bazel": "7060193196395f5dd668eda046ccbeacebfd98efc77fed418dbe2b82ffaa39fd", + "https://bcr.bazel.build/modules/stardoc/0.7.0/MODULE.bazel": "05e3d6d30c099b6770e97da986c53bd31844d7f13d41412480ea265ac9e8079c", + "https://bcr.bazel.build/modules/stardoc/0.7.1/MODULE.bazel": "3548faea4ee5dda5580f9af150e79d0f6aea934fc60c1cc50f4efdd9420759e7", + "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5", + "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216", + "https://bcr.bazel.build/modules/swift_argument_parser/1.3.1.1/MODULE.bazel": "5e463fbfba7b1701d957555ed45097d7f984211330106ccd1352c6e0af0dcf91", + "https://bcr.bazel.build/modules/swift_argument_parser/1.3.1.1/source.json": "32bd87e5f4d7acc57c5b2ff7c325ae3061d5e242c0c4c214ae87e0f1c13e54cb", + "https://bcr.bazel.build/modules/tar.bzl/0.2.1/MODULE.bazel": "52d1c00a80a8cc67acbd01649e83d8dd6a9dc426a6c0b754a04fe8c219c76468", + "https://bcr.bazel.build/modules/tar.bzl/0.5.1/MODULE.bazel": "7c2eb3dcfc53b0f3d6f9acdfd911ca803eaf92aadf54f8ca6e4c1f3aee288351", + "https://bcr.bazel.build/modules/tar.bzl/0.6.0/MODULE.bazel": "a3584b4edcfafcabd9b0ef9819808f05b372957bbdff41601429d5fd0aac2e7c", + "https://bcr.bazel.build/modules/tar.bzl/0.6.0/source.json": "4a620381df075a16cb3a7ed57bd1d05f7480222394c64a20fa51bdb636fda658", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.2/MODULE.bazel": "9b8be503a4fcfd3b8b952525bff0869177a5234d5c35dc3e566b9f5ca2f755a1", + "https://bcr.bazel.build/modules/toolchain_utils/1.0.2/source.json": "88769ec576dddacafd8cca4631812cf8eead89f10a29d9405d9f7a553de6bf87", + "https://bcr.bazel.build/modules/toolchains_llvm/1.6.0/MODULE.bazel": "39603859cafb1c6830160fcd6370552e836790e6abb2bfb8d13bff53c0c10a64", + "https://bcr.bazel.build/modules/toolchains_llvm/1.6.0/source.json": "6bd3ef95a288dd2bb1582eca332af850c9a5428a23bb92cb1c57c2dfe6cb7369", + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43", + "https://bcr.bazel.build/modules/upb/0.0.0-20230516-61a97ef/MODULE.bazel": "c0df5e35ad55e264160417fd0875932ee3c9dda63d9fccace35ac62f45e1b6f9", + "https://bcr.bazel.build/modules/yq.bzl/0.1.1/MODULE.bazel": "9039681f9bcb8958ee2c87ffc74bdafba9f4369096a2b5634b88abc0eaefa072", + "https://bcr.bazel.build/modules/yq.bzl/0.1.1/source.json": "2d2bad780a9f2b9195a4a370314d2c17ae95eaa745cefc2e12fbc49759b15aa3", + "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0", + "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.5/MODULE.bazel": "eec517b5bbe5492629466e11dae908d043364302283de25581e3eb944326c4ca", + "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.5/source.json": "22bc55c47af97246cfc093d0acf683a7869377de362b5d1c552c2c2e16b7a806", + "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198" + }, + "selectedYankedVersions": {}, + "moduleExtensions": { + "//bazel:extensions.bzl%wamr": { + "general": { + "bzlTransitiveDigest": "C0vgBPjxA2qqOSf+EzSSfbA+ZhGIoSPDZ2+YDN42nmI=", + "usagesDigest": "5A/1YQmYPF+YRPkaW+IQFbe7l1OsWf2FFc8SwiWY1QM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_bytecodealliance_wasm_micro_runtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@//bazel/external:wamr.BUILD", + "sha256": "ca18bbf304f47287bf43707564db63b8908dd6d0d6ac40bb39271a7144def4cc", + "strip_prefix": "wasm-micro-runtime-WAMR-2.4.1", + "url": "https://github.com/bytecodealliance/wasm-micro-runtime/archive/refs/tags/WAMR-2.4.1.zip", + "patches": [ + "@@//bazel/external:wamr.patch" + ], + "patch_args": [ + "-p1" + ] + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "com_github_bytecodealliance_wasm_micro_runtime" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "", + "bazel_features", + "bazel_features+" + ], + [ + "", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "", + "bazel_tools", + "bazel_tools" + ], + [ + "", + "cu", + "+wasmtime_crates+cu" + ], + [ + "", + "rules_rust", + "rules_rust+" + ], + [ + "", + "ws", + "+wasmsign_crates+ws" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "//bazel:extensions.bzl%wamr_jit_deps": { + "general": { + "bzlTransitiveDigest": "C0vgBPjxA2qqOSf+EzSSfbA+ZhGIoSPDZ2+YDN42nmI=", + "usagesDigest": "zjIMfOdvkQbAnU2aXpD9BskKvrcV0MFaKlcTsyBl8fg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "llvm-raw": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@//bazel/external:wamr_llvm.BUILD", + "sha256": "5042522b49945bc560ff9206f25fb87980a9b89b914193ca00d961511ff0673c", + "strip_prefix": "llvm-project-19.1.0.src", + "url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.0/llvm-project-19.1.0.src.tar.xz" + } + }, + "llvm_zlib": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@+wamr_jit_deps+llvm-raw//utils/bazel/third_party_build:zlib-ng.BUILD", + "sha256": "e36bb346c00472a1f9ff2a0a4643e590a254be6379da7cddd9daeb9a7f296731", + "strip_prefix": "zlib-ng-2.0.7", + "urls": [ + "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.0.7.zip" + ] + } + }, + "llvm_zstd": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@+wamr_jit_deps+llvm-raw//utils/bazel/third_party_build:zstd.BUILD", + "sha256": "7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0", + "strip_prefix": "zstd-1.5.2", + "urls": [ + "https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz" + ] + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "llvm-raw", + "llvm_zlib", + "llvm_zstd" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "", + "bazel_features", + "bazel_features+" + ], + [ + "", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "", + "bazel_tools", + "bazel_tools" + ], + [ + "", + "cu", + "+wasmtime_crates+cu" + ], + [ + "", + "rules_rust", + "rules_rust+" + ], + [ + "", + "ws", + "+wasmsign_crates+ws" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "//bazel:extensions.bzl%wasmedge": { + "general": { + "bzlTransitiveDigest": "oPYU+St8cdsjfJOoZxJjAoSPk/R509inkkUUlj9bphQ=", + "usagesDigest": "KVcCQaLzHYmhH6vY+T52CYXyABE1A/hTSKz2ov1jblw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_fmtlib_fmt": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "6cb1e6d37bdcb756dbbe59be438790db409cdb4868c66e888d5df9f13f7c027f", + "strip_prefix": "fmt-11.0.2", + "urls": [ + "https://github.com/fmtlib/fmt/archive/refs/tags/11.0.2.tar.gz" + ], + "build_file": "@@//bazel/external:fmt.BUILD" + } + }, + "com_github_gabime_spdlog": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "534f2ee1a4dcbeb22249856edfb2be76a1cf4f708a20b0ac2ed090ee24cfdbc9", + "strip_prefix": "spdlog-1.13.0", + "urls": [ + "https://github.com/gabime/spdlog/archive/refs/tags/v1.13.0.tar.gz" + ], + "build_file": "@@//bazel/external:spdlog.BUILD" + } + }, + "com_github_wasmedge_wasmedge": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@//bazel/external:wasmedge.BUILD", + "sha256": "2354d90a67e3eb396179663bdc0b457abbbc70dca967ec4528f211599a49f62a", + "strip_prefix": "WasmEdge-0.16.1", + "url": "https://github.com/WasmEdge/WasmEdge/archive/refs/tags/0.16.1.tar.gz", + "patches": [ + "@@//bazel/external:wasmedge.patch" + ], + "patch_args": [ + "-p1" + ] + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "com_github_wasmedge_wasmedge" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "", + "bazel_features", + "bazel_features+" + ], + [ + "", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "", + "bazel_tools", + "bazel_tools" + ], + [ + "", + "cu", + "+wasmtime_crates+cu" + ], + [ + "", + "rules_rust", + "rules_rust+" + ], + [ + "", + "ws", + "+wasmsign_crates+ws" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "//bazel:extensions.bzl%wasmtime": { + "general": { + "bzlTransitiveDigest": "C0vgBPjxA2qqOSf+EzSSfbA+ZhGIoSPDZ2+YDN42nmI=", + "usagesDigest": "nWfLIEq3TywIqgJDHct135fd+aHd8uSNft4o9E097tM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_bytecodealliance_wasmtime": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@//bazel/external:wasmtime.BUILD", + "sha256": "2ccb49bb3bfa4d86907ad4c80d1147aef6156c7b6e3f7f14ed02a39de9761155", + "strip_prefix": "wasmtime-24.0.0", + "url": "https://github.com/bytecodealliance/wasmtime/archive/v24.0.0.tar.gz" + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "com_github_bytecodealliance_wasmtime" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "", + "bazel_features", + "bazel_features+" + ], + [ + "", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "", + "bazel_tools", + "bazel_tools" + ], + [ + "", + "cu", + "+wasmtime_crates+cu" + ], + [ + "", + "rules_rust", + "rules_rust+" + ], + [ + "", + "ws", + "+wasmsign_crates+ws" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_rules_js+//npm:extensions.bzl%pnpm": { + "general": { + "bzlTransitiveDigest": "rBJc6yBo6LAmf0l+jEyh9l0cCyEEPuhNOa+ibvPgQ3k=", + "usagesDigest": "yxkJioaKxOYkZAdkGoq2Cm79s4pW36Xwx7a8awQOU2E=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "pnpm": { + "repoRuleId": "@@aspect_rules_js+//npm/private:npm_import.bzl%npm_import_rule", + "attributes": { + "package": "pnpm", + "version": "8.6.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vRIWpD/L4phf9Bk2o/O2TDR8fFoJnpYrp2TKqTIZF/qZ2/rgL3qKXzHofHgbXsinwMoSEigz28sqk3pQ+yMEQQ==", + "url": "", + "commit": "", + "patch_args": [ + "-p0" + ], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "load(\"@aspect_rules_js//js:defs.bzl\", \"js_binary\")\njs_binary(name = \"pnpm\", data = glob([\"package/**\"]), entry_point = \"package/dist/pnpm.cjs\", visibility = [\"//visibility:public\"])", + "generate_bzl_library_targets": false, + "extract_full_archive": true + } + }, + "pnpm__links": { + "repoRuleId": "@@aspect_rules_js+//npm/private:npm_import.bzl%npm_import_links", + "attributes": { + "package": "pnpm", + "version": "8.6.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": {}, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "aspect_bazel_lib+", + "bazel_tools", + "bazel_tools" + ], + [ + "aspect_rules_js+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "aspect_rules_js+", + "bazel_features", + "bazel_features+" + ], + [ + "aspect_rules_js+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "aspect_rules_js+", + "bazel_tools", + "bazel_tools" + ], + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "bazel_features+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_tools_telemetry+//:extension.bzl%telemetry": { + "general": { + "bzlTransitiveDigest": "gA7tPEdJXhskzPIEUxjX9IdDrM6+WjfbgXJ8Ez47umk=", + "usagesDigest": "8LddSF2XQb5zxRd/MO5wOjtirvXs+9l+FzeJut4YHbI=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "aspect_tools_telemetry_report": { + "repoRuleId": "@@aspect_tools_telemetry+//:extension.bzl%tel_repository", + "attributes": { + "deps": { + "aspect_rules_lint": "1.13.0", + "aspect_tools_telemetry": "0.2.8" + } + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_tools_telemetry+", + "aspect_bazel_lib", + "aspect_bazel_lib+" + ], + [ + "aspect_tools_telemetry+", + "bazel_skylib", + "bazel_skylib+" + ] + ] + } + }, + "@@buildifier_prebuilt+//:defs.bzl%buildifier_prebuilt_deps_extension": { + "general": { + "bzlTransitiveDigest": "AiLhk8M3bYsCKureJxwsWsnViRPlVmt1v8pnOgBAUzw=", + "usagesDigest": "m+RORtK3MOrJs2auGj/7mY7N11R7swVsHYHg1jls5hs=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "buildifier_darwin_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-darwin-amd64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "eeb47b2de27f60efe549348b183fac24eae80f1479e8b06cac0799c486df5bed" + } + }, + "buildifier_darwin_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-darwin-arm64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "fa07ba0d20165917ca4cc7609f9b19a8a4392898148b7babdf6bb2a7dd963f05" + } + }, + "buildifier_linux_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-linux-amd64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "be63db12899f48600bad94051123b1fd7b5251e7661b9168582ce52396132e92" + } + }, + "buildifier_linux_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-linux-arm64" + ], + "downloaded_file_path": "buildifier", + "executable": true, + "sha256": "18540fc10f86190f87485eb86963e603e41fa022f88a2d1b0cf52ff252b5e1dd" + } + }, + "buildifier_windows_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-windows-amd64.exe" + ], + "downloaded_file_path": "buildifier.exe", + "executable": true, + "sha256": "da8372f35e34b65fb6d997844d041013bb841e55f58b54d596d35e49680fe13c" + } + }, + "buildozer_darwin_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-darwin-amd64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e" + } + }, + "buildozer_darwin_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-darwin-arm64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d" + } + }, + "buildozer_linux_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-linux-amd64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119" + } + }, + "buildozer_linux_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-linux-arm64" + ], + "downloaded_file_path": "buildozer", + "executable": true, + "sha256": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa" + } + }, + "buildozer_windows_amd64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-windows-amd64.exe" + ], + "downloaded_file_path": "buildozer.exe", + "executable": true, + "sha256": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b" + } + }, + "buildifier_prebuilt_toolchains": { + "repoRuleId": "@@buildifier_prebuilt+//:defs.bzl%_buildifier_toolchain_setup", + "attributes": { + "assets_json": "[{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"eeb47b2de27f60efe549348b183fac24eae80f1479e8b06cac0799c486df5bed\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"fa07ba0d20165917ca4cc7609f9b19a8a4392898148b7babdf6bb2a7dd963f05\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"be63db12899f48600bad94051123b1fd7b5251e7661b9168582ce52396132e92\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"18540fc10f86190f87485eb86963e603e41fa022f88a2d1b0cf52ff252b5e1dd\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"windows\",\"sha256\":\"da8372f35e34b65fb6d997844d041013bb841e55f58b54d596d35e49680fe13c\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"windows\",\"sha256\":\"e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b\",\"version\":\"v6.4.0\"}]" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "buildifier_prebuilt+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "buildifier_prebuilt+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@emsdk+//:emscripten_cache.bzl%emscripten_cache": { + "general": { + "bzlTransitiveDigest": "uqDvXmpTNqW4+ie/Fk+xC3TrFrKvL+9hNtoP51Kt2oo=", + "usagesDigest": "J9IWeZ410irEgOw4Z5HOR+ECEHF2vtBexJDJwlKj99w=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "emscripten_cache": { + "repoRuleId": "@@emsdk+//:emscripten_cache.bzl%_emscripten_cache_repository", + "attributes": { + "configuration": [], + "targets": [] + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@emsdk+//:emscripten_deps.bzl%emscripten_deps": { + "general": { + "bzlTransitiveDigest": "Hb4soNpGiuucvhX2FEDvrMc0H2XZXdouSKR4nzNhxyk=", + "usagesDigest": "Pn0tm2VuyZ57qyHoNmsyG2W/P42vf/aTXCwXKFiwbS8=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "emscripten_bin_linux": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\npackage(default_visibility = ['//visibility:public'])\n\nfilegroup(\n name = \"all\",\n srcs = glob([\"**\"]),\n)\n\nfilegroup(\n name = \"includes\",\n srcs = glob([\n \"emscripten/cache/sysroot/include/c++/v1/**\",\n \"emscripten/cache/sysroot/include/compat/**\",\n \"emscripten/cache/sysroot/include/**\",\n \"lib/clang/**/include/**\",\n ]),\n)\n\nfilegroup(\n name = \"emcc_common\",\n srcs = [\n \"emscripten/emcc.py\",\n \"emscripten/embuilder.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/cache/sysroot_install.stamp\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/third_party/**\",\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"compiler_files\",\n srcs = [\n \"bin/clang\",\n \"bin/clang++\",\n \":emcc_common\",\n \":includes\",\n ],\n)\n\nfilegroup(\n name = \"linker_files\",\n srcs = [\n \"bin/clang\",\n \"bin/llvm-ar\",\n \"bin/llvm-dwarfdump\",\n \"bin/llvm-nm\",\n \"bin/llvm-objcopy\",\n \"bin/wasm-ctor-eval\",\n \"bin/wasm-emscripten-finalize\",\n \"bin/wasm-ld\",\n \"bin/wasm-metadce\",\n \"bin/wasm-opt\",\n \"bin/wasm-split\",\n \"bin/wasm2js\",\n \":emcc_common\",\n ] + glob(\n include = [\n \"emscripten/cache/sysroot/lib/**\",\n \"emscripten/node_modules/**\",\n \"emscripten/src/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"ar_files\",\n srcs = [\n \"bin/llvm-ar\",\n \"emscripten/emar.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n", + "sha256": "5e4269ab4d4dd97da93f2833bb97780ef6ddee9a7325d345587bddf8890d89aa", + "strip_prefix": "install", + "type": "tar.xz", + "url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/41d2106c68c28e101e6252a48e22c78b07722508/wasm-binaries.tar.xz" + } + }, + "emscripten_bin_linux_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\npackage(default_visibility = ['//visibility:public'])\n\nfilegroup(\n name = \"all\",\n srcs = glob([\"**\"]),\n)\n\nfilegroup(\n name = \"includes\",\n srcs = glob([\n \"emscripten/cache/sysroot/include/c++/v1/**\",\n \"emscripten/cache/sysroot/include/compat/**\",\n \"emscripten/cache/sysroot/include/**\",\n \"lib/clang/**/include/**\",\n ]),\n)\n\nfilegroup(\n name = \"emcc_common\",\n srcs = [\n \"emscripten/emcc.py\",\n \"emscripten/embuilder.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/cache/sysroot_install.stamp\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/third_party/**\",\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"compiler_files\",\n srcs = [\n \"bin/clang\",\n \"bin/clang++\",\n \":emcc_common\",\n \":includes\",\n ],\n)\n\nfilegroup(\n name = \"linker_files\",\n srcs = [\n \"bin/clang\",\n \"bin/llvm-ar\",\n \"bin/llvm-dwarfdump\",\n \"bin/llvm-nm\",\n \"bin/llvm-objcopy\",\n \"bin/wasm-ctor-eval\",\n \"bin/wasm-emscripten-finalize\",\n \"bin/wasm-ld\",\n \"bin/wasm-metadce\",\n \"bin/wasm-opt\",\n \"bin/wasm-split\",\n \"bin/wasm2js\",\n \":emcc_common\",\n ] + glob(\n include = [\n \"emscripten/cache/sysroot/lib/**\",\n \"emscripten/node_modules/**\",\n \"emscripten/src/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"ar_files\",\n srcs = [\n \"bin/llvm-ar\",\n \"emscripten/emar.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n", + "sha256": "2ca54b47a73f1f6687e33b3494748f52d753e2e21b9db505e358d362da4794bb", + "strip_prefix": "install", + "type": "tar.xz", + "url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/linux/41d2106c68c28e101e6252a48e22c78b07722508/wasm-binaries-arm64.tar.xz" + } + }, + "emscripten_bin_mac": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\npackage(default_visibility = ['//visibility:public'])\n\nfilegroup(\n name = \"all\",\n srcs = glob([\"**\"]),\n)\n\nfilegroup(\n name = \"includes\",\n srcs = glob([\n \"emscripten/cache/sysroot/include/c++/v1/**\",\n \"emscripten/cache/sysroot/include/compat/**\",\n \"emscripten/cache/sysroot/include/**\",\n \"lib/clang/**/include/**\",\n ]),\n)\n\nfilegroup(\n name = \"emcc_common\",\n srcs = [\n \"emscripten/emcc.py\",\n \"emscripten/embuilder.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/cache/sysroot_install.stamp\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/third_party/**\",\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"compiler_files\",\n srcs = [\n \"bin/clang\",\n \"bin/clang++\",\n \":emcc_common\",\n \":includes\",\n ],\n)\n\nfilegroup(\n name = \"linker_files\",\n srcs = [\n \"bin/clang\",\n \"bin/llvm-ar\",\n \"bin/llvm-dwarfdump\",\n \"bin/llvm-nm\",\n \"bin/llvm-objcopy\",\n \"bin/wasm-ctor-eval\",\n \"bin/wasm-emscripten-finalize\",\n \"bin/wasm-ld\",\n \"bin/wasm-metadce\",\n \"bin/wasm-opt\",\n \"bin/wasm-split\",\n \"bin/wasm2js\",\n \":emcc_common\",\n ] + glob(\n include = [\n \"emscripten/cache/sysroot/lib/**\",\n \"emscripten/node_modules/**\",\n \"emscripten/src/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"ar_files\",\n srcs = [\n \"bin/llvm-ar\",\n \"emscripten/emar.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n", + "sha256": "d574a26c775b4f737a6960871340b4cdb04eefe44f6fd3a5072c62e86837c1fe", + "strip_prefix": "install", + "type": "tar.xz", + "url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/mac/41d2106c68c28e101e6252a48e22c78b07722508/wasm-binaries.tar.xz" + } + }, + "emscripten_bin_mac_arm64": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\npackage(default_visibility = ['//visibility:public'])\n\nfilegroup(\n name = \"all\",\n srcs = glob([\"**\"]),\n)\n\nfilegroup(\n name = \"includes\",\n srcs = glob([\n \"emscripten/cache/sysroot/include/c++/v1/**\",\n \"emscripten/cache/sysroot/include/compat/**\",\n \"emscripten/cache/sysroot/include/**\",\n \"lib/clang/**/include/**\",\n ]),\n)\n\nfilegroup(\n name = \"emcc_common\",\n srcs = [\n \"emscripten/emcc.py\",\n \"emscripten/embuilder.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/cache/sysroot_install.stamp\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/third_party/**\",\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"compiler_files\",\n srcs = [\n \"bin/clang\",\n \"bin/clang++\",\n \":emcc_common\",\n \":includes\",\n ],\n)\n\nfilegroup(\n name = \"linker_files\",\n srcs = [\n \"bin/clang\",\n \"bin/llvm-ar\",\n \"bin/llvm-dwarfdump\",\n \"bin/llvm-nm\",\n \"bin/llvm-objcopy\",\n \"bin/wasm-ctor-eval\",\n \"bin/wasm-emscripten-finalize\",\n \"bin/wasm-ld\",\n \"bin/wasm-metadce\",\n \"bin/wasm-opt\",\n \"bin/wasm-split\",\n \"bin/wasm2js\",\n \":emcc_common\",\n ] + glob(\n include = [\n \"emscripten/cache/sysroot/lib/**\",\n \"emscripten/node_modules/**\",\n \"emscripten/src/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"ar_files\",\n srcs = [\n \"bin/llvm-ar\",\n \"emscripten/emar.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n", + "sha256": "8a571a73461d7755787fc5ffb35b7284216741cfbbcf52d855d54d2cc36ecb9e", + "strip_prefix": "install", + "type": "tar.xz", + "url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/mac/41d2106c68c28e101e6252a48e22c78b07722508/wasm-binaries-arm64.tar.xz" + } + }, + "emscripten_bin_win": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file_content": "\npackage(default_visibility = ['//visibility:public'])\n\nfilegroup(\n name = \"all\",\n srcs = glob([\"**\"]),\n)\n\nfilegroup(\n name = \"includes\",\n srcs = glob([\n \"emscripten/cache/sysroot/include/c++/v1/**\",\n \"emscripten/cache/sysroot/include/compat/**\",\n \"emscripten/cache/sysroot/include/**\",\n \"lib/clang/**/include/**\",\n ]),\n)\n\nfilegroup(\n name = \"emcc_common\",\n srcs = [\n \"emscripten/emcc.py\",\n \"emscripten/embuilder.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/cache/sysroot_install.stamp\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/third_party/**\",\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"compiler_files\",\n srcs = [\n \"bin/clang.exe\",\n \"bin/clang++.exe\",\n \":emcc_common\",\n \":includes\",\n ],\n)\n\nfilegroup(\n name = \"linker_files\",\n srcs = [\n \"bin/clang.exe\",\n \"bin/llvm-ar.exe\",\n \"bin/llvm-dwarfdump.exe\",\n \"bin/llvm-nm.exe\",\n \"bin/llvm-objcopy.exe\",\n \"bin/wasm-ctor-eval.exe\",\n \"bin/wasm-emscripten-finalize.exe\",\n \"bin/wasm-ld.exe\",\n \"bin/wasm-metadce.exe\",\n \"bin/wasm-opt.exe\",\n \"bin/wasm-split.exe\",\n \"bin/wasm2js.exe\",\n \":emcc_common\",\n ] + glob(\n include = [\n \"emscripten/cache/sysroot/lib/**\",\n \"emscripten/node_modules/**\",\n \"emscripten/src/**\",\n ],\n ),\n)\n\nfilegroup(\n name = \"ar_files\",\n srcs = [\n \"bin/llvm-ar.exe\",\n \"emscripten/emar.py\",\n \"emscripten/emscripten-version.txt\",\n \"emscripten/src/settings.js\",\n \"emscripten/src/settings_internal.js\",\n ] + glob(\n include = [\n \"emscripten/tools/**\",\n ],\n exclude = [\n \"**/__pycache__/**\",\n ],\n ),\n)\n", + "sha256": "a394e719b3258ca7502cb85c9f1031b356ec41f511a187f79bb50b91678aae75", + "strip_prefix": "install", + "type": "zip", + "url": "https://storage.googleapis.com/webassembly/emscripten-releases-builds/win/41d2106c68c28e101e6252a48e22c78b07722508/wasm-binaries.zip" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_tools", + "rules_cc", + "rules_cc+" + ], + [ + "emsdk+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@gazelle+//:extensions.bzl%go_deps": { + "general": { + "bzlTransitiveDigest": "5XiuqrLF/9AA9uua2Xe8m9Pwq+PP1kPChaZSEImEHYQ=", + "usagesDigest": "tfQCHJg51LFgV7hTP9SLQammcDdAISgPLeV+eH7GlJ4=", + "recordedFileInputs": { + "@@gazelle+//go.mod": "9ae159a385b2f244bbe964b9f91dbea6e7bd534e0b22e846655f241c65de2c49", + "@@gazelle+//go.sum": "7469786f3930030c430969cedae951e6947cb40f4a563dac94a350659c0fedc4", + "@@rules_buf+//go.mod": "c96e5c352880a2df5cd7294265df91c7bad4fb24ef3865ccb1b9ceb29341cf8a", + "@@rules_buf+//go.sum": "968d06e5d35e524686d63dda36b4fb82d5054a4c5a42a5da8214a43cc4e8edb3", + "@@rules_go+//go.mod": "a7143f329c2a3e0b983ce74a96c0c25b0d0c59d236d75f7e1b069aadd988d55e", + "@@rules_go+//go.sum": "022d36c9ebcc7b5dee1e9b85b3da9c9f3a529ee6f979946d66e4955b8d54614a" + }, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_bazelbuild_buildtools": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/bazelbuild/buildtools", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:2Gc2Q6hVR1SJ8bBI9Ybzoggp8u/ED2WkM4MfvEIn9+c=", + "replace": "", + "version": "v0.0.0-20231115204819-d4c9dccdfbb1" + } + }, + "com_github_stretchr_testify": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/stretchr/testify", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=", + "replace": "", + "version": "v1.8.4" + } + }, + "in_gopkg_yaml_v3": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "gopkg.in/yaml.v3", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=", + "replace": "", + "version": "v3.0.1" + } + }, + "com_github_davecgh_go_spew": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/davecgh/go-spew", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", + "replace": "", + "version": "v1.1.1" + } + }, + "com_github_google_go_cmp": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/google/go-cmp", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=", + "replace": "", + "version": "v0.6.0" + } + }, + "com_github_pmezard_go_difflib": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/pmezard/go-difflib", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", + "replace": "", + "version": "v1.0.0" + } + }, + "org_golang_x_mod": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/mod", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0=", + "replace": "", + "version": "v0.14.0" + } + }, + "org_golang_x_sys": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/sys", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q=", + "replace": "", + "version": "v0.14.0" + } + }, + "org_golang_x_tools_go_vcs": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/tools/go/vcs", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:cOIJqWBl99H1dH5LWizPa+0ImeeJq3t3cJjaeOWUAL4=", + "replace": "", + "version": "v0.1.0-deprecated" + } + }, + "in_gopkg_check_v1": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "gopkg.in/check.v1", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=", + "replace": "", + "version": "v1.0.0-20201130134442-10cb98267c6c" + } + }, + "com_github_gogo_protobuf": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/gogo/protobuf", + "build_directives": [ + "gazelle:proto disable" + ], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=", + "replace": "", + "version": "v1.3.2" + } + }, + "com_github_golang_mock": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/golang/mock", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=", + "replace": "", + "version": "v1.6.0" + } + }, + "com_github_golang_protobuf": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/golang/protobuf", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=", + "replace": "", + "version": "v1.5.2" + } + }, + "org_golang_google_protobuf": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "google.golang.org/protobuf", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=", + "replace": "", + "version": "v1.28.0" + } + }, + "org_golang_x_net": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/net", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0=", + "replace": "", + "version": "v0.0.0-20210405180319-a5a99cb37ef4" + } + }, + "org_golang_x_text": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/text", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=", + "replace": "", + "version": "v0.3.3" + } + }, + "org_golang_google_genproto": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "google.golang.org/genproto", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=", + "replace": "", + "version": "v0.0.0-20200526211855-cb27e3aa2013" + } + }, + "org_golang_google_grpc": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "google.golang.org/grpc", + "build_directives": [ + "gazelle:proto disable" + ], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:fPVVDxY9w++VjTZsYvXWqEf9Rqar/e+9zYfxKK+W+YU=", + "replace": "", + "version": "v1.50.0" + } + }, + "org_golang_x_tools": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/tools", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ=", + "replace": "", + "version": "v0.13.0" + } + }, + "com_github_bmatcuk_doublestar_v4": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/bmatcuk/doublestar/v4", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I=", + "replace": "", + "version": "v4.6.1" + } + }, + "com_github_fsnotify_fsnotify": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "github.com/fsnotify/fsnotify", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=", + "replace": "", + "version": "v1.7.0" + } + }, + "org_golang_x_sync": { + "repoRuleId": "@@gazelle+//internal:go_repository.bzl%go_repository", + "attributes": { + "importpath": "golang.org/x/sync", + "build_directives": [], + "build_file_generation": "auto", + "build_extra_args": [], + "patches": [], + "patch_args": [], + "sum": "h1:zxkM55ReGkDlKSM+Fu41A+zmbZuaPVbGMzvvdUPznYQ=", + "replace": "", + "version": "v0.4.0" + } + }, + "bazel_gazelle_go_repository_config": { + "repoRuleId": "@@gazelle+//internal/bzlmod:go_deps.bzl%_go_repository_config", + "attributes": { + "importpaths": { + "@gazelle+": "github.com/bazelbuild/bazel-gazelle", + "com_github_bazelbuild_buildtools": "github.com/bazelbuild/buildtools", + "@rules_go+": "github.com/bazelbuild/rules_go", + "com_github_stretchr_testify": "github.com/stretchr/testify", + "in_gopkg_yaml_v3": "gopkg.in/yaml.v3", + "com_github_davecgh_go_spew": "github.com/davecgh/go-spew", + "com_github_google_go_cmp": "github.com/google/go-cmp", + "com_github_pmezard_go_difflib": "github.com/pmezard/go-difflib", + "org_golang_x_mod": "golang.org/x/mod", + "org_golang_x_sys": "golang.org/x/sys", + "org_golang_x_tools_go_vcs": "golang.org/x/tools/go/vcs", + "in_gopkg_check_v1": "gopkg.in/check.v1", + "com_github_gogo_protobuf": "github.com/gogo/protobuf", + "com_github_golang_mock": "github.com/golang/mock", + "com_github_golang_protobuf": "github.com/golang/protobuf", + "org_golang_google_protobuf": "google.golang.org/protobuf", + "org_golang_x_net": "golang.org/x/net", + "org_golang_x_text": "golang.org/x/text", + "org_golang_google_genproto": "google.golang.org/genproto", + "org_golang_google_grpc": "google.golang.org/grpc", + "org_golang_x_tools": "golang.org/x/tools", + "com_github_bmatcuk_doublestar_v4": "github.com/bmatcuk/doublestar/v4", + "com_github_fsnotify_fsnotify": "github.com/fsnotify/fsnotify", + "org_golang_x_sync": "golang.org/x/sync", + "@rules_buf+": "github.com/bufbuild/rules_buf" + }, + "module_names": { + "@rules_buf+": "rules_buf", + "@rules_go+": "rules_go", + "@gazelle+": "gazelle" + }, + "build_naming_conventions": {} + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "gazelle+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@gazelle+//internal/bzlmod:non_module_deps.bzl%non_module_deps": { + "general": { + "bzlTransitiveDigest": "AjbsH9WZCj0ipLarbbkp25YBRrRhWYvO7OIiTcHyyok=", + "usagesDigest": "/EIHHLtjAqjZiKFavzwtqyPtUxCp0xuO4NLoiFGXgIw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "bazel_gazelle_go_repository_cache": { + "repoRuleId": "@@gazelle+//internal:go_repository_cache.bzl%go_repository_cache", + "attributes": { + "go_sdk_name": "@rules_go++go_sdk+go_default_sdk", + "go_env": {} + } + }, + "bazel_gazelle_go_repository_tools": { + "repoRuleId": "@@gazelle+//internal:go_repository_tools.bzl%go_repository_tools", + "attributes": { + "go_cache": "@@gazelle++non_module_deps+bazel_gazelle_go_repository_cache//:go.env" + } + }, + "bazel_gazelle_is_bazel_module": { + "repoRuleId": "@@gazelle+//internal:is_bazel_module.bzl%is_bazel_module", + "attributes": { + "is_bazel_module": true + } + } + }, + "recordedRepoMappingEntries": [ + [ + "gazelle+", + "bazel_gazelle_go_repository_cache", + "gazelle++non_module_deps+bazel_gazelle_go_repository_cache" + ], + [ + "gazelle+", + "go_host_compatible_sdk_label", + "rules_go++go_sdk+go_host_compatible_sdk_label" + ], + [ + "rules_go++go_sdk+go_host_compatible_sdk_label", + "go_default_sdk", + "rules_go++go_sdk+go_default_sdk" + ] + ] + } + }, + "@@pybind11_bazel+//:internal_configure.bzl%internal_configure_extension": { + "general": { + "bzlTransitiveDigest": "I/JSPbvU3ci1dZBzttgrPohOrk0UAvdB4vdjkHo2Lb4=", + "usagesDigest": "tVQNvLoXMWAbiK39am3yovKGpwINdftfn7RpDyN+JZc=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "pybind11": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@pybind11_bazel+//:pybind11-BUILD.bazel", + "strip_prefix": "pybind11-2.13.6", + "url": "https://github.com/pybind/pybind11/archive/refs/tags/v2.13.6.tar.gz", + "integrity": "sha256-4Iy4f0dz2pf6e18DXeh2OrxlbYfVdz5i9toFh9Hw7CA=" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "pybind11_bazel+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_apple+//apple:apple.bzl%provisioning_profile_repository_extension": { + "general": { + "bzlTransitiveDigest": "DBjF8z9KnkAVkDon8si62fhfjje60FibbeIt+zE+BWw=", + "usagesDigest": "vsJl8Rw5NL+5Ag2wdUDoTeRF/5klkXO8545Iy7U1Q08=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_provisioning_profiles": { + "repoRuleId": "@@rules_apple+//apple/internal:local_provisioning_profiles.bzl%provisioning_profile_repository", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "apple_support+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "bazel_tools", + "rules_cc", + "rules_cc+" + ], + [ + "rules_apple+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_apple+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_apple+", + "build_bazel_apple_support", + "apple_support+" + ], + [ + "rules_apple+", + "build_bazel_rules_swift", + "rules_swift+" + ], + [ + "rules_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_cc+", + "cc_compatibility_proxy", + "rules_cc++compatibility_proxy+cc_compatibility_proxy" + ], + [ + "rules_cc+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_cc++compatibility_proxy+cc_compatibility_proxy", + "rules_cc", + "rules_cc+" + ], + [ + "rules_swift+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_swift+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_swift+", + "build_bazel_apple_support", + "apple_support+" + ], + [ + "rules_swift+", + "build_bazel_rules_swift", + "rules_swift+" + ], + [ + "rules_swift+", + "build_bazel_rules_swift_local_config", + "rules_swift++non_module_deps+build_bazel_rules_swift_local_config" + ] + ] + } + }, + "@@rules_apple+//apple:extensions.bzl%non_module_deps": { + "general": { + "bzlTransitiveDigest": "UsflLeiazyu2v5pvibcvOeIdDV95S25rT96h4XU1nhY=", + "usagesDigest": "M3VqFpeTCo4qmrNKGZw0dxBHvTYDrfV3cscGzlSAhQ4=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "xctestrunner": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/google/xctestrunner/archive/b7698df3d435b6491b4b4c0f9fc7a63fbed5e3a6.tar.gz" + ], + "strip_prefix": "xctestrunner-b7698df3d435b6491b4b4c0f9fc7a63fbed5e3a6", + "sha256": "ae3a063c985a8633cb7eb566db21656f8db8eb9a0edb8c182312c7f0db53730d" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_apple+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_buf+//buf:extensions.bzl%buf": { + "general": { + "bzlTransitiveDigest": "7lUQZIi5u5kjLotkiZrmQ3jldx7w/31P5crwGwQQnmI=", + "usagesDigest": "vxN6C2h72rUERbAmd1476FWpxdxo1NhYoY5JSFXJT3g=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_buf_toolchains": { + "repoRuleId": "@@rules_buf+//buf/internal:toolchain.bzl%buf_download_releases", + "attributes": { + "version": "v1.47.2", + "sha256": "1b37b75dc0a777a0cba17fa2604bc9906e55bb4c578823d8b7a8fe3fc9fe4439" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_buf+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_go+//go:extensions.bzl%go_sdk": { + "os:linux,arch:amd64": { + "bzlTransitiveDigest": "Imlogm2eyjxaHL3zoy5FLGyTmD/uObXN3D0jCM+flB4=", + "usagesDigest": "igIBXyqNg9Be63Cuu6kZxOeoDRDMqxSv8BcoWiqSh3w=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "go_default_sdk": { + "repoRuleId": "@@rules_go+//go/private:sdk.bzl%go_download_sdk_rule", + "attributes": { + "goos": "", + "goarch": "", + "sdks": {}, + "experiments": [], + "patches": [], + "patch_strip": 0, + "urls": [ + "https://dl.google.com/go/{}" + ], + "version": "1.21.1", + "strip_prefix": "go" + } + }, + "go_host_compatible_sdk_label": { + "repoRuleId": "@@rules_go+//go/private:extensions.bzl%host_compatible_toolchain", + "attributes": { + "toolchain": "@go_default_sdk//:ROOT" + } + }, + "go_toolchains": { + "repoRuleId": "@@rules_go+//go/private:sdk.bzl%go_multiple_toolchains", + "attributes": { + "prefixes": [ + "_0000_go_default_sdk_" + ], + "geese": [ + "" + ], + "goarchs": [ + "" + ], + "sdk_repos": [ + "go_default_sdk" + ], + "sdk_types": [ + "remote" + ], + "sdk_versions": [ + "1.21.1" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_go+", + "bazel_features", + "bazel_features+" + ], + [ + "rules_go+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_go+//go/private:extensions.bzl%non_module_dependencies": { + "general": { + "bzlTransitiveDigest": "Ny6w6e0v1tle7L2LJh58CeurH0BQhFkUY/IaloiDAvY=", + "usagesDigest": "JL1XfI3Chd9vaoVGnIlNXDdHjWcf9WYe/Lu+A1HCC74=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "bazel_skylib": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz", + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz" + ], + "sha256": "66ffd9315665bfaafc96b52278f57c7e2dd09f5ede279ea6d39b2be471e7e3aa", + "strip_prefix": "" + } + }, + "org_golang_x_tools": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/tools/archive/refs/tags/v0.7.0.zip", + "https://github.com/golang/tools/archive/refs/tags/v0.7.0.zip" + ], + "sha256": "9f20a20f29f4008d797a8be882ef82b69cf8f7f2b96dbdfe3814c57d8280fa4b", + "strip_prefix": "tools-0.7.0", + "patches": [ + "@@rules_go+//third_party:org_golang_x_tools-deletegopls.patch", + "@@rules_go+//third_party:org_golang_x_tools-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "org_golang_x_tools_go_vcs": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/tools/archive/refs/tags/go/vcs/v0.1.0-deprecated.zip", + "https://github.com/golang/tools/archive/refs/tags/go/vcs/v0.1.0-deprecated.zip" + ], + "sha256": "1b389268d126467105305ae4482df0189cc80a13aaab28d0946192b4ad0737a8", + "strip_prefix": "tools-go-vcs-v0.1.0-deprecated/go/vcs", + "patches": [ + "@@rules_go+//third_party:org_golang_x_tools_go_vcs-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "org_golang_x_sys": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/sys/archive/refs/tags/v0.12.0.zip", + "https://github.com/golang/sys/archive/refs/tags/v0.12.0.zip" + ], + "sha256": "229b079d23d18f5b1a0c46335020cddc6e5d543da2dae6e45b59d84b5d074e3a", + "strip_prefix": "sys-0.12.0", + "patches": [ + "@@rules_go+//third_party:org_golang_x_sys-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "org_golang_x_xerrors": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/xerrors/archive/04be3eba64a22a838cdb17b8dca15a52871c08b4.zip", + "https://github.com/golang/xerrors/archive/04be3eba64a22a838cdb17b8dca15a52871c08b4.zip" + ], + "sha256": "ffad2b06ef2e09d040da2ff08077865e99ab95d4d0451737fc8e33706bb01634", + "strip_prefix": "xerrors-04be3eba64a22a838cdb17b8dca15a52871c08b4", + "patches": [ + "@@rules_go+//third_party:org_golang_x_xerrors-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "org_golang_google_protobuf": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "f5d1f6d0e9b836aceb715f1df2dc065083a55b07ecec3b01b5e89d039b14da02", + "urls": [ + "https://mirror.bazel.build/github.com/protocolbuffers/protobuf-go/archive/refs/tags/v1.31.0.zip", + "https://github.com/protocolbuffers/protobuf-go/archive/refs/tags/v1.31.0.zip" + ], + "strip_prefix": "protobuf-go-1.31.0", + "patches": [ + "@@rules_go+//third_party:org_golang_google_protobuf-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "com_github_golang_protobuf": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/protobuf/archive/refs/tags/v1.5.3.zip", + "https://github.com/golang/protobuf/archive/refs/tags/v1.5.3.zip" + ], + "sha256": "2dced4544ae5372281e20f1e48ca76368355a01b31353724718c4d6e3dcbb430", + "strip_prefix": "protobuf-1.5.3", + "patches": [ + "@@rules_go+//third_party:com_github_golang_protobuf-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "com_github_mwitkow_go_proto_validators": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/mwitkow/go-proto-validators/archive/refs/tags/v0.3.2.zip", + "https://github.com/mwitkow/go-proto-validators/archive/refs/tags/v0.3.2.zip" + ], + "sha256": "d8697f05a2f0eaeb65261b480e1e6035301892d9fc07ed945622f41b12a68142", + "strip_prefix": "go-proto-validators-0.3.2" + } + }, + "com_github_gogo_protobuf": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/gogo/protobuf/archive/refs/tags/v1.3.2.zip", + "https://github.com/gogo/protobuf/archive/refs/tags/v1.3.2.zip" + ], + "sha256": "f89f8241af909ce3226562d135c25b28e656ae173337b3e58ede917aa26e1e3c", + "strip_prefix": "protobuf-1.3.2", + "patches": [ + "@@rules_go+//third_party:com_github_gogo_protobuf-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "gogo_special_proto": { + "repoRuleId": "@@rules_go+//proto:gogo.bzl%gogo_special_proto", + "attributes": {} + }, + "org_golang_google_genproto": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/googleapis/go-genproto/archive/007df8e322eb3e384d36c0821e2337825c203ca6.zip", + "https://github.com/googleapis/go-genproto/archive/007df8e322eb3e384d36c0821e2337825c203ca6.zip" + ], + "sha256": "e7d0f3faed86258ed4e8e5527a8e98ff00fbd5b1a9b379a99a4aa2f76ce8bbcc", + "strip_prefix": "go-genproto-007df8e322eb3e384d36c0821e2337825c203ca6", + "patches": [ + "@@rules_go+//third_party:org_golang_google_genproto-gazelle.patch" + ], + "patch_args": [ + "-p1" + ] + } + }, + "com_github_golang_mock": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://mirror.bazel.build/github.com/golang/mock/archive/refs/tags/v1.7.0-rc.1.zip", + "https://github.com/golang/mock/archive/refs/tags/v1.7.0-rc.1.zip" + ], + "patches": [ + "@@rules_go+//third_party:com_github_golang_mock-gazelle.patch" + ], + "patch_args": [ + "-p1" + ], + "sha256": "5359c78b0c1649cf7beb3b48ff8b1d1aaf0243b22ea4789aba94805280075d8e", + "strip_prefix": "mock-1.7.0-rc.1" + } + }, + "io_bazel_rules_nogo": { + "repoRuleId": "@@rules_go+//go/private:nogo.bzl%go_register_nogo", + "attributes": { + "nogo": "@io_bazel_rules_go//:default_nogo" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_go+", + "bazel_features", + "bazel_features+" + ], + [ + "rules_go+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_kotlin+//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": { + "general": { + "bzlTransitiveDigest": "rL/34P1aFDq2GqVC2zCFgQ8nTuOC6ziogocpvG50Qz8=", + "usagesDigest": "QI2z8ZUR+mqtbwsf2fLqYdJAkPOHdOV+tF2yVAUgRzw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_jetbrains_kotlin_git": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_compiler_git_repository", + "attributes": { + "urls": [ + "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip" + ], + "sha256": "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88" + } + }, + "com_github_jetbrains_kotlin": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_capabilities_repository", + "attributes": { + "git_repository_name": "com_github_jetbrains_kotlin_git", + "compiler_version": "1.9.23" + } + }, + "com_github_google_ksp": { + "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:ksp.bzl%ksp_compiler_plugin_repository", + "attributes": { + "urls": [ + "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip" + ], + "sha256": "ee0618755913ef7fd6511288a232e8fad24838b9af6ea73972a76e81053c8c2d", + "strip_version": "1.9.23-1.0.20" + } + }, + "com_github_pinterest_ktlint": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file", + "attributes": { + "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985", + "urls": [ + "https://github.com/pinterest/ktlint/releases/download/1.3.0/ktlint" + ], + "executable": true + } + }, + "rules_android": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806", + "strip_prefix": "rules_android-0.1.1", + "urls": [ + "https://github.com/bazelbuild/rules_android/archive/v0.1.1.zip" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_kotlin+", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_multitool+//multitool:extension.bzl%multitool": { + "general": { + "bzlTransitiveDigest": "/ccUK/AUz8V8DLgKe/Qq8WzmcnJ3pnl6E/UeX+02THo=", + "usagesDigest": "bjgtSCxGgEM2FF/RkradXB+W6jkOKkjJndtaIjaeiS4=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "multitool.linux_arm64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "linux", + "cpu": "arm64" + } + }, + "multitool.linux_x86_64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "linux", + "cpu": "x86_64" + } + }, + "multitool.macos_arm64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "macos", + "cpu": "arm64" + } + }, + "multitool.macos_x86_64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "macos", + "cpu": "x86_64" + } + }, + "multitool.windows_arm64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "windows", + "cpu": "arm64" + } + }, + "multitool.windows_x86_64": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_env_specific_tools", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ], + "os": "windows", + "cpu": "x86_64" + } + }, + "multitool": { + "repoRuleId": "@@rules_multitool+//multitool/private:multitool.bzl%_multitool_hub", + "attributes": { + "lockfiles": [ + "@@aspect_rules_lint+//format:multitool.lock.json", + "@@aspect_rules_lint+//lint:multitool.lock.json" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_multitool+", + "bazel_features", + "bazel_features+" + ] + ] + } + }, + "@@rules_nodejs+//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "rphcryfYrOY/P3emfTskC/GY5YuHcwMl2B2ncjaM8lY=", + "usagesDigest": "QSe6cWQvIHxGp1J+99fPJMNXT1Hr7PtV5kHJsfET99A=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nodejs_linux_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "linux_amd64" + } + }, + "nodejs_linux_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "linux_arm64" + } + }, + "nodejs_linux_s390x": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "linux_s390x" + } + }, + "nodejs_linux_ppc64le": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "linux_ppc64le" + } + }, + "nodejs_darwin_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "darwin_amd64" + } + }, + "nodejs_darwin_arm64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "darwin_arm64" + } + }, + "nodejs_windows_amd64": { + "repoRuleId": "@@rules_nodejs+//nodejs:repositories.bzl%_nodejs_repositories", + "attributes": { + "node_download_auth": {}, + "node_repositories": {}, + "node_urls": [ + "https://nodejs.org/dist/v{version}/{filename}" + ], + "node_version": "20.18.0", + "include_headers": false, + "platform": "windows_amd64" + } + }, + "nodejs": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_host": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_repo_host_os_alias.bzl%nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_toolchains": { + "repoRuleId": "@@rules_nodejs+//nodejs/private:nodejs_toolchains_repo.bzl%nodejs_toolchains_repo", + "attributes": { + "user_node_repository_name": "nodejs" + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@rules_python+//python/extensions:config.bzl%config": { + "general": { + "bzlTransitiveDigest": "W97kKxM+lW7l/kO0rQa7Jm31CA1j+W1bNHGKjwX5xMg=", + "usagesDigest": "ZVSXMAGpD+xzVNPuvF1IoLBkty7TROO0+akMapt1pAg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_python_internal": { + "repoRuleId": "@@rules_python+//python/private:internal_config_repo.bzl%internal_config_repo", + "attributes": { + "transition_setting_generators": {}, + "transition_settings": [] + } + }, + "pypi__build": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/e2/03/f3c8ba0a6b6e30d7d18c40faab90807c9bb5e9a1e3b2fe2008af624a9c97/build-1.2.1-py3-none-any.whl", + "sha256": "75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__click": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", + "sha256": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__colorama": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", + "sha256": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__importlib_metadata": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/2d/0a/679461c511447ffaf176567d5c496d1de27cbe34a87df6677d7171b2fbd4/importlib_metadata-7.1.0-py3-none-any.whl", + "sha256": "30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__installer": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl", + "sha256": "05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__more_itertools": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/50/e2/8e10e465ee3987bb7c9ab69efb91d867d93959095f4807db102d07995d94/more_itertools-10.2.0-py3-none-any.whl", + "sha256": "686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__packaging": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/49/df/1fceb2f8900f8639e278b056416d49134fb8d84c5942ffaa01ad34782422/packaging-24.0-py3-none-any.whl", + "sha256": "2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__pep517": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/25/6e/ca4a5434eb0e502210f591b97537d322546e4833dcb4d470a48c375c5540/pep517-0.13.1-py3-none-any.whl", + "sha256": "31b206f67165b3536dd577c5c3f1518e8fbaf38cbc57efff8369a392feff1721", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__pip": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/8a/6a/19e9fe04fca059ccf770861c7d5721ab4c2aebc539889e97c7977528a53b/pip-24.0-py3-none-any.whl", + "sha256": "ba0d021a166865d2265246961bec0152ff124de910c5cc39f1156ce3fa7c69dc", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__pip_tools": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/0d/dc/38f4ce065e92c66f058ea7a368a9c5de4e702272b479c0992059f7693941/pip_tools-7.4.1-py3-none-any.whl", + "sha256": "4c690e5fbae2f21e87843e89c26191f0d9454f362d8acdbd695716493ec8b3a9", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__pyproject_hooks": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/ae/f3/431b9d5fe7d14af7a32340792ef43b8a714e7726f1d7b69cc4e8e7a3f1d7/pyproject_hooks-1.1.0-py3-none-any.whl", + "sha256": "7ceeefe9aec63a1064c18d939bdc3adf2d8aa1988a510afec15151578b232aa2", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__setuptools": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/90/99/158ad0609729111163fc1f674a5a42f2605371a4cf036d0441070e2f7455/setuptools-78.1.1-py3-none-any.whl", + "sha256": "c3a9c4211ff4c309edb8b8c4f1cbfa7ae324c4ba9f91ff254e3d305b9fd54561", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__tomli": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl", + "sha256": "939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__wheel": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/7d/cd/d7460c9a869b16c3dd4e1e403cce337df165368c71d6af229a74699622ce/wheel-0.43.0-py3-none-any.whl", + "sha256": "55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + }, + "pypi__zipp": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "url": "https://files.pythonhosted.org/packages/da/55/a03fd7240714916507e1fcf7ae355bd9d9ed2e6db492595f1a67f61681be/zipp-3.18.2-py3-none-any.whl", + "sha256": "dce197b859eb796242b0622af1b8beb0a722d52aa2f57133ead08edd5bf5374e", + "type": "zip", + "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:py_library.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude to avoid non-determinism.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_python+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_python+", + "pypi__build", + "rules_python++config+pypi__build" + ], + [ + "rules_python+", + "pypi__click", + "rules_python++config+pypi__click" + ], + [ + "rules_python+", + "pypi__colorama", + "rules_python++config+pypi__colorama" + ], + [ + "rules_python+", + "pypi__importlib_metadata", + "rules_python++config+pypi__importlib_metadata" + ], + [ + "rules_python+", + "pypi__installer", + "rules_python++config+pypi__installer" + ], + [ + "rules_python+", + "pypi__more_itertools", + "rules_python++config+pypi__more_itertools" + ], + [ + "rules_python+", + "pypi__packaging", + "rules_python++config+pypi__packaging" + ], + [ + "rules_python+", + "pypi__pep517", + "rules_python++config+pypi__pep517" + ], + [ + "rules_python+", + "pypi__pip", + "rules_python++config+pypi__pip" + ], + [ + "rules_python+", + "pypi__pip_tools", + "rules_python++config+pypi__pip_tools" + ], + [ + "rules_python+", + "pypi__pyproject_hooks", + "rules_python++config+pypi__pyproject_hooks" + ], + [ + "rules_python+", + "pypi__setuptools", + "rules_python++config+pypi__setuptools" + ], + [ + "rules_python+", + "pypi__tomli", + "rules_python++config+pypi__tomli" + ], + [ + "rules_python+", + "pypi__wheel", + "rules_python++config+pypi__wheel" + ], + [ + "rules_python+", + "pypi__zipp", + "rules_python++config+pypi__zipp" + ] + ] + } + }, + "@@rules_python+//python/uv:uv.bzl%uv": { + "general": { + "bzlTransitiveDigest": "zyNsrbgVKwpA0B3zI84imAfuC424VSzYNPgjr/HJy5M=", + "usagesDigest": "H8dQoNZcoqP+Mu0tHZTi4KHATzvNkM5ePuEqoQdklIU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "uv": { + "repoRuleId": "@@rules_python+//python/uv/private:uv_toolchains_repo.bzl%uv_toolchains_repo", + "attributes": { + "toolchain_type": "'@@rules_python+//python/uv:uv_toolchain_type'", + "toolchain_names": [ + "none" + ], + "toolchain_implementations": { + "none": "'@@rules_python+//python:none'" + }, + "toolchain_compatible_with": { + "none": [ + "@platforms//:incompatible" + ] + }, + "toolchain_target_settings": {} + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_python+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_python+", + "platforms", + "platforms" + ] + ] + } + }, + "@@rules_rust+//crate_universe/private:internal_extensions.bzl%cu_nr": { + "general": { + "bzlTransitiveDigest": "Uh7/xEZPWbq6BHhlU6U53a3uBZT8CDe83FxqbGdfXl0=", + "usagesDigest": "oUK0ytEbfl+CaIzEjRqZCnsb5eUCZOx9usreQy09/3o=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "cargo_bazel_bootstrap": { + "repoRuleId": "@@rules_rust+//cargo/private:cargo_bootstrap.bzl%cargo_bootstrap_repository", + "attributes": { + "srcs": [ + "@@rules_rust+//crate_universe:src/api.rs", + "@@rules_rust+//crate_universe:src/api/lockfile.rs", + "@@rules_rust+//crate_universe:src/cli.rs", + "@@rules_rust+//crate_universe:src/cli/generate.rs", + "@@rules_rust+//crate_universe:src/cli/query.rs", + "@@rules_rust+//crate_universe:src/cli/render.rs", + "@@rules_rust+//crate_universe:src/cli/splice.rs", + "@@rules_rust+//crate_universe:src/cli/vendor.rs", + "@@rules_rust+//crate_universe:src/config.rs", + "@@rules_rust+//crate_universe:src/context.rs", + "@@rules_rust+//crate_universe:src/context/crate_context.rs", + "@@rules_rust+//crate_universe:src/context/platforms.rs", + "@@rules_rust+//crate_universe:src/lib.rs", + "@@rules_rust+//crate_universe:src/lockfile.rs", + "@@rules_rust+//crate_universe:src/main.rs", + "@@rules_rust+//crate_universe:src/metadata.rs", + "@@rules_rust+//crate_universe:src/metadata/cargo_bin.rs", + "@@rules_rust+//crate_universe:src/metadata/cargo_tree_resolver.rs", + "@@rules_rust+//crate_universe:src/metadata/cargo_tree_rustc_wrapper.bat", + "@@rules_rust+//crate_universe:src/metadata/cargo_tree_rustc_wrapper.sh", + "@@rules_rust+//crate_universe:src/metadata/dependency.rs", + "@@rules_rust+//crate_universe:src/metadata/metadata_annotation.rs", + "@@rules_rust+//crate_universe:src/rendering.rs", + "@@rules_rust+//crate_universe:src/rendering/template_engine.rs", + "@@rules_rust+//crate_universe:src/rendering/templates/module_bzl.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/partials/header.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/partials/module/aliases_map.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/partials/module/deps_map.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/partials/module/repo_git.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/partials/module/repo_http.j2", + "@@rules_rust+//crate_universe:src/rendering/templates/vendor_module.j2", + "@@rules_rust+//crate_universe:src/rendering/verbatim/alias_rules.bzl", + "@@rules_rust+//crate_universe:src/select.rs", + "@@rules_rust+//crate_universe:src/splicing.rs", + "@@rules_rust+//crate_universe:src/splicing/cargo_config.rs", + "@@rules_rust+//crate_universe:src/splicing/crate_index_lookup.rs", + "@@rules_rust+//crate_universe:src/splicing/splicer.rs", + "@@rules_rust+//crate_universe:src/test.rs", + "@@rules_rust+//crate_universe:src/utils.rs", + "@@rules_rust+//crate_universe:src/utils/starlark.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/glob.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/label.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/select.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/select_dict.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/select_list.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/select_scalar.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/select_set.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/serialize.rs", + "@@rules_rust+//crate_universe:src/utils/starlark/target_compatible_with.rs", + "@@rules_rust+//crate_universe:src/utils/symlink.rs", + "@@rules_rust+//crate_universe:src/utils/target_triple.rs" + ], + "binary": "cargo-bazel", + "cargo_lockfile": "@@rules_rust+//crate_universe:Cargo.lock", + "cargo_toml": "@@rules_rust+//crate_universe:Cargo.toml", + "version": "1.86.0", + "timeout": 900, + "rust_toolchain_cargo_template": "@rust_host_tools//:bin/{tool}", + "rust_toolchain_rustc_template": "@rust_host_tools//:bin/{tool}", + "compressed_windows_toolchain_names": false + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "cargo_bazel_bootstrap" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "bazel_features+", + "bazel_features_globals", + "bazel_features++version_extension+bazel_features_globals" + ], + [ + "bazel_features+", + "bazel_features_version", + "bazel_features++version_extension+bazel_features_version" + ], + [ + "rules_cc+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_cc+", + "cc_compatibility_proxy", + "rules_cc++compatibility_proxy+cc_compatibility_proxy" + ], + [ + "rules_cc+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_cc++compatibility_proxy+cc_compatibility_proxy", + "rules_cc", + "rules_cc+" + ], + [ + "rules_rust+", + "bazel_features", + "bazel_features+" + ], + [ + "rules_rust+", + "bazel_skylib", + "bazel_skylib+" + ], + [ + "rules_rust+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_rust+", + "cui", + "rules_rust++cu+cui" + ], + [ + "rules_rust+", + "rrc", + "rules_rust++i2+rrc" + ], + [ + "rules_rust+", + "rules_cc", + "rules_cc+" + ], + [ + "rules_rust+", + "rules_rust", + "rules_rust+" + ] + ] + } + }, + "@@rules_swift+//swift:extensions.bzl%non_module_deps": { + "general": { + "bzlTransitiveDigest": "WQxCEBSXJEaQYe860JXZvAQug2B6+/VbBtRIDMF0pOc=", + "usagesDigest": "mhACFnrdMv9Wi0Mt67bxocJqviRkDSV+Ee5Mqdj5akA=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "com_github_apple_swift_protobuf": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-protobuf/archive/1.20.2.tar.gz" + ], + "sha256": "3fb50bd4d293337f202d917b6ada22f9548a0a0aed9d9a4d791e6fbd8a246ebb", + "strip_prefix": "swift-protobuf-1.20.2/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_protobuf/BUILD.overlay" + } + }, + "com_github_grpc_grpc_swift": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/grpc/grpc-swift/archive/1.16.0.tar.gz" + ], + "sha256": "58b60431d0064969f9679411264b82e40a217ae6bd34e17096d92cc4e47556a5", + "strip_prefix": "grpc-swift-1.16.0/", + "build_file": "@@rules_swift+//third_party:com_github_grpc_grpc_swift/BUILD.overlay" + } + }, + "com_github_apple_swift_docc_symbolkit": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-docc-symbolkit/archive/refs/tags/swift-5.10-RELEASE.tar.gz" + ], + "sha256": "de1d4b6940468ddb53b89df7aa1a81323b9712775b0e33e8254fa0f6f7469a97", + "strip_prefix": "swift-docc-symbolkit-swift-5.10-RELEASE", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_docc_symbolkit/BUILD.overlay" + } + }, + "com_github_apple_swift_nio": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-nio/archive/2.42.0.tar.gz" + ], + "sha256": "e3304bc3fb53aea74a3e54bd005ede11f6dc357117d9b1db642d03aea87194a0", + "strip_prefix": "swift-nio-2.42.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_nio/BUILD.overlay" + } + }, + "com_github_apple_swift_nio_http2": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-nio-http2/archive/1.26.0.tar.gz" + ], + "sha256": "f0edfc9d6a7be1d587e5b403f2d04264bdfae59aac1d74f7d974a9022c6d2b25", + "strip_prefix": "swift-nio-http2-1.26.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_nio_http2/BUILD.overlay" + } + }, + "com_github_apple_swift_nio_transport_services": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-nio-transport-services/archive/1.15.0.tar.gz" + ], + "sha256": "f3498dafa633751a52b9b7f741f7ac30c42bcbeb3b9edca6d447e0da8e693262", + "strip_prefix": "swift-nio-transport-services-1.15.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_nio_transport_services/BUILD.overlay" + } + }, + "com_github_apple_swift_nio_extras": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-nio-extras/archive/1.4.0.tar.gz" + ], + "sha256": "4684b52951d9d9937bb3e8ccd6b5daedd777021ef2519ea2f18c4c922843b52b", + "strip_prefix": "swift-nio-extras-1.4.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_nio_extras/BUILD.overlay" + } + }, + "com_github_apple_swift_log": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-log/archive/1.4.4.tar.gz" + ], + "sha256": "48fe66426c784c0c20031f15dc17faf9f4c9037c192bfac2f643f65cb2321ba0", + "strip_prefix": "swift-log-1.4.4/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_log/BUILD.overlay" + } + }, + "com_github_apple_swift_nio_ssl": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-nio-ssl/archive/2.23.0.tar.gz" + ], + "sha256": "4787c63f61dd04d99e498adc3d1a628193387e41efddf8de19b8db04544d016d", + "strip_prefix": "swift-nio-ssl-2.23.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_nio_ssl/BUILD.overlay" + } + }, + "com_github_apple_swift_collections": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-collections/archive/1.0.4.tar.gz" + ], + "sha256": "d9e4c8a91c60fb9c92a04caccbb10ded42f4cb47b26a212bc6b39cc390a4b096", + "strip_prefix": "swift-collections-1.0.4/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_collections/BUILD.overlay" + } + }, + "com_github_apple_swift_atomics": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/apple/swift-atomics/archive/1.1.0.tar.gz" + ], + "sha256": "1bee7f469f7e8dc49f11cfa4da07182fbc79eab000ec2c17bfdce468c5d276fb", + "strip_prefix": "swift-atomics-1.1.0/", + "build_file": "@@rules_swift+//third_party:com_github_apple_swift_atomics/BUILD.overlay" + } + }, + "build_bazel_rules_swift_index_import": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "build_file": "@@rules_swift+//third_party:build_bazel_rules_swift_index_import/BUILD.overlay", + "canonical_id": "index-import-5.8", + "urls": [ + "https://github.com/MobileNativeFoundation/index-import/releases/download/5.8.0.1/index-import.tar.gz" + ], + "sha256": "28c1ffa39d99e74ed70623899b207b41f79214c498c603915aef55972a851a15" + } + }, + "build_bazel_rules_swift_local_config": { + "repoRuleId": "@@rules_swift+//swift/internal:swift_autoconfiguration.bzl%swift_autoconfiguration", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_swift+", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_swift+", + "build_bazel_rules_swift", + "rules_swift+" + ] + ] + } + }, + "@@v8+//:bazel/extension.bzl%v8_non_bazel_deps": { + "general": { + "bzlTransitiveDigest": "2O4guGcjNSQMqY+j8rAo0CLe1U3CnV8F7ROxWxqLjgE=", + "usagesDigest": "+fx/lzMcegPqqSrtL6Q20csL5cN9Pu8oqS1ee+VgwQg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "dragonbox": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "urls": [ + "https://github.com/jk-jeon/dragonbox/archive/6c7c925b571d54486b9ffae8d9d18a822801cbda.zip" + ], + "strip_prefix": "dragonbox-6c7c925b571d54486b9ffae8d9d18a822801cbda", + "sha256": "2f10448d665355b41f599e869ac78803f82f13b070ce7ef5ae7b5cceb8a178f3", + "build_file": "@@v8+//:bazel/dragonbox.BUILD" + } + }, + "simdutf": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "sha256": "512374f8291d3daf102ccd0ad223b1a8318358f7c1295efd4d9a3abbb8e4b6ff", + "urls": [ + "https://github.com/simdutf/simdutf/releases/download/v7.3.0/singleheader.zip" + ], + "build_file": "@@v8+//:bazel/simdutf.BUILD" + } + }, + "intel_ittapi": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "strip_prefix": "ittapi-a3911fff01a775023a06af8754f9ec1e5977dd97", + "sha256": "1d0dddfc5abb786f2340565c82c6edd1cff10c917616a18ce62ee0b94dbc2ed4", + "urls": [ + "https://github.com/intel/ittapi/archive/a3911fff01a775023a06af8754f9ec1e5977dd97.tar.gz" + ], + "build_file": "@@v8+//:bazel/intel_ittapi.BUILD" + } + } + }, + "moduleExtensionMetadata": { + "explicitRootModuleDirectDeps": [ + "dragonbox", + "simdutf", + "intel_ittapi" + ], + "explicitRootModuleDirectDevDeps": [], + "useAllRepos": "NO", + "reproducible": false + }, + "recordedRepoMappingEntries": [ + [ + "v8+", + "bazel_tools", + "bazel_tools" + ] + ] + } + } + }, + "facts": {} +} diff --git a/bazel/cargo/wasmsign/BUILD.bazel b/bazel/cargo/wasmsign/BUILD.bazel index ceb559374..2e2112d27 100644 --- a/bazel/cargo/wasmsign/BUILD.bazel +++ b/bazel/cargo/wasmsign/BUILD.bazel @@ -30,7 +30,7 @@ crates_vendor( generate_target_compatible_with = False, manifests = [":Cargo.toml"], mode = "remote", - repository_name = "cu", # shorten generated paths for Windows... + repository_name = "ws", # shorten generated paths for Windows... tags = ["manual"], vendor_path = "remote", ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.adler2-2.0.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.adler2-2.0.1.bazel index 080a11413..953ee0248 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.adler2-2.0.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.adler2-2.0.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.aho-corasick-1.1.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.aho-corasick-1.1.4.bazel index 1d51cd92b..7aba60c76 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.aho-corasick-1.1.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.aho-corasick-1.1.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -55,6 +55,6 @@ rust_library( ], version = "1.1.4", deps = [ - "@cu__memchr-2.7.6//:memchr", + "@ws__memchr-2.7.6//:memchr", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.anyhow-1.0.100.bazel b/bazel/cargo/wasmsign/remote/BUILD.anyhow-1.0.100.bazel index c05362d64..c336fa88a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.anyhow-1.0.100.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.anyhow-1.0.100.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -59,7 +59,7 @@ rust_library( ], version = "1.0.100", deps = [ - "@cu__anyhow-1.0.100//:build_script_build", + "@ws__anyhow-1.0.100//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.autocfg-1.5.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.autocfg-1.5.0.bazel index db5cce0fd..bba7e8693 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.autocfg-1.5.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.autocfg-1.5.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.base64-0.22.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.base64-0.22.1.bazel index e878fb889..ae5f4d368 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.base64-0.22.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.base64-0.22.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.base64-0.9.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.base64-0.9.3.bazel index b9f2bcd40..a2d9683c5 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.base64-0.9.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.base64-0.9.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,7 +51,7 @@ rust_library( ], version = "0.9.3", deps = [ - "@cu__byteorder-1.5.0//:byteorder", - "@cu__safemem-0.3.3//:safemem", + "@ws__byteorder-1.5.0//:byteorder", + "@ws__safemem-0.3.3//:safemem", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.bazel b/bazel/cargo/wasmsign/remote/BUILD.bazel index c376a5f39..14e57cf64 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### package(default_visibility = ["//visibility:public"]) @@ -33,25 +33,25 @@ filegroup( # Workspace Member Dependencies alias( name = "wasmsign2-cli-0.2.6", - actual = "@cu__wasmsign2-cli-0.2.6//:wasmsign2_cli", + actual = "@ws__wasmsign2-cli-0.2.6//:wasmsign2_cli", tags = ["manual"], ) alias( name = "wasmsign2-cli", - actual = "@cu__wasmsign2-cli-0.2.6//:wasmsign2_cli", + actual = "@ws__wasmsign2-cli-0.2.6//:wasmsign2_cli", tags = ["manual"], ) # Binaries alias( name = "clap__stdio-fixture", - actual = "@cu__clap-3.2.25//:stdio-fixture__bin", + actual = "@ws__clap-3.2.25//:stdio-fixture__bin", tags = ["manual"], ) alias( name = "wasmsign2-cli__wasmsign2", - actual = "@cu__wasmsign2-cli-0.2.6//:wasmsign2__bin", + actual = "@ws__wasmsign2-cli-0.2.6//:wasmsign2__bin", tags = ["manual"], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.bitflags-1.3.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.bitflags-1.3.2.bazel index a48080c9f..d05b79768 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.bitflags-1.3.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.bitflags-1.3.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.bitflags-2.10.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.bitflags-2.10.0.bazel index 27e1e4c1f..97fbc2139 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.bitflags-2.10.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.bitflags-2.10.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.bumpalo-3.19.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.bumpalo-3.19.1.bazel index c9a0c561d..1cf5d5ad4 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.bumpalo-3.19.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.bumpalo-3.19.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.byteorder-1.5.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.byteorder-1.5.0.bazel index c1a575e37..4cda53086 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.byteorder-1.5.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.byteorder-1.5.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.cc-1.2.50.bazel b/bazel/cargo/wasmsign/remote/BUILD.cc-1.2.50.bazel index db9ffc88d..7206f141a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.cc-1.2.50.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.cc-1.2.50.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,7 +51,7 @@ rust_library( ], version = "1.2.50", deps = [ - "@cu__find-msvc-tools-0.1.5//:find_msvc_tools", - "@cu__shlex-1.3.0//:shlex", + "@ws__find-msvc-tools-0.1.5//:find_msvc_tools", + "@ws__shlex-1.3.0//:shlex", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.cfg-if-1.0.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.cfg-if-1.0.0.bazel index 7fdabe564..2da3a2847 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.cfg-if-1.0.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.cfg-if-1.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.clap-3.2.25.bazel b/bazel/cargo/wasmsign/remote/BUILD.clap-3.2.25.bazel index c03bd2f0f..d0f19bd92 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.clap-3.2.25.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.clap-3.2.25.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -62,12 +62,12 @@ rust_library( ], version = "3.2.25", deps = [ - "@cu__bitflags-1.3.2//:bitflags", - "@cu__clap_lex-0.2.4//:clap_lex", - "@cu__indexmap-1.9.3//:indexmap", - "@cu__once_cell-1.21.3//:once_cell", - "@cu__terminal_size-0.2.6//:terminal_size", - "@cu__textwrap-0.16.2//:textwrap", + "@ws__bitflags-1.3.2//:bitflags", + "@ws__clap_lex-0.2.4//:clap_lex", + "@ws__indexmap-1.9.3//:indexmap", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__terminal_size-0.2.6//:terminal_size", + "@ws__textwrap-0.16.2//:textwrap", ], ) @@ -114,11 +114,11 @@ rust_binary( version = "3.2.25", deps = [ ":clap", - "@cu__bitflags-1.3.2//:bitflags", - "@cu__clap_lex-0.2.4//:clap_lex", - "@cu__indexmap-1.9.3//:indexmap", - "@cu__once_cell-1.21.3//:once_cell", - "@cu__terminal_size-0.2.6//:terminal_size", - "@cu__textwrap-0.16.2//:textwrap", + "@ws__bitflags-1.3.2//:bitflags", + "@ws__clap_lex-0.2.4//:clap_lex", + "@ws__indexmap-1.9.3//:indexmap", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__terminal_size-0.2.6//:terminal_size", + "@ws__textwrap-0.16.2//:textwrap", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.clap_lex-0.2.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.clap_lex-0.2.4.bazel index 4491ef50f..4e6b03024 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.clap_lex-0.2.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.clap_lex-0.2.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,6 +51,6 @@ rust_library( ], version = "0.2.4", deps = [ - "@cu__os_str_bytes-6.6.1//:os_str_bytes", + "@ws__os_str_bytes-6.6.1//:os_str_bytes", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.crc32fast-1.5.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.crc32fast-1.5.0.bazel index bad02c655..cfaaccbd2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.crc32fast-1.5.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.crc32fast-1.5.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -59,8 +59,8 @@ rust_library( ], version = "1.5.0", deps = [ - "@cu__cfg-if-1.0.0//:cfg_if", - "@cu__crc32fast-1.5.0//:build_script_build", + "@ws__cfg-if-1.0.0//:cfg_if", + "@ws__crc32fast-1.5.0//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.ct-codecs-1.1.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.ct-codecs-1.1.6.bazel index 2498309da..5a1262303 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.ct-codecs-1.1.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.ct-codecs-1.1.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.displaydoc-0.2.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.displaydoc-0.2.5.bazel index d3e02c844..380c4fba5 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.displaydoc-0.2.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.displaydoc-0.2.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,8 +51,8 @@ rust_proc_macro( ], version = "0.2.5", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.ed25519-compact-2.2.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.ed25519-compact-2.2.0.bazel index 8349116f0..d541b97d1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.ed25519-compact-2.2.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.ed25519-compact-2.2.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -60,7 +60,7 @@ rust_library( ], version = "2.2.0", deps = [ - "@cu__ct-codecs-1.1.6//:ct_codecs", - "@cu__getrandom-0.3.4//:getrandom", + "@ws__ct-codecs-1.1.6//:ct_codecs", + "@ws__getrandom-0.3.4//:getrandom", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.env_filter-0.1.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.env_filter-0.1.4.bazel index ef12d4912..d7aa634f0 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.env_filter-0.1.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.env_filter-0.1.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,6 +51,6 @@ rust_library( ], version = "0.1.4", deps = [ - "@cu__log-0.4.29//:log", + "@ws__log-0.4.29//:log", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.env_logger-0.11.8.bazel b/bazel/cargo/wasmsign/remote/BUILD.env_logger-0.11.8.bazel index 605e9ff60..5a98627f8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.env_logger-0.11.8.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.env_logger-0.11.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,8 +54,8 @@ rust_library( ], version = "0.11.8", deps = [ - "@cu__env_filter-0.1.4//:env_filter", - "@cu__jiff-0.2.16//:jiff", - "@cu__log-0.4.29//:log", + "@ws__env_filter-0.1.4//:env_filter", + "@ws__jiff-0.2.16//:jiff", + "@ws__log-0.4.29//:log", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.errno-0.3.14.bazel b/bazel/cargo/wasmsign/remote/BUILD.errno-0.3.14.bazel index 4c31f0452..df1bfe181 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.errno-0.3.14.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.errno-0.3.14.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -109,100 +109,100 @@ rust_library( version = "0.3.14", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@cu__libc-0.2.178//:libc", # cfg(target_os = "wasi") + "@ws__libc-0.2.178//:libc", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:wasm32-wasip1-threads": [ - "@cu__libc-0.2.178//:libc", # cfg(target_os = "wasi") + "@ws__libc-0.2.178//:libc", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__libc-0.2.178//:libc", # cfg(target_os = "wasi") + "@ws__libc-0.2.178//:libc", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.find-msvc-tools-0.1.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.find-msvc-tools-0.1.5.bazel index 2c03f4224..da5430ab4 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.find-msvc-tools-0.1.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.find-msvc-tools-0.1.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.flate2-1.1.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.flate2-1.1.5.bazel index 84245b454..da01178c0 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.flate2-1.1.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.flate2-1.1.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -57,7 +57,7 @@ rust_library( ], version = "1.1.5", deps = [ - "@cu__crc32fast-1.5.0//:crc32fast", - "@cu__miniz_oxide-0.8.9//:miniz_oxide", + "@ws__crc32fast-1.5.0//:crc32fast", + "@ws__miniz_oxide-0.8.9//:miniz_oxide", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.form_urlencoded-1.2.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.form_urlencoded-1.2.2.bazel index 9131751fa..5ed469521 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.form_urlencoded-1.2.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.form_urlencoded-1.2.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -55,6 +55,6 @@ rust_library( ], version = "1.2.2", deps = [ - "@cu__percent-encoding-2.3.2//:percent_encoding", + "@ws__percent-encoding-2.3.2//:percent_encoding", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.2.15.bazel b/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.2.15.bazel index 386fa449c..115fdc0d0 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.2.15.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.2.15.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,98 +56,98 @@ rust_library( ], version = "0.2.15", deps = [ - "@cu__cfg-if-1.0.0//:cfg_if", + "@ws__cfg-if-1.0.0//:cfg_if", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@cu__js-sys-0.3.83//:js_sys", # wasm32-unknown-unknown - "@cu__wasm-bindgen-0.2.106//:wasm_bindgen", # wasm32-unknown-unknown + "@ws__js-sys-0.3.83//:js_sys", # wasm32-unknown-unknown + "@ws__wasm-bindgen-0.2.106//:wasm_bindgen", # wasm32-unknown-unknown ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@cu__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") + "@ws__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:wasm32-wasip1-threads": [ - "@cu__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") + "@ws__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") + "@ws__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(unix) + "@ws__libc-0.2.178//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.3.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.3.4.bazel index 612098f53..c288ece12 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.3.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.getrandom-0.3.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -61,86 +61,86 @@ rust_library( ], version = "0.3.4", deps = [ - "@cu__cfg-if-1.0.0//:cfg_if", - "@cu__getrandom-0.3.4//:build_script_build", + "@ws__cfg-if-1.0.0//:cfg_if", + "@ws__getrandom-0.3.4//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix")) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm"))) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm"))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@cu__wasm-bindgen-0.2.106//:wasm_bindgen", # wasm32-unknown-unknown + "@ws__wasm-bindgen-0.2.106//:wasm_bindgen", # wasm32-unknown-unknown ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__wasip2-1.0.1-wasi-0.2.4//:wasip2", # cfg(all(target_arch = "wasm32", target_os = "wasi", target_env = "p2")) + "@ws__wasip2-1.0.1-wasi-0.2.4//:wasip2", # cfg(all(target_arch = "wasm32", target_os = "wasi", target_env = "p2")) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__libc-0.2.178//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm"))) + "@ws__libc-0.2.178//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm"))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.hashbrown-0.12.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.hashbrown-0.12.3.bazel index 3b8b80304..fca16f4c4 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.hashbrown-0.12.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.hashbrown-0.12.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.hermit-abi-0.3.9.bazel b/bazel/cargo/wasmsign/remote/BUILD.hermit-abi-0.3.9.bazel index 2ff5d556e..e3410b846 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.hermit-abi-0.3.9.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.hermit-abi-0.3.9.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.hmac-sha256-1.1.12.bazel b/bazel/cargo/wasmsign/remote/BUILD.hmac-sha256-1.1.12.bazel index eaefce493..a65f290a6 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.hmac-sha256-1.1.12.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.hmac-sha256-1.1.12.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_collections-2.1.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_collections-2.1.1.bazel index bcc45c178..2870e7686 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_collections-2.1.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_collections-2.1.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -37,7 +37,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__displaydoc-0.2.5//:displaydoc", + "@ws__displaydoc-0.2.5//:displaydoc", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -54,9 +54,9 @@ rust_library( ], version = "2.1.1", deps = [ - "@cu__potential_utf-0.1.4//:potential_utf", - "@cu__yoke-0.8.1//:yoke", - "@cu__zerofrom-0.1.6//:zerofrom", - "@cu__zerovec-0.11.5//:zerovec", + "@ws__potential_utf-0.1.4//:potential_utf", + "@ws__yoke-0.8.1//:yoke", + "@ws__zerofrom-0.1.6//:zerofrom", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_locale_core-2.1.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_locale_core-2.1.1.bazel index 83c0dfd45..6f212e0be 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_locale_core-2.1.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_locale_core-2.1.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -40,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__displaydoc-0.2.5//:displaydoc", + "@ws__displaydoc-0.2.5//:displaydoc", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -57,9 +57,9 @@ rust_library( ], version = "2.1.1", deps = [ - "@cu__litemap-0.8.1//:litemap", - "@cu__tinystr-0.8.2//:tinystr", - "@cu__writeable-0.6.2//:writeable", - "@cu__zerovec-0.11.5//:zerovec", + "@ws__litemap-0.8.1//:litemap", + "@ws__tinystr-0.8.2//:tinystr", + "@ws__writeable-0.6.2//:writeable", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer-2.1.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer-2.1.1.bazel index 795b30202..9609c94a0 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer-2.1.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer-2.1.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,10 +54,10 @@ rust_library( ], version = "2.1.1", deps = [ - "@cu__icu_collections-2.1.1//:icu_collections", - "@cu__icu_normalizer_data-2.1.1//:icu_normalizer_data", - "@cu__icu_provider-2.1.1//:icu_provider", - "@cu__smallvec-1.15.1//:smallvec", - "@cu__zerovec-0.11.5//:zerovec", + "@ws__icu_collections-2.1.1//:icu_collections", + "@ws__icu_normalizer_data-2.1.1//:icu_normalizer_data", + "@ws__icu_provider-2.1.1//:icu_provider", + "@ws__smallvec-1.15.1//:smallvec", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer_data-2.1.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer_data-2.1.1.bazel index 0c06ff4ce..beaa59b34 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer_data-2.1.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_normalizer_data-2.1.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "2.1.1", deps = [ - "@cu__icu_normalizer_data-2.1.1//:build_script_build", + "@ws__icu_normalizer_data-2.1.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_properties-2.1.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_properties-2.1.2.bazel index d7a99fe83..04e9ddb63 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_properties-2.1.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_properties-2.1.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,11 +54,11 @@ rust_library( ], version = "2.1.2", deps = [ - "@cu__icu_collections-2.1.1//:icu_collections", - "@cu__icu_locale_core-2.1.1//:icu_locale_core", - "@cu__icu_properties_data-2.1.2//:icu_properties_data", - "@cu__icu_provider-2.1.1//:icu_provider", - "@cu__zerotrie-0.2.3//:zerotrie", - "@cu__zerovec-0.11.5//:zerovec", + "@ws__icu_collections-2.1.1//:icu_collections", + "@ws__icu_locale_core-2.1.1//:icu_locale_core", + "@ws__icu_properties_data-2.1.2//:icu_properties_data", + "@ws__icu_provider-2.1.1//:icu_provider", + "@ws__zerotrie-0.2.3//:zerotrie", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_properties_data-2.1.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_properties_data-2.1.2.bazel index 3b655cb2c..348ed0b63 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_properties_data-2.1.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_properties_data-2.1.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "2.1.2", deps = [ - "@cu__icu_properties_data-2.1.2//:build_script_build", + "@ws__icu_properties_data-2.1.2//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.icu_provider-2.1.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.icu_provider-2.1.1.bazel index 64782af68..9b56cc92b 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.icu_provider-2.1.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.icu_provider-2.1.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -40,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__displaydoc-0.2.5//:displaydoc", + "@ws__displaydoc-0.2.5//:displaydoc", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -57,11 +57,11 @@ rust_library( ], version = "2.1.1", deps = [ - "@cu__icu_locale_core-2.1.1//:icu_locale_core", - "@cu__writeable-0.6.2//:writeable", - "@cu__yoke-0.8.1//:yoke", - "@cu__zerofrom-0.1.6//:zerofrom", - "@cu__zerotrie-0.2.3//:zerotrie", - "@cu__zerovec-0.11.5//:zerovec", + "@ws__icu_locale_core-2.1.1//:icu_locale_core", + "@ws__writeable-0.6.2//:writeable", + "@ws__yoke-0.8.1//:yoke", + "@ws__zerofrom-0.1.6//:zerofrom", + "@ws__zerotrie-0.2.3//:zerotrie", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.idna-1.1.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.idna-1.1.0.bazel index 0c783aa93..6f8bf683e 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.idna-1.1.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.idna-1.1.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,8 +56,8 @@ rust_library( ], version = "1.1.0", deps = [ - "@cu__idna_adapter-1.2.1//:idna_adapter", - "@cu__smallvec-1.15.1//:smallvec", - "@cu__utf8_iter-1.0.4//:utf8_iter", + "@ws__idna_adapter-1.2.1//:idna_adapter", + "@ws__smallvec-1.15.1//:smallvec", + "@ws__utf8_iter-1.0.4//:utf8_iter", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.idna_adapter-1.2.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.idna_adapter-1.2.1.bazel index 0824a4589..c2110a22c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.idna_adapter-1.2.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.idna_adapter-1.2.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,7 +54,7 @@ rust_library( ], version = "1.2.1", deps = [ - "@cu__icu_normalizer-2.1.1//:icu_normalizer", - "@cu__icu_properties-2.1.2//:icu_properties", + "@ws__icu_normalizer-2.1.1//:icu_normalizer", + "@ws__icu_properties-2.1.2//:icu_properties", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.indexmap-1.9.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.indexmap-1.9.3.bazel index ca4d8623d..44248646a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.indexmap-1.9.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.indexmap-1.9.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -58,8 +58,8 @@ rust_library( ], version = "1.9.3", deps = [ - "@cu__hashbrown-0.12.3//:hashbrown", - "@cu__indexmap-1.9.3//:build_script_build", + "@ws__hashbrown-0.12.3//:hashbrown", + "@ws__indexmap-1.9.3//:build_script_build", ], ) @@ -117,7 +117,7 @@ cargo_build_script( version = "1.9.3", visibility = ["//visibility:private"], deps = [ - "@cu__autocfg-1.5.0//:autocfg", + "@ws__autocfg-1.5.0//:autocfg", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.io-lifetimes-1.0.11.bazel b/bazel/cargo/wasmsign/remote/BUILD.io-lifetimes-1.0.11.bazel index 840e93952..5bbd731d9 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.io-lifetimes-1.0.11.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.io-lifetimes-1.0.11.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -61,8 +61,8 @@ rust_library( ], version = "1.0.11", deps = [ - "@cu__io-lifetimes-1.0.11//:build_script_build", - "@cu__libc-0.2.178//:libc", + "@ws__io-lifetimes-1.0.11//:build_script_build", + "@ws__libc-0.2.178//:libc", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.jiff-0.2.16.bazel b/bazel/cargo/wasmsign/remote/BUILD.jiff-0.2.16.bazel index 19caf7fc5..3ae6ac81d 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.jiff-0.2.16.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.jiff-0.2.16.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,8 +56,8 @@ rust_library( version = "0.2.16", deps = select({ "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@cu__portable-atomic-1.12.0//:portable_atomic", # cfg(not(target_has_atomic = "ptr")) - "@cu__portable-atomic-util-0.2.4//:portable_atomic_util", # cfg(not(target_has_atomic = "ptr")) + "@ws__portable-atomic-1.12.0//:portable_atomic", # cfg(not(target_has_atomic = "ptr")) + "@ws__portable-atomic-util-0.2.4//:portable_atomic_util", # cfg(not(target_has_atomic = "ptr")) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.jiff-static-0.2.16.bazel b/bazel/cargo/wasmsign/remote/BUILD.jiff-static-0.2.16.bazel index adb28cbb3..4f4b3aec2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.jiff-static-0.2.16.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.jiff-static-0.2.16.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,8 +51,8 @@ rust_proc_macro( ], version = "0.2.16", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.js-sys-0.3.83.bazel b/bazel/cargo/wasmsign/remote/BUILD.js-sys-0.3.83.bazel index 6ae8f69f1..4d01d8140 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.js-sys-0.3.83.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.js-sys-0.3.83.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -55,7 +55,7 @@ rust_library( ], version = "0.3.83", deps = [ - "@cu__once_cell-1.21.3//:once_cell", - "@cu__wasm-bindgen-0.2.106//:wasm_bindgen", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__wasm-bindgen-0.2.106//:wasm_bindgen", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.libc-0.2.178.bazel b/bazel/cargo/wasmsign/remote/BUILD.libc-0.2.178.bazel index 983e06d07..88164ea2c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.libc-0.2.178.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.libc-0.2.178.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -60,7 +60,7 @@ rust_library( ], version = "0.2.178", deps = [ - "@cu__libc-0.2.178//:build_script_build", + "@ws__libc-0.2.178//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.11.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.11.0.bazel index 6502037d0..f5eedfd78 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.11.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.11.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.3.8.bazel b/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.3.8.bazel index 28e67a94d..82e129cec 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.3.8.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.linux-raw-sys-0.3.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.litemap-0.8.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.litemap-0.8.1.bazel index 79998674d..31db1b16d 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.litemap-0.8.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.litemap-0.8.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.log-0.4.29.bazel b/bazel/cargo/wasmsign/remote/BUILD.log-0.4.29.bazel index 77bcec738..8f1d96c2d 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.log-0.4.29.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.log-0.4.29.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.memchr-2.7.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.memchr-2.7.6.bazel index 332ac6dfe..223daa113 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.memchr-2.7.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.memchr-2.7.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.miniz_oxide-0.8.9.bazel b/bazel/cargo/wasmsign/remote/BUILD.miniz_oxide-0.8.9.bazel index 97a7228f0..2aab14865 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.miniz_oxide-0.8.9.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.miniz_oxide-0.8.9.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,7 +56,7 @@ rust_library( ], version = "0.8.9", deps = [ - "@cu__adler2-2.0.1//:adler2", - "@cu__simd-adler32-0.3.8//:simd_adler32", + "@ws__adler2-2.0.1//:adler2", + "@ws__simd-adler32-0.3.8//:simd_adler32", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.once_cell-1.21.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.once_cell-1.21.3.bazel index c1f20350f..f1e573449 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.once_cell-1.21.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.once_cell-1.21.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.os_str_bytes-6.6.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.os_str_bytes-6.6.1.bazel index f44832628..71ab1b2b1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.os_str_bytes-6.6.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.os_str_bytes-6.6.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.percent-encoding-2.3.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.percent-encoding-2.3.2.bazel index 62c81a3c2..665bf21d8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.percent-encoding-2.3.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.percent-encoding-2.3.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-1.12.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-1.12.0.bazel index 2f9bc872f..83e3511ed 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-1.12.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-1.12.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -58,7 +58,7 @@ rust_library( ], version = "1.12.0", deps = [ - "@cu__portable-atomic-1.12.0//:build_script_build", + "@ws__portable-atomic-1.12.0//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-util-0.2.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-util-0.2.4.bazel index b886af4f1..4b7960794 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-util-0.2.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.portable-atomic-util-0.2.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -58,8 +58,8 @@ rust_library( ], version = "0.2.4", deps = [ - "@cu__portable-atomic-1.12.0//:portable_atomic", - "@cu__portable-atomic-util-0.2.4//:build_script_build", + "@ws__portable-atomic-1.12.0//:portable_atomic", + "@ws__portable-atomic-util-0.2.4//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.potential_utf-0.1.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.potential_utf-0.1.4.bazel index a96f7801f..15a2bbf0f 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.potential_utf-0.1.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.potential_utf-0.1.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,6 +54,6 @@ rust_library( ], version = "0.1.4", deps = [ - "@cu__zerovec-0.11.5//:zerovec", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.proc-macro2-1.0.103.bazel b/bazel/cargo/wasmsign/remote/BUILD.proc-macro2-1.0.103.bazel index 2d2bcef0a..dc152aebd 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.proc-macro2-1.0.103.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.proc-macro2-1.0.103.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -59,8 +59,8 @@ rust_library( ], version = "1.0.103", deps = [ - "@cu__proc-macro2-1.0.103//:build_script_build", - "@cu__unicode-ident-1.0.12//:unicode_ident", + "@ws__proc-macro2-1.0.103//:build_script_build", + "@ws__unicode-ident-1.0.12//:unicode_ident", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.quick-error-1.2.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.quick-error-1.2.3.bazel index b3ecb8730..044a8e94d 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.quick-error-1.2.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.quick-error-1.2.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.quote-1.0.42.bazel b/bazel/cargo/wasmsign/remote/BUILD.quote-1.0.42.bazel index 4d521e328..014db0fac 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.quote-1.0.42.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.quote-1.0.42.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -59,8 +59,8 @@ rust_library( ], version = "1.0.42", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:build_script_build", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.r-efi-5.3.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.r-efi-5.3.0.bazel index 7629e1959..4dd42bd64 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.r-efi-5.3.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.r-efi-5.3.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.regex-1.12.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.regex-1.12.2.bazel index f68426c74..3cd0d6104 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.regex-1.12.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.regex-1.12.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -70,9 +70,9 @@ rust_library( ], version = "1.12.2", deps = [ - "@cu__aho-corasick-1.1.4//:aho_corasick", - "@cu__memchr-2.7.6//:memchr", - "@cu__regex-automata-0.4.13//:regex_automata", - "@cu__regex-syntax-0.8.8//:regex_syntax", + "@ws__aho-corasick-1.1.4//:aho_corasick", + "@ws__memchr-2.7.6//:memchr", + "@ws__regex-automata-0.4.13//:regex_automata", + "@ws__regex-syntax-0.8.8//:regex_syntax", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.regex-automata-0.4.13.bazel b/bazel/cargo/wasmsign/remote/BUILD.regex-automata-0.4.13.bazel index 72f016c86..401f2fd9a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.regex-automata-0.4.13.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.regex-automata-0.4.13.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -75,8 +75,8 @@ rust_library( ], version = "0.4.13", deps = [ - "@cu__aho-corasick-1.1.4//:aho_corasick", - "@cu__memchr-2.7.6//:memchr", - "@cu__regex-syntax-0.8.8//:regex_syntax", + "@ws__aho-corasick-1.1.4//:aho_corasick", + "@ws__memchr-2.7.6//:memchr", + "@ws__regex-syntax-0.8.8//:regex_syntax", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.regex-syntax-0.8.8.bazel b/bazel/cargo/wasmsign/remote/BUILD.regex-syntax-0.8.8.bazel index 7f66ae237..aa522dd86 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.regex-syntax-0.8.8.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.regex-syntax-0.8.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.ring-0.17.14.bazel b/bazel/cargo/wasmsign/remote/BUILD.ring-0.17.14.bazel index e55cb9949..a23958f06 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.ring-0.17.14.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.ring-0.17.14.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -60,40 +60,40 @@ rust_library( ], version = "0.17.14", deps = [ - "@cu__cfg-if-1.0.0//:cfg_if", - "@cu__getrandom-0.2.15//:getrandom", - "@cu__ring-0.17.14//:build_script_build", - "@cu__untrusted-0.9.0//:untrusted", + "@ws__cfg-if-1.0.0//:cfg_if", + "@ws__getrandom-0.2.15//:getrandom", + "@ws__ring-0.17.14//:build_script_build", + "@ws__untrusted-0.9.0//:untrusted", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) + "@ws__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) + "@ws__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) + "@ws__libc-0.2.178//:libc", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_vendor = "apple", any(target_os = "ios", target_os = "macos", target_os = "tvos", target_os = "visionos", target_os = "watchos"))) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows-sys-0.52.0//:windows_sys", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_os = "windows")) + "@ws__windows-sys-0.52.0//:windows_sys", # cfg(all(all(target_arch = "aarch64", target_endian = "little"), target_os = "windows")) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) + "@ws__libc-0.2.178//:libc", # cfg(all(any(all(target_arch = "aarch64", target_endian = "little"), all(target_arch = "arm", target_endian = "little")), any(target_os = "android", target_os = "linux"))) ], "//conditions:default": [], }), @@ -156,7 +156,7 @@ cargo_build_script( version = "0.17.14", visibility = ["//visibility:private"], deps = [ - "@cu__cc-1.2.50//:cc", + "@ws__cc-1.2.50//:cc", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustix-0.37.28.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustix-0.37.28.bazel index 4cd396849..0a4d6cb01 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustix-0.37.28.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustix-0.37.28.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -28,100 +28,100 @@ rust_library( ), aliases = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios-sim": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:aarch64-unknown-fuchsia": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-unknown-uefi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:armv7-linux-androideabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:i686-unknown-freebsd": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:s390x-unknown-linux-gnu": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:thumbv7em-none-eabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:thumbv8m.main-none-eabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-unknown-emscripten": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-unknown-unknown": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-wasip1": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-wasip1-threads": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-wasip2": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-apple-ios": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:x86_64-unknown-freebsd": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-unknown-fuchsia": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-unknown-none": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-unknown-uefi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "//conditions:default": {}, }), @@ -162,139 +162,139 @@ rust_library( ], version = "0.37.28", deps = [ - "@cu__bitflags-1.3.2//:bitflags", - "@cu__io-lifetimes-1.0.11//:io_lifetimes", - "@cu__libc-0.2.178//:libc", - "@cu__rustix-0.37.28//:build_script_build", + "@ws__bitflags-1.3.2//:bitflags", + "@ws__io-lifetimes-1.0.11//:io_lifetimes", + "@ws__libc-0.2.178//:libc", + "@ws__rustix-0.37.28//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-unknown-uefi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-wasip1-threads": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@ws__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-unknown-uefi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustix-1.1.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustix-1.1.2.bazel index 611398855..cd53548c5 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustix-1.1.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustix-1.1.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -28,100 +28,100 @@ rust_library( ), aliases = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios-sim": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:aarch64-unknown-fuchsia": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": { - "@cu__errno-0.3.14//:errno": "libc_errno", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:aarch64-unknown-uefi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:armv7-linux-androideabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:i686-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin }, "@rules_rust//rust/platform:i686-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android }, "@rules_rust//rust/platform:i686-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:i686-unknown-freebsd": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd }, "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu }, "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:s390x-unknown-linux-gnu": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu }, "@rules_rust//rust/platform:thumbv7em-none-eabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:thumbv8m.main-none-eabi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:wasm32-unknown-emscripten": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten }, "@rules_rust//rust/platform:wasm32-unknown-unknown": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:wasm32-wasip1": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:wasm32-wasip1-threads": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:wasm32-wasip2": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:x86_64-apple-darwin": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin }, "@rules_rust//rust/platform:x86_64-apple-ios": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios }, "@rules_rust//rust/platform:x86_64-linux-android": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android }, "@rules_rust//rust/platform:x86_64-pc-windows-msvc": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(windows) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:x86_64-unknown-freebsd": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd }, "@rules_rust//rust/platform:x86_64-unknown-fuchsia": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia }, "@rules_rust//rust/platform:x86_64-unknown-none": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "@rules_rust//rust/platform:x86_64-unknown-uefi": { - "@cu__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) }, "//conditions:default": {}, }), @@ -160,162 +160,162 @@ rust_library( ], version = "1.1.2", deps = [ - "@cu__bitflags-2.10.0//:bitflags", - "@cu__rustix-1.1.2//:build_script_build", + "@ws__bitflags-2.10.0//:bitflags", + "@ws__rustix-1.1.2//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-apple-darwin, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__errno-0.3.14//:errno", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-apple-ios, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__errno-0.3.14//:errno", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-apple-ios-sim, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__errno-0.3.14//:errno", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-linux-android, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__errno-0.3.14//:errno", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-unknown-fuchsia, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__errno-0.3.14//:errno", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # aarch64-unknown-nto-qnx710, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:aarch64-unknown-uefi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__errno-0.3.14//:errno", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # armv7-linux-androideabi, cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-apple-darwin ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-linux-android ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), i686-unknown-freebsd ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(any(target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), powerpc-unknown-linux-gnu + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(any(target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(any(target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), s390x-unknown-linux-gnu + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(any(target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), wasm32-unknown-emscripten ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:wasm32-wasip1-threads": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-apple-ios ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-linux-android ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__errno-0.3.14//:errno", # cfg(windows) - "@cu__windows-sys-0.61.2//:windows_sys", # cfg(windows) + "@ws__errno-0.3.14//:errno", # cfg(windows) + "@ws__windows-sys-0.61.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))), x86_64-unknown-fuchsia ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) + "@ws__linux-raw-sys-0.11.0//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64")))) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "@rules_rust//rust/platform:x86_64-unknown-uefi": [ - "@cu__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) - "@cu__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__errno-0.3.14//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) + "@ws__libc-0.2.178//:libc", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_endian = "little", any(target_arch = "s390x", target_arch = "powerpc")), any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "riscv64", all(rustix_use_experimental_asm, target_arch = "powerpc"), all(rustix_use_experimental_asm, target_arch = "powerpc64"), all(rustix_use_experimental_asm, target_arch = "s390x"), all(rustix_use_experimental_asm, target_arch = "mips"), all(rustix_use_experimental_asm, target_arch = "mips32r6"), all(rustix_use_experimental_asm, target_arch = "mips64"), all(rustix_use_experimental_asm, target_arch = "mips64r6"), target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"))))))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustls-0.23.35.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustls-0.23.35.bazel index 7781881d6..53cdcb3d8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustls-0.23.35.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustls-0.23.35.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -27,7 +27,7 @@ rust_library( allow_empty = True, ), aliases = { - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", }, compile_data = glob( include = ["**"], @@ -65,14 +65,14 @@ rust_library( ], version = "0.23.35", deps = [ - "@cu__log-0.4.29//:log", - "@cu__once_cell-1.21.3//:once_cell", - "@cu__ring-0.17.14//:ring", - "@cu__rustls-0.23.35//:build_script_build", - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types", - "@cu__rustls-webpki-0.103.8//:webpki", - "@cu__subtle-2.6.1//:subtle", - "@cu__zeroize-1.8.2//:zeroize", + "@ws__log-0.4.29//:log", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__ring-0.17.14//:ring", + "@ws__rustls-0.23.35//:build_script_build", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types", + "@ws__rustls-webpki-0.103.8//:webpki", + "@ws__subtle-2.6.1//:subtle", + "@ws__zeroize-1.8.2//:zeroize", ], ) @@ -118,7 +118,7 @@ cargo_build_script( ), edition = "2021", link_deps = [ - "@cu__ring-0.17.14//:ring", + "@ws__ring-0.17.14//:ring", ], pkg_name = "rustls", rustc_env_files = [ diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustls-pki-types-1.13.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustls-pki-types-1.13.2.bazel index 1959f4ffb..27d211bc7 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustls-pki-types-1.13.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustls-pki-types-1.13.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,6 +56,6 @@ rust_library( ], version = "1.13.2", deps = [ - "@cu__zeroize-1.8.2//:zeroize", + "@ws__zeroize-1.8.2//:zeroize", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustls-webpki-0.103.8.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustls-webpki-0.103.8.bazel index c1902927b..83756a2b1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustls-webpki-0.103.8.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustls-webpki-0.103.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -23,7 +23,7 @@ rust_library( allow_empty = True, ), aliases = { - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", }, compile_data = glob( include = ["**"], @@ -59,8 +59,8 @@ rust_library( ], version = "0.103.8", deps = [ - "@cu__ring-0.17.14//:ring", - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types", - "@cu__untrusted-0.9.0//:untrusted", + "@ws__ring-0.17.14//:ring", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types", + "@ws__untrusted-0.9.0//:untrusted", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.rustversion-1.0.22.bazel b/bazel/cargo/wasmsign/remote/BUILD.rustversion-1.0.22.bazel index 6c4835b72..622723a8e 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.rustversion-1.0.22.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.rustversion-1.0.22.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_proc_macro( ], version = "1.0.22", deps = [ - "@cu__rustversion-1.0.22//:build_script_build", + "@ws__rustversion-1.0.22//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.safemem-0.3.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.safemem-0.3.3.bazel index 7bea63035..7ba1695a8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.safemem-0.3.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.safemem-0.3.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.serde-1.0.228.bazel b/bazel/cargo/wasmsign/remote/BUILD.serde-1.0.228.bazel index 0d3885f5a..93a9990a8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.serde-1.0.228.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.serde-1.0.228.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -46,7 +46,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__serde_derive-1.0.228//:serde_derive", + "@ws__serde_derive-1.0.228//:serde_derive", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -63,8 +63,8 @@ rust_library( ], version = "1.0.228", deps = [ - "@cu__serde-1.0.228//:build_script_build", - "@cu__serde_core-1.0.228//:serde_core", + "@ws__serde-1.0.228//:build_script_build", + "@ws__serde_core-1.0.228//:serde_core", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.serde_core-1.0.228.bazel b/bazel/cargo/wasmsign/remote/BUILD.serde_core-1.0.228.bazel index 82c67d742..eafcc5da4 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.serde_core-1.0.228.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.serde_core-1.0.228.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -59,7 +59,7 @@ rust_library( ], version = "1.0.228", deps = [ - "@cu__serde_core-1.0.228//:build_script_build", + "@ws__serde_core-1.0.228//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.serde_derive-1.0.228.bazel b/bazel/cargo/wasmsign/remote/BUILD.serde_derive-1.0.228.bazel index eff0d5843..cfe28d39c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.serde_derive-1.0.228.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.serde_derive-1.0.228.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,8 +54,8 @@ rust_proc_macro( ], version = "1.0.228", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.shlex-1.3.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.shlex-1.3.0.bazel index 55d502b95..a2f8af6f9 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.shlex-1.3.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.shlex-1.3.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.simd-adler32-0.3.8.bazel b/bazel/cargo/wasmsign/remote/BUILD.simd-adler32-0.3.8.bazel index 998117c78..c3af04827 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.simd-adler32-0.3.8.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.simd-adler32-0.3.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.smallvec-1.15.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.smallvec-1.15.1.bazel index 9db137e6f..33a73d088 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.smallvec-1.15.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.smallvec-1.15.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.ssh-keys-0.1.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.ssh-keys-0.1.4.bazel index 378b2bbd9..5f159c189 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.ssh-keys-0.1.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.ssh-keys-0.1.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,8 +51,8 @@ rust_library( ], version = "0.1.4", deps = [ - "@cu__base64-0.9.3//:base64", - "@cu__byteorder-1.5.0//:byteorder", - "@cu__quick-error-1.2.3//:quick_error", + "@ws__base64-0.9.3//:base64", + "@ws__byteorder-1.5.0//:byteorder", + "@ws__quick-error-1.2.3//:quick_error", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.stable_deref_trait-1.2.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.stable_deref_trait-1.2.1.bazel index 26bb56518..bd6b39ece 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.stable_deref_trait-1.2.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.stable_deref_trait-1.2.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.subtle-2.6.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.subtle-2.6.1.bazel index d3e68e1cd..aadeb8be1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.subtle-2.6.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.subtle-2.6.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.syn-2.0.111.bazel b/bazel/cargo/wasmsign/remote/BUILD.syn-2.0.111.bazel index 2c0010ed5..825ba123d 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.syn-2.0.111.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.syn-2.0.111.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -64,8 +64,8 @@ rust_library( ], version = "2.0.111", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__unicode-ident-1.0.12//:unicode_ident", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__unicode-ident-1.0.12//:unicode_ident", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.synstructure-0.13.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.synstructure-0.13.2.bazel index 94b7b466b..b97f6be87 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.synstructure-0.13.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.synstructure-0.13.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -55,8 +55,8 @@ rust_library( ], version = "0.13.2", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.2.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.2.6.bazel index 42dab55a3..a305ec348 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.2.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.2.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -52,124 +52,124 @@ rust_library( version = "0.2.6", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-uefi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-wasip1-threads": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-wasip2": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-uefi": [ - "@cu__rustix-0.37.28//:rustix", # cfg(not(windows)) + "@ws__rustix-0.37.28//:rustix", # cfg(not(windows)) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.4.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.4.3.bazel index 1e7e96e01..dc701c0cd 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.4.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.terminal_size-0.4.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -52,91 +52,91 @@ rust_library( version = "0.4.3", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows-sys-0.60.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.60.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows-sys-0.60.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.60.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows-sys-0.60.2//:windows_sys", # cfg(windows) + "@ws__windows-sys-0.60.2//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__rustix-1.1.2//:rustix", # cfg(unix) + "@ws__rustix-1.1.2//:rustix", # cfg(unix) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.textwrap-0.16.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.textwrap-0.16.2.bazel index a017c2264..2cf90151f 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.textwrap-0.16.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.textwrap-0.16.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -54,6 +54,6 @@ rust_library( ], version = "0.16.2", deps = [ - "@cu__terminal_size-0.4.3//:terminal_size", + "@ws__terminal_size-0.4.3//:terminal_size", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.thiserror-2.0.17.bazel b/bazel/cargo/wasmsign/remote/BUILD.thiserror-2.0.17.bazel index 2976662fb..f6d1ad8dc 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.thiserror-2.0.17.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.thiserror-2.0.17.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -45,7 +45,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__thiserror-impl-2.0.17//:thiserror_impl", + "@ws__thiserror-impl-2.0.17//:thiserror_impl", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -62,7 +62,7 @@ rust_library( ], version = "2.0.17", deps = [ - "@cu__thiserror-2.0.17//:build_script_build", + "@ws__thiserror-2.0.17//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.thiserror-impl-2.0.17.bazel b/bazel/cargo/wasmsign/remote/BUILD.thiserror-impl-2.0.17.bazel index 590cdc7b5..64fd500f1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.thiserror-impl-2.0.17.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.thiserror-impl-2.0.17.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,8 +51,8 @@ rust_proc_macro( ], version = "2.0.17", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.tinystr-0.8.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.tinystr-0.8.2.bazel index a553ba36b..841b50c4e 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.tinystr-0.8.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.tinystr-0.8.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -40,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__displaydoc-0.2.5//:displaydoc", + "@ws__displaydoc-0.2.5//:displaydoc", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -57,6 +57,6 @@ rust_library( ], version = "0.8.2", deps = [ - "@cu__zerovec-0.11.5//:zerovec", + "@ws__zerovec-0.11.5//:zerovec", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.unicode-ident-1.0.12.bazel b/bazel/cargo/wasmsign/remote/BUILD.unicode-ident-1.0.12.bazel index efa988ffb..0dfb24fb4 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.unicode-ident-1.0.12.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.unicode-ident-1.0.12.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.untrusted-0.9.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.untrusted-0.9.0.bazel index 0089441e0..08e2c61df 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.untrusted-0.9.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.untrusted-0.9.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.ureq-2.12.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.ureq-2.12.1.bazel index fda0b04c1..997f3915c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.ureq-2.12.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.ureq-2.12.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,13 +56,13 @@ rust_library( ], version = "2.12.1", deps = [ - "@cu__base64-0.22.1//:base64", - "@cu__flate2-1.1.5//:flate2", - "@cu__log-0.4.29//:log", - "@cu__once_cell-1.21.3//:once_cell", - "@cu__rustls-0.23.35//:rustls", - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types", - "@cu__url-2.5.7//:url", - "@cu__webpki-roots-0.26.11//:webpki_roots", + "@ws__base64-0.22.1//:base64", + "@ws__flate2-1.1.5//:flate2", + "@ws__log-0.4.29//:log", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__rustls-0.23.35//:rustls", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types", + "@ws__url-2.5.7//:url", + "@ws__webpki-roots-0.26.11//:webpki_roots", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.uri_encode-1.0.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.uri_encode-1.0.4.bazel index 8315512ba..341dc576b 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.uri_encode-1.0.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.uri_encode-1.0.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.url-2.5.7.bazel b/bazel/cargo/wasmsign/remote/BUILD.url-2.5.7.bazel index 6e7a6aab5..c31730420 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.url-2.5.7.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.url-2.5.7.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -56,9 +56,9 @@ rust_library( ], version = "2.5.7", deps = [ - "@cu__form_urlencoded-1.2.2//:form_urlencoded", - "@cu__idna-1.1.0//:idna", - "@cu__percent-encoding-2.3.2//:percent_encoding", - "@cu__serde-1.0.228//:serde", + "@ws__form_urlencoded-1.2.2//:form_urlencoded", + "@ws__idna-1.1.0//:idna", + "@ws__percent-encoding-2.3.2//:percent_encoding", + "@ws__serde-1.0.228//:serde", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.utf8_iter-1.0.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.utf8_iter-1.0.4.bazel index b4b24032d..b09ed679c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.utf8_iter-1.0.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.utf8_iter-1.0.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel index dc316d634..1b97e36a5 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasip2-1.0.1+wasi-0.2.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasip2-1.0.1+wasi-0.2.4.bazel index 18876ce35..0ff81b8f9 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasip2-1.0.1+wasi-0.2.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasip2-1.0.1+wasi-0.2.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,6 +51,6 @@ rust_library( ], version = "1.0.1+wasi-0.2.4", deps = [ - "@cu__wit-bindgen-0.46.0//:wit_bindgen", + "@ws__wit-bindgen-0.46.0//:wit_bindgen", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-0.2.106.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-0.2.106.bazel index 000cd870a..9ac88b6e3 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-0.2.106.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-0.2.106.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -44,7 +44,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__wasm-bindgen-macro-0.2.106//:wasm_bindgen_macro", + "@ws__wasm-bindgen-macro-0.2.106//:wasm_bindgen_macro", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -61,10 +61,10 @@ rust_library( ], version = "0.2.106", deps = [ - "@cu__cfg-if-1.0.0//:cfg_if", - "@cu__once_cell-1.21.3//:once_cell", - "@cu__wasm-bindgen-0.2.106//:build_script_build", - "@cu__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", + "@ws__cfg-if-1.0.0//:cfg_if", + "@ws__once_cell-1.21.3//:once_cell", + "@ws__wasm-bindgen-0.2.106//:build_script_build", + "@ws__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", ], ) @@ -75,7 +75,7 @@ cargo_build_script( allow_empty = True, ), aliases = { - "@cu__rustversion-1.0.22//:rustversion": "rustversion_compat", + "@ws__rustversion-1.0.22//:rustversion": "rustversion_compat", }, compile_data = glob( include = ["**"], @@ -109,11 +109,11 @@ cargo_build_script( ), edition = "2021", link_deps = [ - "@cu__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", + "@ws__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", ], pkg_name = "wasm-bindgen", proc_macro_deps = [ - "@cu__rustversion-1.0.22//:rustversion", + "@ws__rustversion-1.0.22//:rustversion", ], rustc_env_files = [ ":cargo_toml_env_vars", diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-0.2.106.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-0.2.106.bazel index 10dba1825..71494f066 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-0.2.106.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-0.2.106.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,7 +51,7 @@ rust_proc_macro( ], version = "0.2.106", deps = [ - "@cu__quote-1.0.42//:quote", - "@cu__wasm-bindgen-macro-support-0.2.106//:wasm_bindgen_macro_support", + "@ws__quote-1.0.42//:quote", + "@ws__wasm-bindgen-macro-support-0.2.106//:wasm_bindgen_macro_support", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-support-0.2.106.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-support-0.2.106.bazel index 3374e4451..0f0823b31 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-support-0.2.106.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-macro-support-0.2.106.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,10 +51,10 @@ rust_library( ], version = "0.2.106", deps = [ - "@cu__bumpalo-3.19.1//:bumpalo", - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", - "@cu__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", + "@ws__bumpalo-3.19.1//:bumpalo", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", + "@ws__wasm-bindgen-shared-0.2.106//:wasm_bindgen_shared", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-shared-0.2.106.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-shared-0.2.106.bazel index 45442e007..51a484d21 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-shared-0.2.106.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasm-bindgen-shared-0.2.106.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,8 +55,8 @@ rust_library( ], version = "0.2.106", deps = [ - "@cu__unicode-ident-1.0.12//:unicode_ident", - "@cu__wasm-bindgen-shared-0.2.106//:build_script_build", + "@ws__unicode-ident-1.0.12//:unicode_ident", + "@ws__wasm-bindgen-shared-0.2.106//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-0.2.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-0.2.6.bazel index f75eeb03a..feb8b94db 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-0.2.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-0.2.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,14 +51,14 @@ rust_library( ], version = "0.2.6", deps = [ - "@cu__anyhow-1.0.100//:anyhow", - "@cu__ct-codecs-1.1.6//:ct_codecs", - "@cu__ed25519-compact-2.2.0//:ed25519_compact", - "@cu__getrandom-0.2.15//:getrandom", - "@cu__hmac-sha256-1.1.12//:hmac_sha256", - "@cu__log-0.4.29//:log", - "@cu__regex-1.12.2//:regex", - "@cu__ssh-keys-0.1.4//:ssh_keys", - "@cu__thiserror-2.0.17//:thiserror", + "@ws__anyhow-1.0.100//:anyhow", + "@ws__ct-codecs-1.1.6//:ct_codecs", + "@ws__ed25519-compact-2.2.0//:ed25519_compact", + "@ws__getrandom-0.2.15//:getrandom", + "@ws__hmac-sha256-1.1.12//:hmac_sha256", + "@ws__log-0.4.29//:log", + "@ws__regex-1.12.2//:regex", + "@ws__ssh-keys-0.1.4//:ssh_keys", + "@ws__thiserror-2.0.17//:thiserror", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-cli-0.2.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-cli-0.2.6.bazel index 2187c6205..2c3ea5b9f 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-cli-0.2.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wasmsign2-cli-0.2.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -55,12 +55,12 @@ rust_library( ], version = "0.2.6", deps = [ - "@cu__clap-3.2.25//:clap", - "@cu__env_logger-0.11.8//:env_logger", - "@cu__regex-1.12.2//:regex", - "@cu__ureq-2.12.1//:ureq", - "@cu__uri_encode-1.0.4//:uri_encode", - "@cu__wasmsign2-0.2.6//:wasmsign2", + "@ws__clap-3.2.25//:clap", + "@ws__env_logger-0.11.8//:env_logger", + "@ws__regex-1.12.2//:regex", + "@ws__ureq-2.12.1//:ureq", + "@ws__uri_encode-1.0.4//:uri_encode", + "@ws__wasmsign2-0.2.6//:wasmsign2", ], ) @@ -100,11 +100,11 @@ rust_binary( version = "0.2.6", deps = [ ":wasmsign2_cli", - "@cu__clap-3.2.25//:clap", - "@cu__env_logger-0.11.8//:env_logger", - "@cu__regex-1.12.2//:regex", - "@cu__ureq-2.12.1//:ureq", - "@cu__uri_encode-1.0.4//:uri_encode", - "@cu__wasmsign2-0.2.6//:wasmsign2", + "@ws__clap-3.2.25//:clap", + "@ws__env_logger-0.11.8//:env_logger", + "@ws__regex-1.12.2//:regex", + "@ws__ureq-2.12.1//:ureq", + "@ws__uri_encode-1.0.4//:uri_encode", + "@ws__wasmsign2-0.2.6//:wasmsign2", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-0.26.11.bazel b/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-0.26.11.bazel index d916671ba..a93fd3d13 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-0.26.11.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-0.26.11.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -23,7 +23,7 @@ rust_library( allow_empty = True, ), aliases = { - "@cu__webpki-roots-1.0.4//:webpki_roots": "parent", + "@ws__webpki-roots-1.0.4//:webpki_roots": "parent", }, compile_data = glob( include = ["**"], @@ -54,6 +54,6 @@ rust_library( ], version = "0.26.11", deps = [ - "@cu__webpki-roots-1.0.4//:webpki_roots", + "@ws__webpki-roots-1.0.4//:webpki_roots", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-1.0.4.bazel b/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-1.0.4.bazel index bfb41a420..b824ca142 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-1.0.4.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.webpki-roots-1.0.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -23,7 +23,7 @@ rust_library( allow_empty = True, ), aliases = { - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types": "pki_types", }, compile_data = glob( include = ["**"], @@ -54,6 +54,6 @@ rust_library( ], version = "1.0.4", deps = [ - "@cu__rustls-pki-types-1.13.2//:rustls_pki_types", + "@ws__rustls-pki-types-1.13.2//:rustls_pki_types", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-link-0.2.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-link-0.2.1.bazel index bc53234e3..78f54fd73 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-link-0.2.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-link-0.2.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.48.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.48.0.bazel index 5978b3418..cac855729 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.48.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.48.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -58,6 +58,6 @@ rust_library( ], version = "0.48.0", deps = [ - "@cu__windows-targets-0.48.5//:windows_targets", + "@ws__windows-targets-0.48.5//:windows_targets", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.52.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.52.0.bazel index d47ee528f..6cefc7818 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.52.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.52.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -58,6 +58,6 @@ rust_library( ], version = "0.52.0", deps = [ - "@cu__windows-targets-0.52.6//:windows_targets", + "@ws__windows-targets-0.52.6//:windows_targets", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.60.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.60.2.bazel index cec5b0fe2..84a17cb95 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.60.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.60.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -58,6 +58,6 @@ rust_library( ], version = "0.60.2", deps = [ - "@cu__windows-targets-0.53.5//:windows_targets", + "@ws__windows-targets-0.53.5//:windows_targets", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.61.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.61.2.bazel index 68272236b..227e527cb 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.61.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-sys-0.61.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,6 +51,6 @@ rust_library( ], version = "0.61.2", deps = [ - "@cu__windows-link-0.2.1//:windows_link", + "@ws__windows-link-0.2.1//:windows_link", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.48.5.bazel index 122b39038..d3201b6ef 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -52,22 +52,22 @@ rust_library( version = "0.48.5", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows_aarch64_msvc-0.48.5//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_aarch64_msvc-0.48.5//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows_i686_msvc-0.48.5//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_i686_msvc-0.48.5//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__windows_i686_gnu-0.48.5//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) + "@ws__windows_i686_gnu-0.48.5//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows_x86_64_msvc-0.48.5//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_x86_64_msvc-0.48.5//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.52.6.bazel index 5ee53ac41..bae118f73 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -52,22 +52,22 @@ rust_library( version = "0.52.6", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows_aarch64_msvc-0.52.6//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_aarch64_msvc-0.52.6//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows_i686_msvc-0.52.6//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_i686_msvc-0.52.6//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__windows_i686_gnu-0.52.6//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_i686_gnu-0.52.6//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows_x86_64_msvc-0.52.6//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_x86_64_msvc-0.52.6//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.53.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.53.5.bazel index 7a8ee3f30..26e16bcce 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.53.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows-targets-0.53.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -52,22 +52,22 @@ rust_library( version = "0.53.5", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@cu__windows_aarch64_msvc-0.53.1//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_aarch64_msvc-0.53.1//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@cu__windows_i686_msvc-0.53.1//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_i686_msvc-0.53.1//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@cu__windows_i686_gnu-0.53.1//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_i686_gnu-0.53.1//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@cu__windows_x86_64_msvc-0.53.1//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) + "@ws__windows_x86_64_msvc-0.53.1//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@cu__windows_x86_64_gnu-0.53.1//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.53.1//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@cu__windows_x86_64_gnu-0.53.1//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@ws__windows_x86_64_gnu-0.53.1//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel index 26d1d0169..4692502a2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_aarch64_gnullvm-0.48.5//:build_script_build", + "@ws__windows_aarch64_gnullvm-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index cdd9f1b03..45124bbc1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_aarch64_gnullvm-0.52.6//:build_script_build", + "@ws__windows_aarch64_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.53.1.bazel index 6e1c5dc0a..132e2f43b 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_gnullvm-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_aarch64_gnullvm-0.53.1//:build_script_build", + "@ws__windows_aarch64_gnullvm-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel index 6509845ae..7908ec3ba 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_aarch64_msvc-0.48.5//:build_script_build", + "@ws__windows_aarch64_msvc-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel index 667574f43..b1f8d7e40 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_aarch64_msvc-0.52.6//:build_script_build", + "@ws__windows_aarch64_msvc-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.53.1.bazel index b96a9434a..721edd8a2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_aarch64_msvc-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_aarch64_msvc-0.53.1//:build_script_build", + "@ws__windows_aarch64_msvc-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.48.5.bazel index 9694feb13..b3f7896cd 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_i686_gnu-0.48.5//:build_script_build", + "@ws__windows_i686_gnu-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.52.6.bazel index 90a38d30f..a411793f3 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_i686_gnu-0.52.6//:build_script_build", + "@ws__windows_i686_gnu-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.53.1.bazel index 8701b89d9..840a0af63 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnu-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_i686_gnu-0.53.1//:build_script_build", + "@ws__windows_i686_gnu-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel index 8be6c4ec6..d3d58253b 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_i686_gnullvm-0.52.6//:build_script_build", + "@ws__windows_i686_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.53.1.bazel index b73d97f82..0eb7aa097 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_gnullvm-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_i686_gnullvm-0.53.1//:build_script_build", + "@ws__windows_i686_gnullvm-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.48.5.bazel index 277429598..f4e8fd2e2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_i686_msvc-0.48.5//:build_script_build", + "@ws__windows_i686_msvc-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.52.6.bazel index 0b415c5d3..c4bd37fb8 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_i686_msvc-0.52.6//:build_script_build", + "@ws__windows_i686_msvc-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.53.1.bazel index 723e95604..3d8c5b765 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_i686_msvc-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_i686_msvc-0.53.1//:build_script_build", + "@ws__windows_i686_msvc-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel index d5b069f26..a72b1a56a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_x86_64_gnu-0.48.5//:build_script_build", + "@ws__windows_x86_64_gnu-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel index 90b9bb09e..e3154dcb9 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_x86_64_gnu-0.52.6//:build_script_build", + "@ws__windows_x86_64_gnu-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.53.1.bazel index 22083bcb1..1d00a03f9 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnu-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_x86_64_gnu-0.53.1//:build_script_build", + "@ws__windows_x86_64_gnu-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel index 0245001ee..003b3ed5c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_x86_64_gnullvm-0.48.5//:build_script_build", + "@ws__windows_x86_64_gnullvm-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index ae9686bf0..4a658141a 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_x86_64_gnullvm-0.52.6//:build_script_build", + "@ws__windows_x86_64_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.53.1.bazel index 82d12349c..3aaf99a56 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_gnullvm-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_x86_64_gnullvm-0.53.1//:build_script_build", + "@ws__windows_x86_64_gnullvm-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel index ebceb478e..e686ee5a1 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.48.5", deps = [ - "@cu__windows_x86_64_msvc-0.48.5//:build_script_build", + "@ws__windows_x86_64_msvc-0.48.5//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel index 99967a6b6..7cea0a3a7 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.52.6", deps = [ - "@cu__windows_x86_64_msvc-0.52.6//:build_script_build", + "@ws__windows_x86_64_msvc-0.52.6//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.53.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.53.1.bazel index 63b8e6fa2..be92f563f 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.53.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.windows_x86_64_msvc-0.53.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.53.1", deps = [ - "@cu__windows_x86_64_msvc-0.53.1//:build_script_build", + "@ws__windows_x86_64_msvc-0.53.1//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.wit-bindgen-0.46.0.bazel b/bazel/cargo/wasmsign/remote/BUILD.wit-bindgen-0.46.0.bazel index f7c0e1aea..b7dd4ca07 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.wit-bindgen-0.46.0.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.wit-bindgen-0.46.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load( @@ -55,7 +55,7 @@ rust_library( ], version = "0.46.0", deps = [ - "@cu__wit-bindgen-0.46.0//:build_script_build", + "@ws__wit-bindgen-0.46.0//:build_script_build", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.writeable-0.6.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.writeable-0.6.2.bazel index 388b58f1a..f30076863 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.writeable-0.6.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.writeable-0.6.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.yoke-0.8.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.yoke-0.8.1.bazel index 0287171a0..d26c8651e 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.yoke-0.8.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.yoke-0.8.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -41,7 +41,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__yoke-derive-0.8.1//:yoke_derive", + "@ws__yoke-derive-0.8.1//:yoke_derive", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -58,7 +58,7 @@ rust_library( ], version = "0.8.1", deps = [ - "@cu__stable_deref_trait-1.2.1//:stable_deref_trait", - "@cu__zerofrom-0.1.6//:zerofrom", + "@ws__stable_deref_trait-1.2.1//:stable_deref_trait", + "@ws__zerofrom-0.1.6//:zerofrom", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.yoke-derive-0.8.1.bazel b/bazel/cargo/wasmsign/remote/BUILD.yoke-derive-0.8.1.bazel index 453c0c13b..800447fa2 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.yoke-derive-0.8.1.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.yoke-derive-0.8.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,9 +51,9 @@ rust_proc_macro( ], version = "0.8.1", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", - "@cu__synstructure-0.13.2//:synstructure", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", + "@ws__synstructure-0.13.2//:synstructure", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.zerofrom-0.1.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.zerofrom-0.1.6.bazel index bebc226b5..a2f1531a5 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zerofrom-0.1.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zerofrom-0.1.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -40,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__zerofrom-derive-0.1.6//:zerofrom_derive", + "@ws__zerofrom-derive-0.1.6//:zerofrom_derive", ], rustc_env_files = [ ":cargo_toml_env_vars", diff --git a/bazel/cargo/wasmsign/remote/BUILD.zerofrom-derive-0.1.6.bazel b/bazel/cargo/wasmsign/remote/BUILD.zerofrom-derive-0.1.6.bazel index 566445e16..b3e263659 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zerofrom-derive-0.1.6.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zerofrom-derive-0.1.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,9 +51,9 @@ rust_proc_macro( ], version = "0.1.6", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", - "@cu__synstructure-0.13.2//:synstructure", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", + "@ws__synstructure-0.13.2//:synstructure", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.zeroize-1.8.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.zeroize-1.8.2.bazel index f13fffee7..424858d4c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zeroize-1.8.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zeroize-1.8.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmsign/remote/BUILD.zerotrie-0.2.3.bazel b/bazel/cargo/wasmsign/remote/BUILD.zerotrie-0.2.3.bazel index 8b515667e..185a069ac 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zerotrie-0.2.3.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zerotrie-0.2.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -41,7 +41,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__displaydoc-0.2.5//:displaydoc", + "@ws__displaydoc-0.2.5//:displaydoc", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -58,7 +58,7 @@ rust_library( ], version = "0.2.3", deps = [ - "@cu__yoke-0.8.1//:yoke", - "@cu__zerofrom-0.1.6//:zerofrom", + "@ws__yoke-0.8.1//:yoke", + "@ws__zerofrom-0.1.6//:zerofrom", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.zerovec-0.11.5.bazel b/bazel/cargo/wasmsign/remote/BUILD.zerovec-0.11.5.bazel index 328cb165c..16adb5ec0 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zerovec-0.11.5.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zerovec-0.11.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -41,7 +41,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@cu__zerovec-derive-0.11.2//:zerovec_derive", + "@ws__zerovec-derive-0.11.2//:zerovec_derive", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -58,7 +58,7 @@ rust_library( ], version = "0.11.5", deps = [ - "@cu__yoke-0.8.1//:yoke", - "@cu__zerofrom-0.1.6//:zerofrom", + "@ws__yoke-0.8.1//:yoke", + "@ws__zerofrom-0.1.6//:zerofrom", ], ) diff --git a/bazel/cargo/wasmsign/remote/BUILD.zerovec-derive-0.11.2.bazel b/bazel/cargo/wasmsign/remote/BUILD.zerovec-derive-0.11.2.bazel index 3ff716385..008ad4e8c 100644 --- a/bazel/cargo/wasmsign/remote/BUILD.zerovec-derive-0.11.2.bazel +++ b/bazel/cargo/wasmsign/remote/BUILD.zerovec-derive-0.11.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") @@ -51,8 +51,8 @@ rust_proc_macro( ], version = "0.11.2", deps = [ - "@cu__proc-macro2-1.0.103//:proc_macro2", - "@cu__quote-1.0.42//:quote", - "@cu__syn-2.0.111//:syn", + "@ws__proc-macro2-1.0.103//:proc_macro2", + "@ws__quote-1.0.42//:quote", + "@ws__syn-2.0.111//:syn", ], ) diff --git a/bazel/cargo/wasmsign/remote/crates.bzl b/bazel/cargo/wasmsign/remote/crates.bzl index b91fb21aa..61ea8e412 100644 --- a/bazel/cargo/wasmsign/remote/crates.bzl +++ b/bazel/cargo/wasmsign/remote/crates.bzl @@ -9,10 +9,10 @@ load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # buildifier: disable=bzl-visibility -load("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:defs.bzl", _crate_repositories = "crate_repositories") +load("@rules_rust//crate_universe/private:crates_vendor.bzl", "crates_vendor_remote_repository") # buildifier: disable=bzl-visibility -load("@rules_rust//crate_universe/private:crates_vendor.bzl", "crates_vendor_remote_repository") +load("//bazel/cargo/wasmsign/remote:defs.bzl", _crate_repositories = "crate_repositories") def crate_repositories(): """Generates repositories for vendored crates. @@ -22,11 +22,11 @@ def crate_repositories(): """ maybe( crates_vendor_remote_repository, - name = "cu", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.bazel"), - defs_module = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:defs.bzl"), + name = "ws", + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.bazel"), + defs_module = Label("//bazel/cargo/wasmsign/remote:defs.bzl"), ) - direct_deps = [struct(repo = "cu", is_dev_dep = False)] + direct_deps = [struct(repo = "ws", is_dev_dep = False)] direct_deps.extend(_crate_repositories()) return direct_deps diff --git a/bazel/cargo/wasmsign/remote/defs.bzl b/bazel/cargo/wasmsign/remote/defs.bzl index f1bb3c2b5..3f01adfb0 100644 --- a/bazel/cargo/wasmsign/remote/defs.bzl +++ b/bazel/cargo/wasmsign/remote/defs.bzl @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmsign:crates_vendor +# bazel run @@//bazel/cargo/wasmsign:crates_vendor ############################################################################### """ # `crates_repository` API @@ -295,7 +295,7 @@ def aliases( _NORMAL_DEPENDENCIES = { "bazel/cargo/wasmsign": { _COMMON_CONDITION: { - "wasmsign2-cli": Label("@cu//:wasmsign2-cli-0.2.6"), + "wasmsign2-cli": Label("@ws//:wasmsign2-cli-0.2.6"), }, }, } @@ -447,1454 +447,1454 @@ def crate_repositories(): """ maybe( http_archive, - name = "cu__adler2-2.0.1", + name = "ws__adler2-2.0.1", sha256 = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa", type = "tar.gz", urls = ["https://static.crates.io/crates/adler2/2.0.1/download"], strip_prefix = "adler2-2.0.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.adler2-2.0.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.adler2-2.0.1.bazel"), ) maybe( http_archive, - name = "cu__aho-corasick-1.1.4", + name = "ws__aho-corasick-1.1.4", sha256 = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301", type = "tar.gz", urls = ["https://static.crates.io/crates/aho-corasick/1.1.4/download"], strip_prefix = "aho-corasick-1.1.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.aho-corasick-1.1.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.aho-corasick-1.1.4.bazel"), ) maybe( http_archive, - name = "cu__anyhow-1.0.100", + name = "ws__anyhow-1.0.100", sha256 = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61", type = "tar.gz", urls = ["https://static.crates.io/crates/anyhow/1.0.100/download"], strip_prefix = "anyhow-1.0.100", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.anyhow-1.0.100.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.anyhow-1.0.100.bazel"), ) maybe( http_archive, - name = "cu__autocfg-1.5.0", + name = "ws__autocfg-1.5.0", sha256 = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8", type = "tar.gz", urls = ["https://static.crates.io/crates/autocfg/1.5.0/download"], strip_prefix = "autocfg-1.5.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.autocfg-1.5.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.autocfg-1.5.0.bazel"), ) maybe( http_archive, - name = "cu__base64-0.22.1", + name = "ws__base64-0.22.1", sha256 = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6", type = "tar.gz", urls = ["https://static.crates.io/crates/base64/0.22.1/download"], strip_prefix = "base64-0.22.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.base64-0.22.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.base64-0.22.1.bazel"), ) maybe( http_archive, - name = "cu__base64-0.9.3", + name = "ws__base64-0.9.3", sha256 = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643", type = "tar.gz", urls = ["https://static.crates.io/crates/base64/0.9.3/download"], strip_prefix = "base64-0.9.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.base64-0.9.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.base64-0.9.3.bazel"), ) maybe( http_archive, - name = "cu__bitflags-1.3.2", + name = "ws__bitflags-1.3.2", sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", type = "tar.gz", urls = ["https://static.crates.io/crates/bitflags/1.3.2/download"], strip_prefix = "bitflags-1.3.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.bitflags-1.3.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.bitflags-1.3.2.bazel"), ) maybe( http_archive, - name = "cu__bitflags-2.10.0", + name = "ws__bitflags-2.10.0", sha256 = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3", type = "tar.gz", urls = ["https://static.crates.io/crates/bitflags/2.10.0/download"], strip_prefix = "bitflags-2.10.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.bitflags-2.10.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.bitflags-2.10.0.bazel"), ) maybe( http_archive, - name = "cu__bumpalo-3.19.1", + name = "ws__bumpalo-3.19.1", sha256 = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510", type = "tar.gz", urls = ["https://static.crates.io/crates/bumpalo/3.19.1/download"], strip_prefix = "bumpalo-3.19.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.bumpalo-3.19.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.bumpalo-3.19.1.bazel"), ) maybe( http_archive, - name = "cu__byteorder-1.5.0", + name = "ws__byteorder-1.5.0", sha256 = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b", type = "tar.gz", urls = ["https://static.crates.io/crates/byteorder/1.5.0/download"], strip_prefix = "byteorder-1.5.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.byteorder-1.5.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.byteorder-1.5.0.bazel"), ) maybe( http_archive, - name = "cu__cc-1.2.50", + name = "ws__cc-1.2.50", sha256 = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c", type = "tar.gz", urls = ["https://static.crates.io/crates/cc/1.2.50/download"], strip_prefix = "cc-1.2.50", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.cc-1.2.50.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.cc-1.2.50.bazel"), ) maybe( http_archive, - name = "cu__cfg-if-1.0.0", + name = "ws__cfg-if-1.0.0", sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", type = "tar.gz", urls = ["https://static.crates.io/crates/cfg-if/1.0.0/download"], strip_prefix = "cfg-if-1.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.cfg-if-1.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.cfg-if-1.0.0.bazel"), ) maybe( http_archive, - name = "cu__clap-3.2.25", + name = "ws__clap-3.2.25", sha256 = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123", type = "tar.gz", urls = ["https://static.crates.io/crates/clap/3.2.25/download"], strip_prefix = "clap-3.2.25", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.clap-3.2.25.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.clap-3.2.25.bazel"), ) maybe( http_archive, - name = "cu__clap_lex-0.2.4", + name = "ws__clap_lex-0.2.4", sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5", type = "tar.gz", urls = ["https://static.crates.io/crates/clap_lex/0.2.4/download"], strip_prefix = "clap_lex-0.2.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.clap_lex-0.2.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.clap_lex-0.2.4.bazel"), ) maybe( http_archive, - name = "cu__crc32fast-1.5.0", + name = "ws__crc32fast-1.5.0", sha256 = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511", type = "tar.gz", urls = ["https://static.crates.io/crates/crc32fast/1.5.0/download"], strip_prefix = "crc32fast-1.5.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.crc32fast-1.5.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.crc32fast-1.5.0.bazel"), ) maybe( http_archive, - name = "cu__ct-codecs-1.1.6", + name = "ws__ct-codecs-1.1.6", sha256 = "9b10589d1a5e400d61f9f38f12f884cfd080ff345de8f17efda36fe0e4a02aa8", type = "tar.gz", urls = ["https://static.crates.io/crates/ct-codecs/1.1.6/download"], strip_prefix = "ct-codecs-1.1.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.ct-codecs-1.1.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.ct-codecs-1.1.6.bazel"), ) maybe( http_archive, - name = "cu__displaydoc-0.2.5", + name = "ws__displaydoc-0.2.5", sha256 = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0", type = "tar.gz", urls = ["https://static.crates.io/crates/displaydoc/0.2.5/download"], strip_prefix = "displaydoc-0.2.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.displaydoc-0.2.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.displaydoc-0.2.5.bazel"), ) maybe( http_archive, - name = "cu__ed25519-compact-2.2.0", + name = "ws__ed25519-compact-2.2.0", sha256 = "33ce99a9e19c84beb4cc35ece85374335ccc398240712114c85038319ed709bd", type = "tar.gz", urls = ["https://static.crates.io/crates/ed25519-compact/2.2.0/download"], strip_prefix = "ed25519-compact-2.2.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.ed25519-compact-2.2.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.ed25519-compact-2.2.0.bazel"), ) maybe( http_archive, - name = "cu__env_filter-0.1.4", + name = "ws__env_filter-0.1.4", sha256 = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2", type = "tar.gz", urls = ["https://static.crates.io/crates/env_filter/0.1.4/download"], strip_prefix = "env_filter-0.1.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.env_filter-0.1.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.env_filter-0.1.4.bazel"), ) maybe( http_archive, - name = "cu__env_logger-0.11.8", + name = "ws__env_logger-0.11.8", sha256 = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f", type = "tar.gz", urls = ["https://static.crates.io/crates/env_logger/0.11.8/download"], strip_prefix = "env_logger-0.11.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.env_logger-0.11.8.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.env_logger-0.11.8.bazel"), ) maybe( http_archive, - name = "cu__errno-0.3.14", + name = "ws__errno-0.3.14", sha256 = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb", type = "tar.gz", urls = ["https://static.crates.io/crates/errno/0.3.14/download"], strip_prefix = "errno-0.3.14", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.errno-0.3.14.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.errno-0.3.14.bazel"), ) maybe( http_archive, - name = "cu__find-msvc-tools-0.1.5", + name = "ws__find-msvc-tools-0.1.5", sha256 = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844", type = "tar.gz", urls = ["https://static.crates.io/crates/find-msvc-tools/0.1.5/download"], strip_prefix = "find-msvc-tools-0.1.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.find-msvc-tools-0.1.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.find-msvc-tools-0.1.5.bazel"), ) maybe( http_archive, - name = "cu__flate2-1.1.5", + name = "ws__flate2-1.1.5", sha256 = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb", type = "tar.gz", urls = ["https://static.crates.io/crates/flate2/1.1.5/download"], strip_prefix = "flate2-1.1.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.flate2-1.1.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.flate2-1.1.5.bazel"), ) maybe( http_archive, - name = "cu__form_urlencoded-1.2.2", + name = "ws__form_urlencoded-1.2.2", sha256 = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf", type = "tar.gz", urls = ["https://static.crates.io/crates/form_urlencoded/1.2.2/download"], strip_prefix = "form_urlencoded-1.2.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.form_urlencoded-1.2.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.form_urlencoded-1.2.2.bazel"), ) maybe( http_archive, - name = "cu__getrandom-0.2.15", + name = "ws__getrandom-0.2.15", sha256 = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7", type = "tar.gz", urls = ["https://static.crates.io/crates/getrandom/0.2.15/download"], strip_prefix = "getrandom-0.2.15", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.getrandom-0.2.15.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.getrandom-0.2.15.bazel"), ) maybe( http_archive, - name = "cu__getrandom-0.3.4", + name = "ws__getrandom-0.3.4", sha256 = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd", type = "tar.gz", urls = ["https://static.crates.io/crates/getrandom/0.3.4/download"], strip_prefix = "getrandom-0.3.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.getrandom-0.3.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.getrandom-0.3.4.bazel"), ) maybe( http_archive, - name = "cu__hashbrown-0.12.3", + name = "ws__hashbrown-0.12.3", sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.12.3/download"], strip_prefix = "hashbrown-0.12.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.hashbrown-0.12.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.hashbrown-0.12.3.bazel"), ) maybe( http_archive, - name = "cu__hermit-abi-0.3.9", + name = "ws__hermit-abi-0.3.9", sha256 = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024", type = "tar.gz", urls = ["https://static.crates.io/crates/hermit-abi/0.3.9/download"], strip_prefix = "hermit-abi-0.3.9", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.hermit-abi-0.3.9.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.hermit-abi-0.3.9.bazel"), ) maybe( http_archive, - name = "cu__hmac-sha256-1.1.12", + name = "ws__hmac-sha256-1.1.12", sha256 = "ad6880c8d4a9ebf39c6e8b77007ce223f646a4d21ce29d99f70cb16420545425", type = "tar.gz", urls = ["https://static.crates.io/crates/hmac-sha256/1.1.12/download"], strip_prefix = "hmac-sha256-1.1.12", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.hmac-sha256-1.1.12.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.hmac-sha256-1.1.12.bazel"), ) maybe( http_archive, - name = "cu__icu_collections-2.1.1", + name = "ws__icu_collections-2.1.1", sha256 = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_collections/2.1.1/download"], strip_prefix = "icu_collections-2.1.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_collections-2.1.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_collections-2.1.1.bazel"), ) maybe( http_archive, - name = "cu__icu_locale_core-2.1.1", + name = "ws__icu_locale_core-2.1.1", sha256 = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_locale_core/2.1.1/download"], strip_prefix = "icu_locale_core-2.1.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_locale_core-2.1.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_locale_core-2.1.1.bazel"), ) maybe( http_archive, - name = "cu__icu_normalizer-2.1.1", + name = "ws__icu_normalizer-2.1.1", sha256 = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_normalizer/2.1.1/download"], strip_prefix = "icu_normalizer-2.1.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_normalizer-2.1.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_normalizer-2.1.1.bazel"), ) maybe( http_archive, - name = "cu__icu_normalizer_data-2.1.1", + name = "ws__icu_normalizer_data-2.1.1", sha256 = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_normalizer_data/2.1.1/download"], strip_prefix = "icu_normalizer_data-2.1.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_normalizer_data-2.1.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_normalizer_data-2.1.1.bazel"), ) maybe( http_archive, - name = "cu__icu_properties-2.1.2", + name = "ws__icu_properties-2.1.2", sha256 = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_properties/2.1.2/download"], strip_prefix = "icu_properties-2.1.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_properties-2.1.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_properties-2.1.2.bazel"), ) maybe( http_archive, - name = "cu__icu_properties_data-2.1.2", + name = "ws__icu_properties_data-2.1.2", sha256 = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_properties_data/2.1.2/download"], strip_prefix = "icu_properties_data-2.1.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_properties_data-2.1.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_properties_data-2.1.2.bazel"), ) maybe( http_archive, - name = "cu__icu_provider-2.1.1", + name = "ws__icu_provider-2.1.1", sha256 = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614", type = "tar.gz", urls = ["https://static.crates.io/crates/icu_provider/2.1.1/download"], strip_prefix = "icu_provider-2.1.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.icu_provider-2.1.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.icu_provider-2.1.1.bazel"), ) maybe( http_archive, - name = "cu__idna-1.1.0", + name = "ws__idna-1.1.0", sha256 = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de", type = "tar.gz", urls = ["https://static.crates.io/crates/idna/1.1.0/download"], strip_prefix = "idna-1.1.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.idna-1.1.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.idna-1.1.0.bazel"), ) maybe( http_archive, - name = "cu__idna_adapter-1.2.1", + name = "ws__idna_adapter-1.2.1", sha256 = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344", type = "tar.gz", urls = ["https://static.crates.io/crates/idna_adapter/1.2.1/download"], strip_prefix = "idna_adapter-1.2.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.idna_adapter-1.2.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.idna_adapter-1.2.1.bazel"), ) maybe( http_archive, - name = "cu__indexmap-1.9.3", + name = "ws__indexmap-1.9.3", sha256 = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99", type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/1.9.3/download"], strip_prefix = "indexmap-1.9.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.indexmap-1.9.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.indexmap-1.9.3.bazel"), ) maybe( http_archive, - name = "cu__io-lifetimes-1.0.11", + name = "ws__io-lifetimes-1.0.11", sha256 = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2", type = "tar.gz", urls = ["https://static.crates.io/crates/io-lifetimes/1.0.11/download"], strip_prefix = "io-lifetimes-1.0.11", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.io-lifetimes-1.0.11.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.io-lifetimes-1.0.11.bazel"), ) maybe( http_archive, - name = "cu__jiff-0.2.16", + name = "ws__jiff-0.2.16", sha256 = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35", type = "tar.gz", urls = ["https://static.crates.io/crates/jiff/0.2.16/download"], strip_prefix = "jiff-0.2.16", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.jiff-0.2.16.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.jiff-0.2.16.bazel"), ) maybe( http_archive, - name = "cu__jiff-static-0.2.16", + name = "ws__jiff-static-0.2.16", sha256 = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69", type = "tar.gz", urls = ["https://static.crates.io/crates/jiff-static/0.2.16/download"], strip_prefix = "jiff-static-0.2.16", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.jiff-static-0.2.16.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.jiff-static-0.2.16.bazel"), ) maybe( http_archive, - name = "cu__js-sys-0.3.83", + name = "ws__js-sys-0.3.83", sha256 = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8", type = "tar.gz", urls = ["https://static.crates.io/crates/js-sys/0.3.83/download"], strip_prefix = "js-sys-0.3.83", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.js-sys-0.3.83.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.js-sys-0.3.83.bazel"), ) maybe( http_archive, - name = "cu__libc-0.2.178", + name = "ws__libc-0.2.178", sha256 = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091", type = "tar.gz", urls = ["https://static.crates.io/crates/libc/0.2.178/download"], strip_prefix = "libc-0.2.178", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.libc-0.2.178.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.libc-0.2.178.bazel"), ) maybe( http_archive, - name = "cu__linux-raw-sys-0.11.0", + name = "ws__linux-raw-sys-0.11.0", sha256 = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039", type = "tar.gz", urls = ["https://static.crates.io/crates/linux-raw-sys/0.11.0/download"], strip_prefix = "linux-raw-sys-0.11.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.linux-raw-sys-0.11.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.linux-raw-sys-0.11.0.bazel"), ) maybe( http_archive, - name = "cu__linux-raw-sys-0.3.8", + name = "ws__linux-raw-sys-0.3.8", sha256 = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519", type = "tar.gz", urls = ["https://static.crates.io/crates/linux-raw-sys/0.3.8/download"], strip_prefix = "linux-raw-sys-0.3.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.linux-raw-sys-0.3.8.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.linux-raw-sys-0.3.8.bazel"), ) maybe( http_archive, - name = "cu__litemap-0.8.1", + name = "ws__litemap-0.8.1", sha256 = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77", type = "tar.gz", urls = ["https://static.crates.io/crates/litemap/0.8.1/download"], strip_prefix = "litemap-0.8.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.litemap-0.8.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.litemap-0.8.1.bazel"), ) maybe( http_archive, - name = "cu__log-0.4.29", + name = "ws__log-0.4.29", sha256 = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897", type = "tar.gz", urls = ["https://static.crates.io/crates/log/0.4.29/download"], strip_prefix = "log-0.4.29", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.log-0.4.29.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.log-0.4.29.bazel"), ) maybe( http_archive, - name = "cu__memchr-2.7.6", + name = "ws__memchr-2.7.6", sha256 = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273", type = "tar.gz", urls = ["https://static.crates.io/crates/memchr/2.7.6/download"], strip_prefix = "memchr-2.7.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.memchr-2.7.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.memchr-2.7.6.bazel"), ) maybe( http_archive, - name = "cu__miniz_oxide-0.8.9", + name = "ws__miniz_oxide-0.8.9", sha256 = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316", type = "tar.gz", urls = ["https://static.crates.io/crates/miniz_oxide/0.8.9/download"], strip_prefix = "miniz_oxide-0.8.9", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.miniz_oxide-0.8.9.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.miniz_oxide-0.8.9.bazel"), ) maybe( http_archive, - name = "cu__once_cell-1.21.3", + name = "ws__once_cell-1.21.3", sha256 = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d", type = "tar.gz", urls = ["https://static.crates.io/crates/once_cell/1.21.3/download"], strip_prefix = "once_cell-1.21.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.once_cell-1.21.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.once_cell-1.21.3.bazel"), ) maybe( http_archive, - name = "cu__os_str_bytes-6.6.1", + name = "ws__os_str_bytes-6.6.1", sha256 = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1", type = "tar.gz", urls = ["https://static.crates.io/crates/os_str_bytes/6.6.1/download"], strip_prefix = "os_str_bytes-6.6.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.os_str_bytes-6.6.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.os_str_bytes-6.6.1.bazel"), ) maybe( http_archive, - name = "cu__percent-encoding-2.3.2", + name = "ws__percent-encoding-2.3.2", sha256 = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220", type = "tar.gz", urls = ["https://static.crates.io/crates/percent-encoding/2.3.2/download"], strip_prefix = "percent-encoding-2.3.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.percent-encoding-2.3.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.percent-encoding-2.3.2.bazel"), ) maybe( http_archive, - name = "cu__portable-atomic-1.12.0", + name = "ws__portable-atomic-1.12.0", sha256 = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd", type = "tar.gz", urls = ["https://static.crates.io/crates/portable-atomic/1.12.0/download"], strip_prefix = "portable-atomic-1.12.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.portable-atomic-1.12.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.portable-atomic-1.12.0.bazel"), ) maybe( http_archive, - name = "cu__portable-atomic-util-0.2.4", + name = "ws__portable-atomic-util-0.2.4", sha256 = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507", type = "tar.gz", urls = ["https://static.crates.io/crates/portable-atomic-util/0.2.4/download"], strip_prefix = "portable-atomic-util-0.2.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.portable-atomic-util-0.2.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.portable-atomic-util-0.2.4.bazel"), ) maybe( http_archive, - name = "cu__potential_utf-0.1.4", + name = "ws__potential_utf-0.1.4", sha256 = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77", type = "tar.gz", urls = ["https://static.crates.io/crates/potential_utf/0.1.4/download"], strip_prefix = "potential_utf-0.1.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.potential_utf-0.1.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.potential_utf-0.1.4.bazel"), ) maybe( http_archive, - name = "cu__proc-macro2-1.0.103", + name = "ws__proc-macro2-1.0.103", sha256 = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8", type = "tar.gz", urls = ["https://static.crates.io/crates/proc-macro2/1.0.103/download"], strip_prefix = "proc-macro2-1.0.103", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.proc-macro2-1.0.103.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.proc-macro2-1.0.103.bazel"), ) maybe( http_archive, - name = "cu__quick-error-1.2.3", + name = "ws__quick-error-1.2.3", sha256 = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0", type = "tar.gz", urls = ["https://static.crates.io/crates/quick-error/1.2.3/download"], strip_prefix = "quick-error-1.2.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.quick-error-1.2.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.quick-error-1.2.3.bazel"), ) maybe( http_archive, - name = "cu__quote-1.0.42", + name = "ws__quote-1.0.42", sha256 = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f", type = "tar.gz", urls = ["https://static.crates.io/crates/quote/1.0.42/download"], strip_prefix = "quote-1.0.42", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.quote-1.0.42.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.quote-1.0.42.bazel"), ) maybe( http_archive, - name = "cu__r-efi-5.3.0", + name = "ws__r-efi-5.3.0", sha256 = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f", type = "tar.gz", urls = ["https://static.crates.io/crates/r-efi/5.3.0/download"], strip_prefix = "r-efi-5.3.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.r-efi-5.3.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.r-efi-5.3.0.bazel"), ) maybe( http_archive, - name = "cu__regex-1.12.2", + name = "ws__regex-1.12.2", sha256 = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4", type = "tar.gz", urls = ["https://static.crates.io/crates/regex/1.12.2/download"], strip_prefix = "regex-1.12.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.regex-1.12.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.regex-1.12.2.bazel"), ) maybe( http_archive, - name = "cu__regex-automata-0.4.13", + name = "ws__regex-automata-0.4.13", sha256 = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.4.13/download"], strip_prefix = "regex-automata-0.4.13", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.regex-automata-0.4.13.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.regex-automata-0.4.13.bazel"), ) maybe( http_archive, - name = "cu__regex-syntax-0.8.8", + name = "ws__regex-syntax-0.8.8", sha256 = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-syntax/0.8.8/download"], strip_prefix = "regex-syntax-0.8.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.regex-syntax-0.8.8.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.regex-syntax-0.8.8.bazel"), ) maybe( http_archive, - name = "cu__ring-0.17.14", + name = "ws__ring-0.17.14", sha256 = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7", type = "tar.gz", urls = ["https://static.crates.io/crates/ring/0.17.14/download"], strip_prefix = "ring-0.17.14", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.ring-0.17.14.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.ring-0.17.14.bazel"), ) maybe( http_archive, - name = "cu__rustix-0.37.28", + name = "ws__rustix-0.37.28", sha256 = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6", type = "tar.gz", urls = ["https://static.crates.io/crates/rustix/0.37.28/download"], strip_prefix = "rustix-0.37.28", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustix-0.37.28.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustix-0.37.28.bazel"), ) maybe( http_archive, - name = "cu__rustix-1.1.2", + name = "ws__rustix-1.1.2", sha256 = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e", type = "tar.gz", urls = ["https://static.crates.io/crates/rustix/1.1.2/download"], strip_prefix = "rustix-1.1.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustix-1.1.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustix-1.1.2.bazel"), ) maybe( http_archive, - name = "cu__rustls-0.23.35", + name = "ws__rustls-0.23.35", sha256 = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f", type = "tar.gz", urls = ["https://static.crates.io/crates/rustls/0.23.35/download"], strip_prefix = "rustls-0.23.35", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustls-0.23.35.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustls-0.23.35.bazel"), ) maybe( http_archive, - name = "cu__rustls-pki-types-1.13.2", + name = "ws__rustls-pki-types-1.13.2", sha256 = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282", type = "tar.gz", urls = ["https://static.crates.io/crates/rustls-pki-types/1.13.2/download"], strip_prefix = "rustls-pki-types-1.13.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustls-pki-types-1.13.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustls-pki-types-1.13.2.bazel"), ) maybe( http_archive, - name = "cu__rustls-webpki-0.103.8", + name = "ws__rustls-webpki-0.103.8", sha256 = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52", type = "tar.gz", urls = ["https://static.crates.io/crates/rustls-webpki/0.103.8/download"], strip_prefix = "rustls-webpki-0.103.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustls-webpki-0.103.8.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustls-webpki-0.103.8.bazel"), ) maybe( http_archive, - name = "cu__rustversion-1.0.22", + name = "ws__rustversion-1.0.22", sha256 = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d", type = "tar.gz", urls = ["https://static.crates.io/crates/rustversion/1.0.22/download"], strip_prefix = "rustversion-1.0.22", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.rustversion-1.0.22.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.rustversion-1.0.22.bazel"), ) maybe( http_archive, - name = "cu__safemem-0.3.3", + name = "ws__safemem-0.3.3", sha256 = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072", type = "tar.gz", urls = ["https://static.crates.io/crates/safemem/0.3.3/download"], strip_prefix = "safemem-0.3.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.safemem-0.3.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.safemem-0.3.3.bazel"), ) maybe( http_archive, - name = "cu__serde-1.0.228", + name = "ws__serde-1.0.228", sha256 = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e", type = "tar.gz", urls = ["https://static.crates.io/crates/serde/1.0.228/download"], strip_prefix = "serde-1.0.228", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.serde-1.0.228.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.serde-1.0.228.bazel"), ) maybe( http_archive, - name = "cu__serde_core-1.0.228", + name = "ws__serde_core-1.0.228", sha256 = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_core/1.0.228/download"], strip_prefix = "serde_core-1.0.228", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.serde_core-1.0.228.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.serde_core-1.0.228.bazel"), ) maybe( http_archive, - name = "cu__serde_derive-1.0.228", + name = "ws__serde_derive-1.0.228", sha256 = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_derive/1.0.228/download"], strip_prefix = "serde_derive-1.0.228", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.serde_derive-1.0.228.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.serde_derive-1.0.228.bazel"), ) maybe( http_archive, - name = "cu__shlex-1.3.0", + name = "ws__shlex-1.3.0", sha256 = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", type = "tar.gz", urls = ["https://static.crates.io/crates/shlex/1.3.0/download"], strip_prefix = "shlex-1.3.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.shlex-1.3.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.shlex-1.3.0.bazel"), ) maybe( http_archive, - name = "cu__simd-adler32-0.3.8", + name = "ws__simd-adler32-0.3.8", sha256 = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2", type = "tar.gz", urls = ["https://static.crates.io/crates/simd-adler32/0.3.8/download"], strip_prefix = "simd-adler32-0.3.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.simd-adler32-0.3.8.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.simd-adler32-0.3.8.bazel"), ) maybe( http_archive, - name = "cu__smallvec-1.15.1", + name = "ws__smallvec-1.15.1", sha256 = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03", type = "tar.gz", urls = ["https://static.crates.io/crates/smallvec/1.15.1/download"], strip_prefix = "smallvec-1.15.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.smallvec-1.15.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.smallvec-1.15.1.bazel"), ) maybe( http_archive, - name = "cu__ssh-keys-0.1.4", + name = "ws__ssh-keys-0.1.4", sha256 = "2555f9858fe3b961c98100b8be77cbd6a81527bf20d40e7a11dafb8810298e95", type = "tar.gz", urls = ["https://static.crates.io/crates/ssh-keys/0.1.4/download"], strip_prefix = "ssh-keys-0.1.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.ssh-keys-0.1.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.ssh-keys-0.1.4.bazel"), ) maybe( http_archive, - name = "cu__stable_deref_trait-1.2.1", + name = "ws__stable_deref_trait-1.2.1", sha256 = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596", type = "tar.gz", urls = ["https://static.crates.io/crates/stable_deref_trait/1.2.1/download"], strip_prefix = "stable_deref_trait-1.2.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.stable_deref_trait-1.2.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.stable_deref_trait-1.2.1.bazel"), ) maybe( http_archive, - name = "cu__subtle-2.6.1", + name = "ws__subtle-2.6.1", sha256 = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292", type = "tar.gz", urls = ["https://static.crates.io/crates/subtle/2.6.1/download"], strip_prefix = "subtle-2.6.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.subtle-2.6.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.subtle-2.6.1.bazel"), ) maybe( http_archive, - name = "cu__syn-2.0.111", + name = "ws__syn-2.0.111", sha256 = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87", type = "tar.gz", urls = ["https://static.crates.io/crates/syn/2.0.111/download"], strip_prefix = "syn-2.0.111", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.syn-2.0.111.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.syn-2.0.111.bazel"), ) maybe( http_archive, - name = "cu__synstructure-0.13.2", + name = "ws__synstructure-0.13.2", sha256 = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2", type = "tar.gz", urls = ["https://static.crates.io/crates/synstructure/0.13.2/download"], strip_prefix = "synstructure-0.13.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.synstructure-0.13.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.synstructure-0.13.2.bazel"), ) maybe( http_archive, - name = "cu__terminal_size-0.2.6", + name = "ws__terminal_size-0.2.6", sha256 = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237", type = "tar.gz", urls = ["https://static.crates.io/crates/terminal_size/0.2.6/download"], strip_prefix = "terminal_size-0.2.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.terminal_size-0.2.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.terminal_size-0.2.6.bazel"), ) maybe( http_archive, - name = "cu__terminal_size-0.4.3", + name = "ws__terminal_size-0.4.3", sha256 = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0", type = "tar.gz", urls = ["https://static.crates.io/crates/terminal_size/0.4.3/download"], strip_prefix = "terminal_size-0.4.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.terminal_size-0.4.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.terminal_size-0.4.3.bazel"), ) maybe( http_archive, - name = "cu__textwrap-0.16.2", + name = "ws__textwrap-0.16.2", sha256 = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057", type = "tar.gz", urls = ["https://static.crates.io/crates/textwrap/0.16.2/download"], strip_prefix = "textwrap-0.16.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.textwrap-0.16.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.textwrap-0.16.2.bazel"), ) maybe( http_archive, - name = "cu__thiserror-2.0.17", + name = "ws__thiserror-2.0.17", sha256 = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8", type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror/2.0.17/download"], strip_prefix = "thiserror-2.0.17", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.thiserror-2.0.17.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.thiserror-2.0.17.bazel"), ) maybe( http_archive, - name = "cu__thiserror-impl-2.0.17", + name = "ws__thiserror-impl-2.0.17", sha256 = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913", type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror-impl/2.0.17/download"], strip_prefix = "thiserror-impl-2.0.17", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.thiserror-impl-2.0.17.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.thiserror-impl-2.0.17.bazel"), ) maybe( http_archive, - name = "cu__tinystr-0.8.2", + name = "ws__tinystr-0.8.2", sha256 = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869", type = "tar.gz", urls = ["https://static.crates.io/crates/tinystr/0.8.2/download"], strip_prefix = "tinystr-0.8.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.tinystr-0.8.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.tinystr-0.8.2.bazel"), ) maybe( http_archive, - name = "cu__unicode-ident-1.0.12", + name = "ws__unicode-ident-1.0.12", sha256 = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-ident/1.0.12/download"], strip_prefix = "unicode-ident-1.0.12", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.unicode-ident-1.0.12.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.unicode-ident-1.0.12.bazel"), ) maybe( http_archive, - name = "cu__untrusted-0.9.0", + name = "ws__untrusted-0.9.0", sha256 = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1", type = "tar.gz", urls = ["https://static.crates.io/crates/untrusted/0.9.0/download"], strip_prefix = "untrusted-0.9.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.untrusted-0.9.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.untrusted-0.9.0.bazel"), ) maybe( http_archive, - name = "cu__ureq-2.12.1", + name = "ws__ureq-2.12.1", sha256 = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d", type = "tar.gz", urls = ["https://static.crates.io/crates/ureq/2.12.1/download"], strip_prefix = "ureq-2.12.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.ureq-2.12.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.ureq-2.12.1.bazel"), ) maybe( http_archive, - name = "cu__uri_encode-1.0.4", + name = "ws__uri_encode-1.0.4", sha256 = "9666edb2c10ee91354ec062e9e2d84896c2437378484c566d3523f9b8daf0129", type = "tar.gz", urls = ["https://static.crates.io/crates/uri_encode/1.0.4/download"], strip_prefix = "uri_encode-1.0.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.uri_encode-1.0.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.uri_encode-1.0.4.bazel"), ) maybe( http_archive, - name = "cu__url-2.5.7", + name = "ws__url-2.5.7", sha256 = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b", type = "tar.gz", urls = ["https://static.crates.io/crates/url/2.5.7/download"], strip_prefix = "url-2.5.7", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.url-2.5.7.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.url-2.5.7.bazel"), ) maybe( http_archive, - name = "cu__utf8_iter-1.0.4", + name = "ws__utf8_iter-1.0.4", sha256 = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be", type = "tar.gz", urls = ["https://static.crates.io/crates/utf8_iter/1.0.4/download"], strip_prefix = "utf8_iter-1.0.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.utf8_iter-1.0.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.utf8_iter-1.0.4.bazel"), ) maybe( http_archive, - name = "cu__wasi-0.11.0-wasi-snapshot-preview1", + name = "ws__wasi-0.11.0-wasi-snapshot-preview1", sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", type = "tar.gz", urls = ["https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download"], strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"), ) maybe( http_archive, - name = "cu__wasip2-1.0.1-wasi-0.2.4", + name = "ws__wasip2-1.0.1-wasi-0.2.4", sha256 = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7", type = "tar.gz", urls = ["https://static.crates.io/crates/wasip2/1.0.1+wasi-0.2.4/download"], strip_prefix = "wasip2-1.0.1+wasi-0.2.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasip2-1.0.1+wasi-0.2.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasip2-1.0.1+wasi-0.2.4.bazel"), ) maybe( http_archive, - name = "cu__wasm-bindgen-0.2.106", + name = "ws__wasm-bindgen-0.2.106", sha256 = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen/0.2.106/download"], strip_prefix = "wasm-bindgen-0.2.106", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-0.2.106.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-0.2.106.bazel"), ) maybe( http_archive, - name = "cu__wasm-bindgen-macro-0.2.106", + name = "ws__wasm-bindgen-macro-0.2.106", sha256 = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro/0.2.106/download"], strip_prefix = "wasm-bindgen-macro-0.2.106", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-macro-0.2.106.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-macro-0.2.106.bazel"), ) maybe( http_archive, - name = "cu__wasm-bindgen-macro-support-0.2.106", + name = "ws__wasm-bindgen-macro-support-0.2.106", sha256 = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.106/download"], strip_prefix = "wasm-bindgen-macro-support-0.2.106", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-macro-support-0.2.106.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-macro-support-0.2.106.bazel"), ) maybe( http_archive, - name = "cu__wasm-bindgen-shared-0.2.106", + name = "ws__wasm-bindgen-shared-0.2.106", sha256 = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-shared/0.2.106/download"], strip_prefix = "wasm-bindgen-shared-0.2.106", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-shared-0.2.106.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasm-bindgen-shared-0.2.106.bazel"), ) maybe( http_archive, - name = "cu__wasmsign2-0.2.6", + name = "ws__wasmsign2-0.2.6", sha256 = "827c62c48f459aa88568300b00f01f3740b7a11ca887a6aeb7e8cc0e196fc0de", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmsign2/0.2.6/download"], strip_prefix = "wasmsign2-0.2.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasmsign2-0.2.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasmsign2-0.2.6.bazel"), ) maybe( http_archive, - name = "cu__wasmsign2-cli-0.2.6", + name = "ws__wasmsign2-cli-0.2.6", sha256 = "d57fbd834cb8d480bc49b10ed82e114bf8f052198bf39ad0e47b9a225e850101", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmsign2-cli/0.2.6/download"], strip_prefix = "wasmsign2-cli-0.2.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wasmsign2-cli-0.2.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wasmsign2-cli-0.2.6.bazel"), ) maybe( http_archive, - name = "cu__webpki-roots-0.26.11", + name = "ws__webpki-roots-0.26.11", sha256 = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9", type = "tar.gz", urls = ["https://static.crates.io/crates/webpki-roots/0.26.11/download"], strip_prefix = "webpki-roots-0.26.11", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.webpki-roots-0.26.11.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.webpki-roots-0.26.11.bazel"), ) maybe( http_archive, - name = "cu__webpki-roots-1.0.4", + name = "ws__webpki-roots-1.0.4", sha256 = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e", type = "tar.gz", urls = ["https://static.crates.io/crates/webpki-roots/1.0.4/download"], strip_prefix = "webpki-roots-1.0.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.webpki-roots-1.0.4.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.webpki-roots-1.0.4.bazel"), ) maybe( http_archive, - name = "cu__windows-link-0.2.1", + name = "ws__windows-link-0.2.1", sha256 = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-link/0.2.1/download"], strip_prefix = "windows-link-0.2.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-link-0.2.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-link-0.2.1.bazel"), ) maybe( http_archive, - name = "cu__windows-sys-0.48.0", + name = "ws__windows-sys-0.48.0", sha256 = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.48.0/download"], strip_prefix = "windows-sys-0.48.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.48.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.48.0.bazel"), ) maybe( http_archive, - name = "cu__windows-sys-0.52.0", + name = "ws__windows-sys-0.52.0", sha256 = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.52.0/download"], strip_prefix = "windows-sys-0.52.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.52.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.52.0.bazel"), ) maybe( http_archive, - name = "cu__windows-sys-0.60.2", + name = "ws__windows-sys-0.60.2", sha256 = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.60.2/download"], strip_prefix = "windows-sys-0.60.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.60.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.60.2.bazel"), ) maybe( http_archive, - name = "cu__windows-sys-0.61.2", + name = "ws__windows-sys-0.61.2", sha256 = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.61.2/download"], strip_prefix = "windows-sys-0.61.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.61.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-sys-0.61.2.bazel"), ) maybe( http_archive, - name = "cu__windows-targets-0.48.5", + name = "ws__windows-targets-0.48.5", sha256 = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.48.5/download"], strip_prefix = "windows-targets-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows-targets-0.52.6", + name = "ws__windows-targets-0.52.6", sha256 = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.52.6/download"], strip_prefix = "windows-targets-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows-targets-0.53.5", + name = "ws__windows-targets-0.53.5", sha256 = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.53.5/download"], strip_prefix = "windows-targets-0.53.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.53.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows-targets-0.53.5.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_gnullvm-0.48.5", + name = "ws__windows_aarch64_gnullvm-0.48.5", sha256 = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download"], strip_prefix = "windows_aarch64_gnullvm-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_gnullvm-0.52.6", + name = "ws__windows_aarch64_gnullvm-0.52.6", sha256 = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download"], strip_prefix = "windows_aarch64_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_gnullvm-0.53.1", + name = "ws__windows_aarch64_gnullvm-0.53.1", sha256 = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download"], strip_prefix = "windows_aarch64_gnullvm-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_gnullvm-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_msvc-0.48.5", + name = "ws__windows_aarch64_msvc-0.48.5", sha256 = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download"], strip_prefix = "windows_aarch64_msvc-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_msvc-0.52.6", + name = "ws__windows_aarch64_msvc-0.52.6", sha256 = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download"], strip_prefix = "windows_aarch64_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_aarch64_msvc-0.53.1", + name = "ws__windows_aarch64_msvc-0.53.1", sha256 = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download"], strip_prefix = "windows_aarch64_msvc-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_aarch64_msvc-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_gnu-0.48.5", + name = "ws__windows_i686_gnu-0.48.5", sha256 = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.48.5/download"], strip_prefix = "windows_i686_gnu-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_gnu-0.52.6", + name = "ws__windows_i686_gnu-0.52.6", sha256 = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.52.6/download"], strip_prefix = "windows_i686_gnu-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_gnu-0.53.1", + name = "ws__windows_i686_gnu-0.53.1", sha256 = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.53.1/download"], strip_prefix = "windows_i686_gnu-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnu-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_gnullvm-0.52.6", + name = "ws__windows_i686_gnullvm-0.52.6", sha256 = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download"], strip_prefix = "windows_i686_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnullvm-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_gnullvm-0.53.1", + name = "ws__windows_i686_gnullvm-0.53.1", sha256 = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download"], strip_prefix = "windows_i686_gnullvm-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnullvm-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_gnullvm-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_msvc-0.48.5", + name = "ws__windows_i686_msvc-0.48.5", sha256 = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.48.5/download"], strip_prefix = "windows_i686_msvc-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_msvc-0.52.6", + name = "ws__windows_i686_msvc-0.52.6", sha256 = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.52.6/download"], strip_prefix = "windows_i686_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_i686_msvc-0.53.1", + name = "ws__windows_i686_msvc-0.53.1", sha256 = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.53.1/download"], strip_prefix = "windows_i686_msvc-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_i686_msvc-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnu-0.48.5", + name = "ws__windows_x86_64_gnu-0.48.5", sha256 = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download"], strip_prefix = "windows_x86_64_gnu-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnu-0.52.6", + name = "ws__windows_x86_64_gnu-0.52.6", sha256 = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download"], strip_prefix = "windows_x86_64_gnu-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnu-0.53.1", + name = "ws__windows_x86_64_gnu-0.53.1", sha256 = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download"], strip_prefix = "windows_x86_64_gnu-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnu-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnullvm-0.48.5", + name = "ws__windows_x86_64_gnullvm-0.48.5", sha256 = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download"], strip_prefix = "windows_x86_64_gnullvm-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnullvm-0.52.6", + name = "ws__windows_x86_64_gnullvm-0.52.6", sha256 = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download"], strip_prefix = "windows_x86_64_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_gnullvm-0.53.1", + name = "ws__windows_x86_64_gnullvm-0.53.1", sha256 = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download"], strip_prefix = "windows_x86_64_gnullvm-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_gnullvm-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_msvc-0.48.5", + name = "ws__windows_x86_64_msvc-0.48.5", sha256 = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download"], strip_prefix = "windows_x86_64_msvc-0.48.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.48.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.48.5.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_msvc-0.52.6", + name = "ws__windows_x86_64_msvc-0.52.6", sha256 = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download"], strip_prefix = "windows_x86_64_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.52.6.bazel"), ) maybe( http_archive, - name = "cu__windows_x86_64_msvc-0.53.1", + name = "ws__windows_x86_64_msvc-0.53.1", sha256 = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download"], strip_prefix = "windows_x86_64_msvc-0.53.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.53.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.windows_x86_64_msvc-0.53.1.bazel"), ) maybe( http_archive, - name = "cu__wit-bindgen-0.46.0", + name = "ws__wit-bindgen-0.46.0", sha256 = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59", type = "tar.gz", urls = ["https://static.crates.io/crates/wit-bindgen/0.46.0/download"], strip_prefix = "wit-bindgen-0.46.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.wit-bindgen-0.46.0.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.wit-bindgen-0.46.0.bazel"), ) maybe( http_archive, - name = "cu__writeable-0.6.2", + name = "ws__writeable-0.6.2", sha256 = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9", type = "tar.gz", urls = ["https://static.crates.io/crates/writeable/0.6.2/download"], strip_prefix = "writeable-0.6.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.writeable-0.6.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.writeable-0.6.2.bazel"), ) maybe( http_archive, - name = "cu__yoke-0.8.1", + name = "ws__yoke-0.8.1", sha256 = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954", type = "tar.gz", urls = ["https://static.crates.io/crates/yoke/0.8.1/download"], strip_prefix = "yoke-0.8.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.yoke-0.8.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.yoke-0.8.1.bazel"), ) maybe( http_archive, - name = "cu__yoke-derive-0.8.1", + name = "ws__yoke-derive-0.8.1", sha256 = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d", type = "tar.gz", urls = ["https://static.crates.io/crates/yoke-derive/0.8.1/download"], strip_prefix = "yoke-derive-0.8.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.yoke-derive-0.8.1.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.yoke-derive-0.8.1.bazel"), ) maybe( http_archive, - name = "cu__zerofrom-0.1.6", + name = "ws__zerofrom-0.1.6", sha256 = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5", type = "tar.gz", urls = ["https://static.crates.io/crates/zerofrom/0.1.6/download"], strip_prefix = "zerofrom-0.1.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zerofrom-0.1.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zerofrom-0.1.6.bazel"), ) maybe( http_archive, - name = "cu__zerofrom-derive-0.1.6", + name = "ws__zerofrom-derive-0.1.6", sha256 = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502", type = "tar.gz", urls = ["https://static.crates.io/crates/zerofrom-derive/0.1.6/download"], strip_prefix = "zerofrom-derive-0.1.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zerofrom-derive-0.1.6.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zerofrom-derive-0.1.6.bazel"), ) maybe( http_archive, - name = "cu__zeroize-1.8.2", + name = "ws__zeroize-1.8.2", sha256 = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0", type = "tar.gz", urls = ["https://static.crates.io/crates/zeroize/1.8.2/download"], strip_prefix = "zeroize-1.8.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zeroize-1.8.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zeroize-1.8.2.bazel"), ) maybe( http_archive, - name = "cu__zerotrie-0.2.3", + name = "ws__zerotrie-0.2.3", sha256 = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851", type = "tar.gz", urls = ["https://static.crates.io/crates/zerotrie/0.2.3/download"], strip_prefix = "zerotrie-0.2.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zerotrie-0.2.3.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zerotrie-0.2.3.bazel"), ) maybe( http_archive, - name = "cu__zerovec-0.11.5", + name = "ws__zerovec-0.11.5", sha256 = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002", type = "tar.gz", urls = ["https://static.crates.io/crates/zerovec/0.11.5/download"], strip_prefix = "zerovec-0.11.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zerovec-0.11.5.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zerovec-0.11.5.bazel"), ) maybe( http_archive, - name = "cu__zerovec-derive-0.11.2", + name = "ws__zerovec-derive-0.11.2", sha256 = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3", type = "tar.gz", urls = ["https://static.crates.io/crates/zerovec-derive/0.11.2/download"], strip_prefix = "zerovec-derive-0.11.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmsign/remote:BUILD.zerovec-derive-0.11.2.bazel"), + build_file = Label("//bazel/cargo/wasmsign/remote:BUILD.zerovec-derive-0.11.2.bazel"), ) return [ - struct(repo = "cu__wasmsign2-cli-0.2.6", is_dev_dep = False), + struct(repo = "ws__wasmsign2-cli-0.2.6", is_dev_dep = False), ] diff --git a/bazel/cargo/wasmtime/remote/BUILD.ahash-0.8.11.bazel b/bazel/cargo/wasmtime/remote/BUILD.ahash-0.8.11.bazel index 420865953..441d4f00c 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.ahash-0.8.11.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.ahash-0.8.11.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.aho-corasick-1.1.3.bazel b/bazel/cargo/wasmtime/remote/BUILD.aho-corasick-1.1.3.bazel index 2d8e211ab..b60d37365 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.aho-corasick-1.1.3.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.aho-corasick-1.1.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.anyhow-1.0.86.bazel b/bazel/cargo/wasmtime/remote/BUILD.anyhow-1.0.86.bazel index 6aefed0a6..62c5fee21 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.anyhow-1.0.86.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.anyhow-1.0.86.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.arbitrary-1.3.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.arbitrary-1.3.2.bazel index 771827c3c..7597947c1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.arbitrary-1.3.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.arbitrary-1.3.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.bazel b/bazel/cargo/wasmtime/remote/BUILD.bazel index 0bf523996..b832a3f1e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### package(default_visibility = ["//visibility:public"]) diff --git a/bazel/cargo/wasmtime/remote/BUILD.bitflags-2.6.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.bitflags-2.6.0.bazel index 0566e55ea..33e7ecc07 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.bitflags-2.6.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.bitflags-2.6.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.bumpalo-3.16.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.bumpalo-3.16.0.bazel index 59a5d467c..c4e625f7e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.bumpalo-3.16.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.bumpalo-3.16.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cc-1.1.7.bazel b/bazel/cargo/wasmtime/remote/BUILD.cc-1.1.7.bazel index e412c8dec..2e2ba7b1c 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cc-1.1.7.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cc-1.1.7.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cfg-if-1.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cfg-if-1.0.0.bazel index 873de00fc..4600e0809 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cfg-if-1.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cfg-if-1.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cobs-0.2.3.bazel b/bazel/cargo/wasmtime/remote/BUILD.cobs-0.2.3.bazel index cb29b8dfc..75f7e38bc 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cobs-0.2.3.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cobs-0.2.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.111.0.bazel index 33d2d7800..d67a3046e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bitset-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bitset-0.111.0.bazel index 2c47780b7..10fba3813 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bitset-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bitset-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.111.0.bazel index bfa4d11f6..286bb5653 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.111.0.bazel index 0134446bb..f324cb004 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.111.0.bazel index c517dfdf1..af9628c4a 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-control-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-control-0.111.0.bazel index a39be0fc7..0ece54e04 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-control-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-control-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.111.0.bazel index 02af1d429..c948b4171 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.111.0.bazel index 34815b864..86d7d3793 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.111.0.bazel index 2f938dd6f..e242e1929 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.111.0.bazel index 628e6ddb8..2a56184d3 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.111.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.111.0.bazel index 901d06c54..b5ce34b93 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.111.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.111.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.crc32fast-1.4.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.crc32fast-1.4.2.bazel index 5854a76dc..82a110797 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.crc32fast-1.4.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.crc32fast-1.4.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.either-1.13.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.either-1.13.0.bazel index d29f48c4b..f382617c1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.either-1.13.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.either-1.13.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.embedded-io-0.4.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.embedded-io-0.4.0.bazel index fc1cc6bb6..595e78d79 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.embedded-io-0.4.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.embedded-io-0.4.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.env_logger-0.10.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.env_logger-0.10.2.bazel index 417a7159c..6939cdc77 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.env_logger-0.10.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.env_logger-0.10.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.equivalent-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.equivalent-1.0.1.bazel index f47388aec..72c22ed9e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.equivalent-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.equivalent-1.0.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.errno-0.3.9.bazel b/bazel/cargo/wasmtime/remote/BUILD.errno-0.3.9.bazel index 895db7755..2d675c893 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.errno-0.3.9.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.errno-0.3.9.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.fallible-iterator-0.3.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.fallible-iterator-0.3.0.bazel index 5bbc6ca7e..764dab358 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.fallible-iterator-0.3.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.fallible-iterator-0.3.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.gimli-0.29.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.gimli-0.29.0.bazel index e612042fc..de275c7ed 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.gimli-0.29.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.gimli-0.29.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.13.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.13.2.bazel index f7ed079a4..cd8fc3053 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.13.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.13.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.14.5.bazel b/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.14.5.bazel index ed04a5ff3..17689d8fa 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.14.5.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.hashbrown-0.14.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.heck-0.4.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.heck-0.4.1.bazel index c30fca805..38f876316 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.heck-0.4.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.heck-0.4.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.hermit-abi-0.3.9.bazel b/bazel/cargo/wasmtime/remote/BUILD.hermit-abi-0.3.9.bazel index 519b1dc8d..0aa465321 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.hermit-abi-0.3.9.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.hermit-abi-0.3.9.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.humantime-2.1.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.humantime-2.1.0.bazel index 85b3772f9..6f457f816 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.humantime-2.1.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.humantime-2.1.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.id-arena-2.2.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.id-arena-2.2.1.bazel index 8ea00bdfa..b8d081eab 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.id-arena-2.2.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.id-arena-2.2.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.indexmap-2.3.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.indexmap-2.3.0.bazel index f5e52d912..0bff36011 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.indexmap-2.3.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.indexmap-2.3.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.is-terminal-0.4.12.bazel b/bazel/cargo/wasmtime/remote/BUILD.is-terminal-0.4.12.bazel index 2e255f53f..8bbb25c89 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.is-terminal-0.4.12.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.is-terminal-0.4.12.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.itertools-0.12.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.itertools-0.12.1.bazel index 2494c2060..d4608dff1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.itertools-0.12.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.itertools-0.12.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.itoa-1.0.11.bazel b/bazel/cargo/wasmtime/remote/BUILD.itoa-1.0.11.bazel index a33c4e714..cef1c836b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.itoa-1.0.11.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.itoa-1.0.11.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.leb128-0.2.5.bazel b/bazel/cargo/wasmtime/remote/BUILD.leb128-0.2.5.bazel index 60b61272a..b03501b8d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.leb128-0.2.5.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.leb128-0.2.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.libc-0.2.155.bazel b/bazel/cargo/wasmtime/remote/BUILD.libc-0.2.155.bazel index 896d5b171..bc671dfd2 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.libc-0.2.155.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.libc-0.2.155.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.libm-0.2.8.bazel b/bazel/cargo/wasmtime/remote/BUILD.libm-0.2.8.bazel index a7fba65ed..7a015a937 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.libm-0.2.8.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.libm-0.2.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.linux-raw-sys-0.4.14.bazel b/bazel/cargo/wasmtime/remote/BUILD.linux-raw-sys-0.4.14.bazel index d9860409e..6af392761 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.linux-raw-sys-0.4.14.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.linux-raw-sys-0.4.14.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.log-0.4.22.bazel b/bazel/cargo/wasmtime/remote/BUILD.log-0.4.22.bazel index ba6f7fef4..624a8e6ce 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.log-0.4.22.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.log-0.4.22.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.mach2-0.4.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.mach2-0.4.2.bazel index 5b3487ae6..b834259cc 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.mach2-0.4.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.mach2-0.4.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.memchr-2.7.4.bazel b/bazel/cargo/wasmtime/remote/BUILD.memchr-2.7.4.bazel index dab5cbc8b..c04225890 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.memchr-2.7.4.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.memchr-2.7.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.memfd-0.6.4.bazel b/bazel/cargo/wasmtime/remote/BUILD.memfd-0.6.4.bazel index 433d4d1ff..2ace9d150 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.memfd-0.6.4.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.memfd-0.6.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.object-0.36.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.object-0.36.2.bazel index 3a468bb9e..5aa597088 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.object-0.36.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.object-0.36.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.once_cell-1.19.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.once_cell-1.19.0.bazel index 404899a18..c649e3a81 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.once_cell-1.19.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.once_cell-1.19.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.paste-1.0.15.bazel b/bazel/cargo/wasmtime/remote/BUILD.paste-1.0.15.bazel index c9f63ed44..d139a2da8 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.paste-1.0.15.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.paste-1.0.15.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.pin-project-lite-0.2.14.bazel b/bazel/cargo/wasmtime/remote/BUILD.pin-project-lite-0.2.14.bazel index f8429234d..25034ec35 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.pin-project-lite-0.2.14.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.pin-project-lite-0.2.14.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.postcard-1.0.8.bazel b/bazel/cargo/wasmtime/remote/BUILD.postcard-1.0.8.bazel index 1a7a3bee4..f1f08f453 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.postcard-1.0.8.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.postcard-1.0.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.proc-macro2-1.0.86.bazel b/bazel/cargo/wasmtime/remote/BUILD.proc-macro2-1.0.86.bazel index 81882e4af..cb87d7962 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.proc-macro2-1.0.86.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.proc-macro2-1.0.86.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.psm-0.1.21.bazel b/bazel/cargo/wasmtime/remote/BUILD.psm-0.1.21.bazel index 1a9be3ad7..5d5aea5a3 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.psm-0.1.21.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.psm-0.1.21.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.quote-1.0.36.bazel b/bazel/cargo/wasmtime/remote/BUILD.quote-1.0.36.bazel index 14e84e612..b783f283d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.quote-1.0.36.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.quote-1.0.36.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.9.3.bazel b/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.9.3.bazel index a973842b2..58c325dc5 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.9.3.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.9.3.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.regex-1.10.5.bazel b/bazel/cargo/wasmtime/remote/BUILD.regex-1.10.5.bazel index 33cd9e922..f49505ef6 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.regex-1.10.5.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.regex-1.10.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.regex-automata-0.4.7.bazel b/bazel/cargo/wasmtime/remote/BUILD.regex-automata-0.4.7.bazel index b95fba8c5..3d1c9fdb6 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.regex-automata-0.4.7.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.regex-automata-0.4.7.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.regex-syntax-0.8.4.bazel b/bazel/cargo/wasmtime/remote/BUILD.regex-syntax-0.8.4.bazel index 6ff8c9312..06f9fb1d7 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.regex-syntax-0.8.4.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.regex-syntax-0.8.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.rustc-hash-1.1.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.rustc-hash-1.1.0.bazel index ac5c27948..0fd201018 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.rustc-hash-1.1.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.rustc-hash-1.1.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.rustix-0.38.34.bazel b/bazel/cargo/wasmtime/remote/BUILD.rustix-0.38.34.bazel index 562b6114c..9db754556 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.rustix-0.38.34.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.rustix-0.38.34.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.ryu-1.0.18.bazel b/bazel/cargo/wasmtime/remote/BUILD.ryu-1.0.18.bazel index eb4b8d02a..8530b5ee8 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.ryu-1.0.18.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.ryu-1.0.18.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.semver-1.0.23.bazel b/bazel/cargo/wasmtime/remote/BUILD.semver-1.0.23.bazel index 9f72364a8..fbc912cdb 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.semver-1.0.23.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.semver-1.0.23.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.serde-1.0.204.bazel b/bazel/cargo/wasmtime/remote/BUILD.serde-1.0.204.bazel index 57a732736..44f16e99b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.serde-1.0.204.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.serde-1.0.204.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.serde_derive-1.0.204.bazel b/bazel/cargo/wasmtime/remote/BUILD.serde_derive-1.0.204.bazel index c787f4578..6748b12ae 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.serde_derive-1.0.204.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.serde_derive-1.0.204.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.serde_json-1.0.120.bazel b/bazel/cargo/wasmtime/remote/BUILD.serde_json-1.0.120.bazel index 6a795c695..996fd5c9d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.serde_json-1.0.120.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.serde_json-1.0.120.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.slice-group-by-0.3.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.slice-group-by-0.3.1.bazel index c881bd026..157b6c94f 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.slice-group-by-0.3.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.slice-group-by-0.3.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.13.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.13.2.bazel index c54ca9bbf..b6d0e35d1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.13.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.13.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.sptr-0.3.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.sptr-0.3.2.bazel index a2d0055ba..eb589024e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.sptr-0.3.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.sptr-0.3.2.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.stable_deref_trait-1.2.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.stable_deref_trait-1.2.0.bazel index 976981d90..099e7566b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.stable_deref_trait-1.2.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.stable_deref_trait-1.2.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.syn-2.0.72.bazel b/bazel/cargo/wasmtime/remote/BUILD.syn-2.0.72.bazel index 018f21bbe..8ebc48984 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.syn-2.0.72.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.syn-2.0.72.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.16.bazel b/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.16.bazel index f283f2840..a47f0c9b4 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.16.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.16.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.termcolor-1.4.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.termcolor-1.4.1.bazel index 651963e15..bed70b6b2 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.termcolor-1.4.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.termcolor-1.4.1.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.thiserror-1.0.63.bazel b/bazel/cargo/wasmtime/remote/BUILD.thiserror-1.0.63.bazel index e71655d6d..5d4e9214b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.thiserror-1.0.63.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.thiserror-1.0.63.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.thiserror-impl-1.0.63.bazel b/bazel/cargo/wasmtime/remote/BUILD.thiserror-impl-1.0.63.bazel index d0c4919dc..5609c5dc1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.thiserror-impl-1.0.63.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.thiserror-impl-1.0.63.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.tracing-0.1.40.bazel b/bazel/cargo/wasmtime/remote/BUILD.tracing-0.1.40.bazel index 5673bacde..7f857fe28 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.tracing-0.1.40.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.tracing-0.1.40.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.tracing-attributes-0.1.27.bazel b/bazel/cargo/wasmtime/remote/BUILD.tracing-attributes-0.1.27.bazel index 141925873..4885e3cf3 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.tracing-attributes-0.1.27.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.tracing-attributes-0.1.27.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.tracing-core-0.1.32.bazel b/bazel/cargo/wasmtime/remote/BUILD.tracing-core-0.1.32.bazel index 24fdc7787..35f8b924c 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.tracing-core-0.1.32.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.tracing-core-0.1.32.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.unicode-ident-1.0.12.bazel b/bazel/cargo/wasmtime/remote/BUILD.unicode-ident-1.0.12.bazel index 8a3e41651..068e7c2c4 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.unicode-ident-1.0.12.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.unicode-ident-1.0.12.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.unicode-xid-0.2.4.bazel b/bazel/cargo/wasmtime/remote/BUILD.unicode-xid-0.2.4.bazel index f219de9a7..a3964a773 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.unicode-xid-0.2.4.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.unicode-xid-0.2.4.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.version_check-0.9.5.bazel b/bazel/cargo/wasmtime/remote/BUILD.version_check-0.9.5.bazel index 391f6af95..4c061fb56 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.version_check-0.9.5.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.version_check-0.9.5.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasm-encoder-0.215.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasm-encoder-0.215.0.bazel index fcad4f5c0..d23bcca79 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasm-encoder-0.215.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasm-encoder-0.215.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.215.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.215.0.bazel index 81ee774cc..8f72baab8 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.215.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.215.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmprinter-0.215.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmprinter-0.215.0.bazel index cd6241a15..826800d81 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmprinter-0.215.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmprinter-0.215.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-24.0.0.bazel index e78e416e2..5953b8d39 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-24.0.0.bazel index 5b883981c..43d83cee1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-c-api-macros-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-c-api-macros-24.0.0.bazel index eeec9a789..3cd95d678 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-c-api-macros-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-c-api-macros-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-macro-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-macro-24.0.0.bazel index 30add7a43..043eff658 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-macro-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-macro-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-util-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-util-24.0.0.bazel index 4730a5c58..5e837f450 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-util-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-component-util-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-24.0.0.bazel index 35432a774..3fa683e35 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-24.0.0.bazel index 344f2e2a6..e99eabee3 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel index df895da72..eab6fad4b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-slab-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-slab-24.0.0.bazel index 8ac640baf..7630e5531 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-slab-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-slab-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-24.0.0.bazel index 290b53136..e4bed0ed5 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-versioned-export-macros-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-versioned-export-macros-24.0.0.bazel index a16e49c78..6899fbdf7 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-versioned-export-macros-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-versioned-export-macros-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-wit-bindgen-24.0.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-wit-bindgen-24.0.0.bazel index 50433c3e6..38c42ef22 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-wit-bindgen-24.0.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-wit-bindgen-24.0.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.winapi-util-0.1.8.bazel b/bazel/cargo/wasmtime/remote/BUILD.winapi-util-0.1.8.bazel index ae8ad9eeb..4b391df98 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.winapi-util-0.1.8.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.winapi-util-0.1.8.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows-sys-0.52.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows-sys-0.52.0.bazel index 4897c0e71..3ecd70280 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows-sys-0.52.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows-sys-0.52.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows-targets-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows-targets-0.52.6.bazel index 85e3b5e9d..85ab66499 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows-targets-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows-targets-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index 5e9bff712..eb760738b 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel index 68bba246a..d325f02e8 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnu-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnu-0.52.6.bazel index 0ef859eaf..114c8c6b0 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnu-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel index d54f3b608..d340e0b4d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_msvc-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_msvc-0.52.6.bazel index 56be08dd2..740329c73 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_i686_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel index 3bbaef6ca..964e37264 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index 46d7248a1..451d5096f 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel index 8071b9e5a..49f1cd21a 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wit-parser-0.215.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.wit-parser-0.215.0.bazel index 8e00d6c82..d63deb7b5 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wit-parser-0.215.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wit-parser-0.215.0.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.zerocopy-0.7.35.bazel b/bazel/cargo/wasmtime/remote/BUILD.zerocopy-0.7.35.bazel index 00db4259c..63a0711a7 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.zerocopy-0.7.35.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.zerocopy-0.7.35.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/BUILD.zerocopy-derive-0.7.35.bazel b/bazel/cargo/wasmtime/remote/BUILD.zerocopy-derive-0.7.35.bazel index 4011b9765..313f5d557 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.zerocopy-derive-0.7.35.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.zerocopy-derive-0.7.35.bazel @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") diff --git a/bazel/cargo/wasmtime/remote/crates.bzl b/bazel/cargo/wasmtime/remote/crates.bzl index c2726d29f..0d82cb5d1 100644 --- a/bazel/cargo/wasmtime/remote/crates.bzl +++ b/bazel/cargo/wasmtime/remote/crates.bzl @@ -9,10 +9,10 @@ load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # buildifier: disable=bzl-visibility -load("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:defs.bzl", _crate_repositories = "crate_repositories") +load("@rules_rust//crate_universe/private:crates_vendor.bzl", "crates_vendor_remote_repository") # buildifier: disable=bzl-visibility -load("@rules_rust//crate_universe/private:crates_vendor.bzl", "crates_vendor_remote_repository") +load("//bazel/cargo/wasmtime/remote:defs.bzl", _crate_repositories = "crate_repositories") def crate_repositories(): """Generates repositories for vendored crates. @@ -23,8 +23,8 @@ def crate_repositories(): maybe( crates_vendor_remote_repository, name = "cu", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.bazel"), - defs_module = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:defs.bzl"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.bazel"), + defs_module = Label("//bazel/cargo/wasmtime/remote:defs.bzl"), ) direct_deps = [struct(repo = "cu", is_dev_dep = False)] diff --git a/bazel/cargo/wasmtime/remote/defs.bzl b/bazel/cargo/wasmtime/remote/defs.bzl index 6c07701b9..bc1b4f99d 100644 --- a/bazel/cargo/wasmtime/remote/defs.bzl +++ b/bazel/cargo/wasmtime/remote/defs.bzl @@ -3,7 +3,7 @@ # DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To # regenerate this file, run the following: # -# bazel run @//bazel/cargo/wasmtime:crates_vendor +# bazel run @@//bazel/cargo/wasmtime:crates_vendor ############################################################################### """ # `crates_repository` API @@ -446,7 +446,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/ahash/0.8.11/download"], strip_prefix = "ahash-0.8.11", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.ahash-0.8.11.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.ahash-0.8.11.bazel"), ) maybe( @@ -456,7 +456,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/aho-corasick/1.1.3/download"], strip_prefix = "aho-corasick-1.1.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.aho-corasick-1.1.3.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.aho-corasick-1.1.3.bazel"), ) maybe( @@ -466,7 +466,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/anyhow/1.0.86/download"], strip_prefix = "anyhow-1.0.86", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.anyhow-1.0.86.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.anyhow-1.0.86.bazel"), ) maybe( @@ -476,7 +476,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/arbitrary/1.3.2/download"], strip_prefix = "arbitrary-1.3.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.arbitrary-1.3.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.arbitrary-1.3.2.bazel"), ) maybe( @@ -486,7 +486,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/bitflags/2.6.0/download"], strip_prefix = "bitflags-2.6.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.bitflags-2.6.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.bitflags-2.6.0.bazel"), ) maybe( @@ -496,7 +496,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/bumpalo/3.16.0/download"], strip_prefix = "bumpalo-3.16.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.bumpalo-3.16.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.bumpalo-3.16.0.bazel"), ) maybe( @@ -506,7 +506,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cc/1.1.7/download"], strip_prefix = "cc-1.1.7", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cc-1.1.7.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cc-1.1.7.bazel"), ) maybe( @@ -516,7 +516,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cfg-if/1.0.0/download"], strip_prefix = "cfg-if-1.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cfg-if-1.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cfg-if-1.0.0.bazel"), ) maybe( @@ -526,7 +526,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cobs/0.2.3/download"], strip_prefix = "cobs-0.2.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cobs-0.2.3.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cobs-0.2.3.bazel"), ) maybe( @@ -536,7 +536,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-bforest/0.111.0/download"], strip_prefix = "cranelift-bforest-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-bforest-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-bforest-0.111.0.bazel"), ) maybe( @@ -546,7 +546,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-bitset/0.111.0/download"], strip_prefix = "cranelift-bitset-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-bitset-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-bitset-0.111.0.bazel"), ) maybe( @@ -556,7 +556,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-codegen/0.111.0/download"], strip_prefix = "cranelift-codegen-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-0.111.0.bazel"), ) maybe( @@ -566,7 +566,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-codegen-meta/0.111.0/download"], strip_prefix = "cranelift-codegen-meta-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-meta-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-meta-0.111.0.bazel"), ) maybe( @@ -576,7 +576,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-codegen-shared/0.111.0/download"], strip_prefix = "cranelift-codegen-shared-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-shared-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-shared-0.111.0.bazel"), ) maybe( @@ -586,7 +586,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-control/0.111.0/download"], strip_prefix = "cranelift-control-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-control-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-control-0.111.0.bazel"), ) maybe( @@ -596,7 +596,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-entity/0.111.0/download"], strip_prefix = "cranelift-entity-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-entity-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-entity-0.111.0.bazel"), ) maybe( @@ -606,7 +606,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-frontend/0.111.0/download"], strip_prefix = "cranelift-frontend-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-frontend-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-frontend-0.111.0.bazel"), ) maybe( @@ -616,7 +616,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-isle/0.111.0/download"], strip_prefix = "cranelift-isle-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-isle-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-isle-0.111.0.bazel"), ) maybe( @@ -626,7 +626,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-native/0.111.0/download"], strip_prefix = "cranelift-native-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-native-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-native-0.111.0.bazel"), ) maybe( @@ -636,7 +636,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/cranelift-wasm/0.111.0/download"], strip_prefix = "cranelift-wasm-0.111.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.cranelift-wasm-0.111.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-wasm-0.111.0.bazel"), ) maybe( @@ -646,7 +646,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/crc32fast/1.4.2/download"], strip_prefix = "crc32fast-1.4.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.crc32fast-1.4.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crc32fast-1.4.2.bazel"), ) maybe( @@ -656,7 +656,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/either/1.13.0/download"], strip_prefix = "either-1.13.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.either-1.13.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.either-1.13.0.bazel"), ) maybe( @@ -666,7 +666,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/embedded-io/0.4.0/download"], strip_prefix = "embedded-io-0.4.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.embedded-io-0.4.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.embedded-io-0.4.0.bazel"), ) maybe( @@ -676,7 +676,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/env_logger/0.10.2/download"], strip_prefix = "env_logger-0.10.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.env_logger-0.10.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.env_logger-0.10.2.bazel"), ) maybe( @@ -686,7 +686,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/equivalent/1.0.1/download"], strip_prefix = "equivalent-1.0.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.equivalent-1.0.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.equivalent-1.0.1.bazel"), ) maybe( @@ -696,7 +696,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/errno/0.3.9/download"], strip_prefix = "errno-0.3.9", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.errno-0.3.9.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.errno-0.3.9.bazel"), ) maybe( @@ -706,7 +706,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/fallible-iterator/0.3.0/download"], strip_prefix = "fallible-iterator-0.3.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.fallible-iterator-0.3.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.fallible-iterator-0.3.0.bazel"), ) maybe( @@ -716,7 +716,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/gimli/0.29.0/download"], strip_prefix = "gimli-0.29.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.gimli-0.29.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.gimli-0.29.0.bazel"), ) maybe( @@ -726,7 +726,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.13.2/download"], strip_prefix = "hashbrown-0.13.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.hashbrown-0.13.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.hashbrown-0.13.2.bazel"), ) maybe( @@ -736,7 +736,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.14.5/download"], strip_prefix = "hashbrown-0.14.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.hashbrown-0.14.5.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.hashbrown-0.14.5.bazel"), ) maybe( @@ -746,7 +746,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/heck/0.4.1/download"], strip_prefix = "heck-0.4.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.heck-0.4.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.heck-0.4.1.bazel"), ) maybe( @@ -756,7 +756,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/hermit-abi/0.3.9/download"], strip_prefix = "hermit-abi-0.3.9", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.hermit-abi-0.3.9.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.hermit-abi-0.3.9.bazel"), ) maybe( @@ -766,7 +766,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/humantime/2.1.0/download"], strip_prefix = "humantime-2.1.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.humantime-2.1.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.humantime-2.1.0.bazel"), ) maybe( @@ -776,7 +776,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/id-arena/2.2.1/download"], strip_prefix = "id-arena-2.2.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.id-arena-2.2.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.id-arena-2.2.1.bazel"), ) maybe( @@ -786,7 +786,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/2.3.0/download"], strip_prefix = "indexmap-2.3.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.indexmap-2.3.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.indexmap-2.3.0.bazel"), ) maybe( @@ -796,7 +796,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/is-terminal/0.4.12/download"], strip_prefix = "is-terminal-0.4.12", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.is-terminal-0.4.12.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.is-terminal-0.4.12.bazel"), ) maybe( @@ -806,7 +806,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/itertools/0.12.1/download"], strip_prefix = "itertools-0.12.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.itertools-0.12.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.itertools-0.12.1.bazel"), ) maybe( @@ -816,7 +816,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/itoa/1.0.11/download"], strip_prefix = "itoa-1.0.11", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.itoa-1.0.11.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.itoa-1.0.11.bazel"), ) maybe( @@ -826,7 +826,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/leb128/0.2.5/download"], strip_prefix = "leb128-0.2.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.leb128-0.2.5.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.leb128-0.2.5.bazel"), ) maybe( @@ -836,7 +836,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/libc/0.2.155/download"], strip_prefix = "libc-0.2.155", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.libc-0.2.155.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.libc-0.2.155.bazel"), ) maybe( @@ -846,7 +846,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/libm/0.2.8/download"], strip_prefix = "libm-0.2.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.libm-0.2.8.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.libm-0.2.8.bazel"), ) maybe( @@ -856,7 +856,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/linux-raw-sys/0.4.14/download"], strip_prefix = "linux-raw-sys-0.4.14", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.linux-raw-sys-0.4.14.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.linux-raw-sys-0.4.14.bazel"), ) maybe( @@ -866,7 +866,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/log/0.4.22/download"], strip_prefix = "log-0.4.22", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.log-0.4.22.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.log-0.4.22.bazel"), ) maybe( @@ -876,7 +876,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/mach2/0.4.2/download"], strip_prefix = "mach2-0.4.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.mach2-0.4.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.mach2-0.4.2.bazel"), ) maybe( @@ -886,7 +886,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/memchr/2.7.4/download"], strip_prefix = "memchr-2.7.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.memchr-2.7.4.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.memchr-2.7.4.bazel"), ) maybe( @@ -896,7 +896,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/memfd/0.6.4/download"], strip_prefix = "memfd-0.6.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.memfd-0.6.4.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.memfd-0.6.4.bazel"), ) maybe( @@ -906,7 +906,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/object/0.36.2/download"], strip_prefix = "object-0.36.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.object-0.36.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.object-0.36.2.bazel"), ) maybe( @@ -916,7 +916,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/once_cell/1.19.0/download"], strip_prefix = "once_cell-1.19.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.once_cell-1.19.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.once_cell-1.19.0.bazel"), ) maybe( @@ -926,7 +926,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/paste/1.0.15/download"], strip_prefix = "paste-1.0.15", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.paste-1.0.15.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.paste-1.0.15.bazel"), ) maybe( @@ -936,7 +936,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/pin-project-lite/0.2.14/download"], strip_prefix = "pin-project-lite-0.2.14", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.pin-project-lite-0.2.14.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.pin-project-lite-0.2.14.bazel"), ) maybe( @@ -946,7 +946,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/postcard/1.0.8/download"], strip_prefix = "postcard-1.0.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.postcard-1.0.8.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.postcard-1.0.8.bazel"), ) maybe( @@ -956,7 +956,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/proc-macro2/1.0.86/download"], strip_prefix = "proc-macro2-1.0.86", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.proc-macro2-1.0.86.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.proc-macro2-1.0.86.bazel"), ) maybe( @@ -966,7 +966,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/psm/0.1.21/download"], strip_prefix = "psm-0.1.21", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.psm-0.1.21.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.psm-0.1.21.bazel"), ) maybe( @@ -976,7 +976,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/quote/1.0.36/download"], strip_prefix = "quote-1.0.36", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.quote-1.0.36.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.quote-1.0.36.bazel"), ) maybe( @@ -986,7 +986,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/regalloc2/0.9.3/download"], strip_prefix = "regalloc2-0.9.3", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.regalloc2-0.9.3.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regalloc2-0.9.3.bazel"), ) maybe( @@ -996,7 +996,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/regex/1.10.5/download"], strip_prefix = "regex-1.10.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.regex-1.10.5.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regex-1.10.5.bazel"), ) maybe( @@ -1006,7 +1006,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.4.7/download"], strip_prefix = "regex-automata-0.4.7", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.regex-automata-0.4.7.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regex-automata-0.4.7.bazel"), ) maybe( @@ -1016,7 +1016,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/regex-syntax/0.8.4/download"], strip_prefix = "regex-syntax-0.8.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.regex-syntax-0.8.4.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regex-syntax-0.8.4.bazel"), ) maybe( @@ -1026,7 +1026,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/rustc-hash/1.1.0/download"], strip_prefix = "rustc-hash-1.1.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.rustc-hash-1.1.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.rustc-hash-1.1.0.bazel"), ) maybe( @@ -1036,7 +1036,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/rustix/0.38.34/download"], strip_prefix = "rustix-0.38.34", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.rustix-0.38.34.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.rustix-0.38.34.bazel"), ) maybe( @@ -1046,7 +1046,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/ryu/1.0.18/download"], strip_prefix = "ryu-1.0.18", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.ryu-1.0.18.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.ryu-1.0.18.bazel"), ) maybe( @@ -1056,7 +1056,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/semver/1.0.23/download"], strip_prefix = "semver-1.0.23", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.semver-1.0.23.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.semver-1.0.23.bazel"), ) maybe( @@ -1066,7 +1066,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/serde/1.0.204/download"], strip_prefix = "serde-1.0.204", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.serde-1.0.204.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.serde-1.0.204.bazel"), ) maybe( @@ -1076,7 +1076,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/serde_derive/1.0.204/download"], strip_prefix = "serde_derive-1.0.204", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.serde_derive-1.0.204.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.serde_derive-1.0.204.bazel"), ) maybe( @@ -1086,7 +1086,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/serde_json/1.0.120/download"], strip_prefix = "serde_json-1.0.120", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.serde_json-1.0.120.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.serde_json-1.0.120.bazel"), ) maybe( @@ -1096,7 +1096,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/slice-group-by/0.3.1/download"], strip_prefix = "slice-group-by-0.3.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.slice-group-by-0.3.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.slice-group-by-0.3.1.bazel"), ) maybe( @@ -1106,7 +1106,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/smallvec/1.13.2/download"], strip_prefix = "smallvec-1.13.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.smallvec-1.13.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.smallvec-1.13.2.bazel"), ) maybe( @@ -1116,7 +1116,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/sptr/0.3.2/download"], strip_prefix = "sptr-0.3.2", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.sptr-0.3.2.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.sptr-0.3.2.bazel"), ) maybe( @@ -1126,7 +1126,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/stable_deref_trait/1.2.0/download"], strip_prefix = "stable_deref_trait-1.2.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.stable_deref_trait-1.2.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.stable_deref_trait-1.2.0.bazel"), ) maybe( @@ -1136,7 +1136,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/syn/2.0.72/download"], strip_prefix = "syn-2.0.72", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.syn-2.0.72.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.syn-2.0.72.bazel"), ) maybe( @@ -1146,7 +1146,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/target-lexicon/0.12.16/download"], strip_prefix = "target-lexicon-0.12.16", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.target-lexicon-0.12.16.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.target-lexicon-0.12.16.bazel"), ) maybe( @@ -1156,7 +1156,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/termcolor/1.4.1/download"], strip_prefix = "termcolor-1.4.1", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.termcolor-1.4.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.termcolor-1.4.1.bazel"), ) maybe( @@ -1166,7 +1166,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror/1.0.63/download"], strip_prefix = "thiserror-1.0.63", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.thiserror-1.0.63.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.thiserror-1.0.63.bazel"), ) maybe( @@ -1176,7 +1176,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror-impl/1.0.63/download"], strip_prefix = "thiserror-impl-1.0.63", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.thiserror-impl-1.0.63.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.thiserror-impl-1.0.63.bazel"), ) maybe( @@ -1186,7 +1186,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/tracing/0.1.40/download"], strip_prefix = "tracing-0.1.40", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.tracing-0.1.40.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.tracing-0.1.40.bazel"), ) maybe( @@ -1196,7 +1196,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-attributes/0.1.27/download"], strip_prefix = "tracing-attributes-0.1.27", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.tracing-attributes-0.1.27.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.tracing-attributes-0.1.27.bazel"), ) maybe( @@ -1206,7 +1206,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-core/0.1.32/download"], strip_prefix = "tracing-core-0.1.32", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.tracing-core-0.1.32.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.tracing-core-0.1.32.bazel"), ) maybe( @@ -1216,7 +1216,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-ident/1.0.12/download"], strip_prefix = "unicode-ident-1.0.12", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.unicode-ident-1.0.12.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.unicode-ident-1.0.12.bazel"), ) maybe( @@ -1226,7 +1226,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-xid/0.2.4/download"], strip_prefix = "unicode-xid-0.2.4", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.unicode-xid-0.2.4.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.unicode-xid-0.2.4.bazel"), ) maybe( @@ -1236,7 +1236,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/version_check/0.9.5/download"], strip_prefix = "version_check-0.9.5", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.version_check-0.9.5.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.version_check-0.9.5.bazel"), ) maybe( @@ -1246,7 +1246,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-encoder/0.215.0/download"], strip_prefix = "wasm-encoder-0.215.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasm-encoder-0.215.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasm-encoder-0.215.0.bazel"), ) maybe( @@ -1256,7 +1256,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmparser/0.215.0/download"], strip_prefix = "wasmparser-0.215.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmparser-0.215.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmparser-0.215.0.bazel"), ) maybe( @@ -1266,7 +1266,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmprinter/0.215.0/download"], strip_prefix = "wasmprinter-0.215.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmprinter-0.215.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmprinter-0.215.0.bazel"), ) maybe( @@ -1276,7 +1276,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime/24.0.0/download"], strip_prefix = "wasmtime-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-24.0.0.bazel"), ) maybe( @@ -1286,7 +1286,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-asm-macros/24.0.0/download"], strip_prefix = "wasmtime-asm-macros-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-asm-macros-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-asm-macros-24.0.0.bazel"), ) maybe( @@ -1295,7 +1295,7 @@ def crate_repositories(): commit = "6fc3d274c7994dad20c816ccc0739bf766b39a11", init_submodules = True, remote = "https://github.com/bytecodealliance/wasmtime", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-c-api-macros-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-c-api-macros-24.0.0.bazel"), strip_prefix = "crates/c-api-macros", ) @@ -1306,7 +1306,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-component-macro/24.0.0/download"], strip_prefix = "wasmtime-component-macro-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-component-macro-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-component-macro-24.0.0.bazel"), ) maybe( @@ -1316,7 +1316,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-component-util/24.0.0/download"], strip_prefix = "wasmtime-component-util-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-component-util-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-component-util-24.0.0.bazel"), ) maybe( @@ -1326,7 +1326,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-cranelift/24.0.0/download"], strip_prefix = "wasmtime-cranelift-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-cranelift-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-cranelift-24.0.0.bazel"), ) maybe( @@ -1336,7 +1336,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-environ/24.0.0/download"], strip_prefix = "wasmtime-environ-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-environ-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-environ-24.0.0.bazel"), ) maybe( @@ -1346,7 +1346,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-jit-icache-coherence/24.0.0/download"], strip_prefix = "wasmtime-jit-icache-coherence-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-icache-coherence-24.0.0.bazel"), ) maybe( @@ -1356,7 +1356,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-slab/24.0.0/download"], strip_prefix = "wasmtime-slab-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-slab-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-slab-24.0.0.bazel"), ) maybe( @@ -1366,7 +1366,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-types/24.0.0/download"], strip_prefix = "wasmtime-types-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-types-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-types-24.0.0.bazel"), ) maybe( @@ -1376,7 +1376,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-versioned-export-macros/24.0.0/download"], strip_prefix = "wasmtime-versioned-export-macros-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-versioned-export-macros-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-versioned-export-macros-24.0.0.bazel"), ) maybe( @@ -1386,7 +1386,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wasmtime-wit-bindgen/24.0.0/download"], strip_prefix = "wasmtime-wit-bindgen-24.0.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wasmtime-wit-bindgen-24.0.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-wit-bindgen-24.0.0.bazel"), ) maybe( @@ -1396,7 +1396,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-util/0.1.8/download"], strip_prefix = "winapi-util-0.1.8", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.winapi-util-0.1.8.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.winapi-util-0.1.8.bazel"), ) maybe( @@ -1406,7 +1406,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.52.0/download"], strip_prefix = "windows-sys-0.52.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows-sys-0.52.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows-sys-0.52.0.bazel"), ) maybe( @@ -1416,7 +1416,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.52.6/download"], strip_prefix = "windows-targets-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows-targets-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows-targets-0.52.6.bazel"), ) maybe( @@ -1426,7 +1426,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download"], strip_prefix = "windows_aarch64_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_aarch64_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_aarch64_gnullvm-0.52.6.bazel"), ) maybe( @@ -1436,7 +1436,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download"], strip_prefix = "windows_aarch64_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_aarch64_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_aarch64_msvc-0.52.6.bazel"), ) maybe( @@ -1446,7 +1446,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.52.6/download"], strip_prefix = "windows_i686_gnu-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_i686_gnu-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_i686_gnu-0.52.6.bazel"), ) maybe( @@ -1456,7 +1456,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download"], strip_prefix = "windows_i686_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_i686_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_i686_gnullvm-0.52.6.bazel"), ) maybe( @@ -1466,7 +1466,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.52.6/download"], strip_prefix = "windows_i686_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_i686_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_i686_msvc-0.52.6.bazel"), ) maybe( @@ -1476,7 +1476,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download"], strip_prefix = "windows_x86_64_gnu-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_gnu-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_gnu-0.52.6.bazel"), ) maybe( @@ -1486,7 +1486,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download"], strip_prefix = "windows_x86_64_gnullvm-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_gnullvm-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_gnullvm-0.52.6.bazel"), ) maybe( @@ -1496,7 +1496,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download"], strip_prefix = "windows_x86_64_msvc-0.52.6", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_msvc-0.52.6.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.windows_x86_64_msvc-0.52.6.bazel"), ) maybe( @@ -1506,7 +1506,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/wit-parser/0.215.0/download"], strip_prefix = "wit-parser-0.215.0", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.wit-parser-0.215.0.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wit-parser-0.215.0.bazel"), ) maybe( @@ -1516,7 +1516,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/zerocopy/0.7.35/download"], strip_prefix = "zerocopy-0.7.35", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.zerocopy-0.7.35.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.zerocopy-0.7.35.bazel"), ) maybe( @@ -1526,7 +1526,7 @@ def crate_repositories(): type = "tar.gz", urls = ["https://static.crates.io/crates/zerocopy-derive/0.7.35/download"], strip_prefix = "zerocopy-derive-0.7.35", - build_file = Label("@proxy_wasm_cpp_host//bazel/cargo/wasmtime/remote:BUILD.zerocopy-derive-0.7.35.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.zerocopy-derive-0.7.35.bazel"), ) return [ diff --git a/bazel/extensions.bzl b/bazel/extensions.bzl new file mode 100644 index 000000000..7b3d1ac66 --- /dev/null +++ b/bazel/extensions.bzl @@ -0,0 +1,170 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +load("@bazel_features//:features.bzl", "bazel_features") +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") +load("//bazel/cargo/wasmsign/remote:crates.bzl", _wasmsign_crate_repositories = "crate_repositories") +load("//bazel/cargo/wasmtime/remote:crates.bzl", _wasmtime_crate_repositories = "crate_repositories") + +def _wasmtime_crates_impl(ctx): + deps = [] + for repo in _wasmtime_crate_repositories(): + if not repo.is_dev_dep: + deps.append(repo.repo) + + return ctx.extension_metadata( + reproducible = bazel_features.external_deps.extension_metadata_has_reproducible, + root_module_direct_deps = deps, + root_module_direct_dev_deps = [], + ) + +wasmtime_crates = module_extension( + implementation = _wasmtime_crates_impl, +) + +def _wasmsign_crates_impl(ctx): + deps = [] + for repo in _wasmsign_crate_repositories(): + if not repo.is_dev_dep: + deps.append(repo.repo) + + return ctx.extension_metadata( + reproducible = bazel_features.external_deps.extension_metadata_has_reproducible, + root_module_direct_deps = deps, + root_module_direct_dev_deps = [], + ) + +wasmsign_crates = module_extension( + implementation = _wasmsign_crates_impl, +) + +def _wasmtime_impl(ctx): + http_archive( + name = "com_github_bytecodealliance_wasmtime", + build_file = "@proxy_wasm_cpp_host//bazel/external:wasmtime.BUILD", + sha256 = "2ccb49bb3bfa4d86907ad4c80d1147aef6156c7b6e3f7f14ed02a39de9761155", + strip_prefix = "wasmtime-24.0.0", + url = "https://github.com/bytecodealliance/wasmtime/archive/v24.0.0.tar.gz", + ) + return ctx.extension_metadata( + root_module_direct_deps = ["com_github_bytecodealliance_wasmtime"], + root_module_direct_dev_deps = [], + ) + +wasmtime = module_extension( + implementation = _wasmtime_impl, +) + +def _wamr_impl(ctx): + http_archive( + name = "com_github_bytecodealliance_wasm_micro_runtime", + build_file = "@proxy_wasm_cpp_host//bazel/external:wamr.BUILD", + sha256 = "ca18bbf304f47287bf43707564db63b8908dd6d0d6ac40bb39271a7144def4cc", + strip_prefix = "wasm-micro-runtime-WAMR-2.4.1", + url = "https://github.com/bytecodealliance/wasm-micro-runtime/archive/refs/tags/WAMR-2.4.1.zip", + patches = ["@proxy_wasm_cpp_host//bazel/external:wamr.patch"], + patch_args = ["-p1"], + ) + return ctx.extension_metadata( + root_module_direct_deps = ["com_github_bytecodealliance_wasm_micro_runtime"], + root_module_direct_dev_deps = [], + ) + +wamr = module_extension( + implementation = _wamr_impl, +) + +def _wamr_jit_deps_impl(ctx): + # These dependencies must be in the global namespace so we can call use_repo_rule. + # LLVM dependency for jit build + http_archive( + name = "llvm-raw", + build_file = "@proxy_wasm_cpp_host//bazel/external:wamr_llvm.BUILD", + sha256 = "5042522b49945bc560ff9206f25fb87980a9b89b914193ca00d961511ff0673c", + strip_prefix = "llvm-project-19.1.0.src", + url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.0/llvm-project-19.1.0.src.tar.xz", + ) + + # LLVM external dependencies for native Bazel build. + http_archive( + name = "llvm_zlib", + build_file = "@llvm-raw//utils/bazel/third_party_build:zlib-ng.BUILD", + sha256 = "e36bb346c00472a1f9ff2a0a4643e590a254be6379da7cddd9daeb9a7f296731", + strip_prefix = "zlib-ng-2.0.7", + urls = [ + "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.0.7.zip", + ], + ) + + http_archive( + name = "llvm_zstd", + build_file = "@llvm-raw//utils/bazel/third_party_build:zstd.BUILD", + sha256 = "7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0", + strip_prefix = "zstd-1.5.2", + urls = [ + "https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz", + ], + ) + return ctx.extension_metadata( + root_module_direct_deps = ["llvm-raw", "llvm_zlib", "llvm_zstd"], + root_module_direct_dev_deps = [], + ) + +wamr_jit_deps = module_extension( + implementation = _wamr_jit_deps_impl, +) + +def _wasmedge_impl(ctx): + # WasmEdge with dependencies. + # Using native Bazel cc_library rules based on Bazel Central Registry (BCR) definitions + # to avoid CMake FetchContent network access during build. + + # fmt dependency for spdlog (version 11.0.2, based on BCR) + # https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/fmt/11.0.2 + http_archive( + name = "com_github_fmtlib_fmt", + sha256 = "6cb1e6d37bdcb756dbbe59be438790db409cdb4868c66e888d5df9f13f7c027f", + strip_prefix = "fmt-11.0.2", + urls = ["https://github.com/fmtlib/fmt/archive/refs/tags/11.0.2.tar.gz"], + build_file = "@proxy_wasm_cpp_host//bazel/external:fmt.BUILD", + ) + + # spdlog dependency for WasmEdge (version 1.13.0, based on BCR) + # https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/spdlog/1.13.0 + http_archive( + name = "com_github_gabime_spdlog", + sha256 = "534f2ee1a4dcbeb22249856edfb2be76a1cf4f708a20b0ac2ed090ee24cfdbc9", + strip_prefix = "spdlog-1.13.0", + urls = ["https://github.com/gabime/spdlog/archive/refs/tags/v1.13.0.tar.gz"], + build_file = "@proxy_wasm_cpp_host//bazel/external:spdlog.BUILD", + ) + + http_archive( + name = "com_github_wasmedge_wasmedge", + build_file = "@proxy_wasm_cpp_host//bazel/external:wasmedge.BUILD", + sha256 = "2354d90a67e3eb396179663bdc0b457abbbc70dca967ec4528f211599a49f62a", + strip_prefix = "WasmEdge-0.16.1", + url = "https://github.com/WasmEdge/WasmEdge/archive/refs/tags/0.16.1.tar.gz", + patches = ["@proxy_wasm_cpp_host//bazel/external:wasmedge.patch"], + patch_args = ["-p1"], + ) + return ctx.extension_metadata( + root_module_direct_deps = ["com_github_wasmedge_wasmedge"], + root_module_direct_dev_deps = [], + ) + +wasmedge = module_extension( + implementation = _wasmedge_impl, +) diff --git a/bazel/external/v8.patch b/bazel/external/v8.patch index 93a3f7d1d..538df4002 100644 --- a/bazel/external/v8.patch +++ b/bazel/external/v8.patch @@ -136,7 +136,7 @@ index 05630ab7035..7f14a987148 100644 "@fast_float//:fast_float", - ":lib_fp16", - ":simdutf", -+ "@fp16//:FP16", ++ "@fp16//:fp16", + "@simdutf//:simdutf", ":v8_libbase", "@abseil-cpp//absl/container:btree", diff --git a/bazel/external/v8_module_bazel.patch b/bazel/external/v8_module_bazel.patch new file mode 100644 index 000000000..6daa2e3af --- /dev/null +++ b/bazel/external/v8_module_bazel.patch @@ -0,0 +1,160 @@ +diff --git a/MODULE.bazel b/MODULE.bazel +index 3370e06bc07..65889216eab 100644 +--- a/MODULE.bazel ++++ b/MODULE.bazel +@@ -9,6 +9,11 @@ bazel_dep(name = "rules_python", version = "1.0.0") + bazel_dep(name = "platforms", version = "0.0.11") + bazel_dep(name = "abseil-cpp", version = "20250814.0") + bazel_dep(name = "highway", version = "1.2.0") ++bazel_dep(name = "fast_float", version = "8.0.2") ++bazel_dep(name = "fp16", version = "0.0.0-20210320-0a92994") ++ ++v8_non_bazel_deps = use_extension("//:bazel/extension.bzl", "v8_non_bazel_deps") ++use_repo(v8_non_bazel_deps, "dragonbox", "simdutf", "intel_ittapi") + + pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") + pip.parse( +diff --git a/bazel/dragonbox.BUILD b/bazel/dragonbox.BUILD +new file mode 100644 +index 00000000000..00f3ee074c7 +--- /dev/null ++++ b/bazel/dragonbox.BUILD +@@ -0,0 +1,26 @@ ++# Copyright 2025 Google LLC ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++load("@rules_cc//cc:defs.bzl", "cc_library") ++ ++licenses(["notice"]) # Apache 2 ++ ++package(default_visibility = ["//visibility:public"]) ++ ++cc_library( ++ name = "dragonbox", ++ srcs = [], ++ hdrs = ["include/dragonbox/dragonbox.h"], ++ includes = ["include/"], ++) +diff --git a/bazel/extension.bzl b/bazel/extension.bzl +new file mode 100644 +index 00000000000..df199b109a4 +--- /dev/null ++++ b/bazel/extension.bzl +@@ -0,0 +1,34 @@ ++load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") ++ ++def _v8_non_bazel_deps_impl(ctx): ++ # V8 supporting dependencies. Some of these repositories are possible to ++ # use with bazel_dep. All V8 dependencies are listed here for ease of maintenance. ++ http_archive( ++ name = "dragonbox", ++ urls = ["https://github.com/jk-jeon/dragonbox/archive/6c7c925b571d54486b9ffae8d9d18a822801cbda.zip"], ++ strip_prefix = "dragonbox-6c7c925b571d54486b9ffae8d9d18a822801cbda", ++ sha256 = "2f10448d665355b41f599e869ac78803f82f13b070ce7ef5ae7b5cceb8a178f3", ++ build_file = "//:bazel/dragonbox.BUILD", ++ ) ++ http_archive( ++ name = "simdutf", ++ sha256 = "512374f8291d3daf102ccd0ad223b1a8318358f7c1295efd4d9a3abbb8e4b6ff", ++ urls = ["https://github.com/simdutf/simdutf/releases/download/v7.3.0/singleheader.zip"], ++ build_file = "//:bazel/simdutf.BUILD", ++ ) ++ http_archive( ++ name = "intel_ittapi", ++ strip_prefix = "ittapi-a3911fff01a775023a06af8754f9ec1e5977dd97", ++ sha256 = "1d0dddfc5abb786f2340565c82c6edd1cff10c917616a18ce62ee0b94dbc2ed4", ++ urls = ["https://github.com/intel/ittapi/archive/a3911fff01a775023a06af8754f9ec1e5977dd97.tar.gz"], ++ build_file = "//:bazel/intel_ittapi.BUILD", ++ ) ++ return ctx.extension_metadata( ++ root_module_direct_deps = ["dragonbox", "simdutf", "intel_ittapi"], ++ root_module_direct_dev_deps = [], ++ ) ++ ++v8_non_bazel_deps = module_extension( ++ implementation = _v8_non_bazel_deps_impl, ++) ++ +diff --git a/bazel/intel_ittapi.BUILD b/bazel/intel_ittapi.BUILD +new file mode 100644 +index 00000000000..cc867842fb9 +--- /dev/null ++++ b/bazel/intel_ittapi.BUILD +@@ -0,0 +1,35 @@ ++# Copyright 2025 Google LLC ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++load("@rules_cc//cc:defs.bzl", "cc_library") ++ ++licenses(["notice"]) ++ ++package(default_visibility = ["//visibility:public"]) ++ ++cc_library( ++ name = "lib_ittapi", ++ srcs = [ ++ "include/ittnotify.h", ++ "include/jitprofiling.h", ++ "src/ittnotify/ittnotify_config.h", ++ "src/ittnotify/jitprofiling.c", ++ ], ++ hdrs = [ ++ "include/ittnotify.h", ++ "src/ittnotify/ittnotify_types.h", ++ ], ++ includes = ["include/"], ++ visibility = ["//visibility:public"], ++) +diff --git a/bazel/simdutf.BUILD b/bazel/simdutf.BUILD +new file mode 100644 +index 00000000000..834467e35c4 +--- /dev/null ++++ b/bazel/simdutf.BUILD +@@ -0,0 +1,25 @@ ++# Copyright 2025 Google LLC ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++load("@rules_cc//cc:defs.bzl", "cc_library") ++ ++licenses(["notice"]) # Apache 2 ++ ++package(default_visibility = ["//visibility:public"]) ++ ++cc_library( ++ name = "simdutf", ++ srcs = ["simdutf.cpp"], ++ hdrs = ["simdutf.h"], ++) diff --git a/bazel/external/wamr.BUILD b/bazel/external/wamr.BUILD index 9f628364e..a6e937823 100644 --- a/bazel/external/wamr.BUILD +++ b/bazel/external/wamr.BUILD @@ -29,7 +29,9 @@ cmake( cache_entries = select({ "@proxy_wasm_cpp_host//bazel:engine_wamr_jit": { "BAZEL_BUILD": "ON", - # Set LLVM_INCLUDE_DIR for the patch to use + # Set LLVM_INCLUDE_DIR for the patch to use. It doesn't actually + # matter, since the isystem directives in `env` below will pick up the + # real includes anyway. "LLVM_INCLUDE_DIR": "$$EXT_BUILD_ROOT/external/llvm_toolchain_llvm/include", }, "//conditions:default": {}, @@ -38,8 +40,10 @@ cmake( # The patch skips LLVM CMake detection when BAZEL_BUILD is set # LLVM headers from hermetic toolchain (bzlmod-compatible via data attribute) # LLVM libraries are linked via cc_library deps (see wamr_lib below) + # NOTE: @llvm_toolchain_llvm must match the version of llvm used for :llvm_wamr_lib. data = select({ "@proxy_wasm_cpp_host//bazel:engine_wamr_jit": [ + ":llvm_wamr_lib", "@llvm_toolchain_llvm//:all_includes", ], "//conditions:default": [], @@ -49,8 +53,10 @@ cmake( # Reference LLVM headers in sandbox via EXT_BUILD_ROOT # The data attribute ensures llvm_toolchain_llvm is mounted in sandbox # This path works with both WORKSPACE and bzlmod - "CFLAGS": "-isystem $$EXT_BUILD_ROOT/external/llvm_toolchain_llvm/include", - "CXXFLAGS": "-isystem $$EXT_BUILD_ROOT/external/llvm_toolchain_llvm/include", + # The bzlmod paths use the *unstable* repository naming + # conventions, and will possibly break with differen bazel versions. + "CFLAGS": "-isystem $$EXT_BUILD_ROOT/external/llvm_toolchain_llvm/include -isystem $$EXT_BUILD_ROOT/external/toolchains_llvm++llvm+llvm_toolchain_llvm/include", + "CXXFLAGS": "-isystem $$EXT_BUILD_ROOT/external/llvm_toolchain_llvm/include -isystem $$EXT_BUILD_ROOT/external/toolchains_llvm++llvm+llvm_toolchain_llvm/include", }, "//conditions:default": {}, }), @@ -107,8 +113,57 @@ cc_library( }), deps = [":wamr_lib_cmake"] + select({ "@proxy_wasm_cpp_host//bazel:engine_wamr_jit": [ - "@llvm-raw//:llvm_wamr_lib", + ":llvm_wamr_lib", ], "//conditions:default": [], }), ) + +# LLVM libraries needed by WAMR JIT - built with native Bazel. +# This replaces the foreign_cc cmake build of LLVM with native Bazel builds. +# These libraries are linked into the final binary, while WAMR's CMake build +# uses the hermetic LLVM toolchain's CMake configs for configuration only. +# Uses select() for CPU-specific libraries only. +cc_library( + name = "llvm_wamr_lib", + deps = [ + "@llvm-project//llvm:Analysis", + "@llvm-project//llvm:BitReader", + "@llvm-project//llvm:BitWriter", + "@llvm-project//llvm:CodeGen", + "@llvm-project//llvm:Core", + "@llvm-project//llvm:ExecutionEngine", + "@llvm-project//llvm:IPO", + "@llvm-project//llvm:IRReader", + "@llvm-project//llvm:InstCombine", + "@llvm-project//llvm:Instrumentation", + "@llvm-project//llvm:JITLink", + "@llvm-project//llvm:Linker", + "@llvm-project//llvm:MC", + "@llvm-project//llvm:MCJIT", + "@llvm-project//llvm:Object", + "@llvm-project//llvm:OrcJIT", + "@llvm-project//llvm:Passes", + "@llvm-project//llvm:Scalar", + "@llvm-project//llvm:Support", + "@llvm-project//llvm:Target", + "@llvm-project//llvm:TransformUtils", + "@llvm-project//llvm:Vectorize", + ] + select({ + "@platforms//cpu:x86_64": [ + "@llvm-project//llvm:X86AsmParser", + "@llvm-project//llvm:X86CodeGen", + "@llvm-project//llvm:X86Disassembler", + ], + "@platforms//cpu:aarch64": [ + "@llvm-project//llvm:AArch64AsmParser", + "@llvm-project//llvm:AArch64CodeGen", + "@llvm-project//llvm:AArch64Disassembler", + ], + "//conditions:default": [ + "@llvm-project//llvm:X86AsmParser", + "@llvm-project//llvm:X86CodeGen", + "@llvm-project//llvm:X86Disassembler", + ], + }), +) diff --git a/bazel/external/wamr_llvm.BUILD b/bazel/external/wamr_llvm.BUILD index 75f7980f5..778deef02 100644 --- a/bazel/external/wamr_llvm.BUILD +++ b/bazel/external/wamr_llvm.BUILD @@ -66,35 +66,3 @@ cc_library( ], }), ) - -# Create a tarball with LLVM headers preserving directory structure -# This is a robust, bzlmod-compatible solution for providing headers to rules_foreign_cc -genrule( - name = "package_llvm_headers", - srcs = ["@llvm_toolchain_llvm//:all_includes"], - outs = ["llvm_headers.tar.gz"], - cmd = """ - # Create temporary directory for building the archive - TMPDIR=$$(mktemp -d) - - # Copy all headers preserving directory structure - # The all_includes filegroup contains files like include/llvm/Config/llvm-config.h - for src in $(SRCS); do - # Extract the path relative to the workspace - # Files are like external/llvm_toolchain_llvm/include/llvm/... - rel_path=$$(echo $$src | sed 's|.*/llvm_toolchain_llvm/||') - dest_path=$$TMPDIR/$$rel_path - mkdir -p $$(dirname $$dest_path) - cp $$src $$dest_path - done - - # Create tarball from the temp directory - tar -czf $(location llvm_headers.tar.gz) -C $$TMPDIR . - rm -rf $$TMPDIR - """, -) - -filegroup( - name = "llvm_headers", - srcs = [":package_llvm_headers"], -) diff --git a/bazel/external/wasmtime.BUILD b/bazel/external/wasmtime.BUILD index f359d9361..e6c2d545a 100644 --- a/bazel/external/wasmtime.BUILD +++ b/bazel/external/wasmtime.BUILD @@ -55,7 +55,7 @@ genrule( ], cmd = """ for symbol in $$(nm -P $(<) 2>/dev/null | grep -E ^_?wasm_ | cut -d" " -f1); do - echo $$symbol | sed -r 's/^(_?)(wasm_[a-z_]+)$$/\\1\\2 \\1wasmtime_\\2/' >>prefixed + echo $$symbol | sed -E 's/([a-z_]*)/\\1 wasmtime_\\1/' >> prefixed done # This should be OBJCOPY, but bazel-zig-cc doesn't define it. objcopy --redefine-syms=prefixed $(<) $@ diff --git a/bazel/wasm.bzl b/bazel/wasm.bzl index 5580e01ff..b912c8baf 100644 --- a/bazel/wasm.bzl +++ b/bazel/wasm.bzl @@ -63,7 +63,7 @@ def _wasm_attrs(transition): return { "binary": attr.label(mandatory = True, cfg = transition), "signing_key": attr.label_list(allow_files = True), - "_wasmsign_tool": attr.label(default = "//bazel/cargo/wasmsign/remote:wasmsign2-cli__wasmsign2", executable = True, cfg = "exec"), + "_wasmsign_tool": attr.label(default = "@ws//:wasmsign2-cli__wasmsign2", executable = True, cfg = "exec"), "_allowlist_function_transition": attr.label(default = "@bazel_tools//tools/allowlists/function_transition_allowlist"), }